config.mk 998 B

1234567891011121314151617181920212223242526272829
  1. # SPDX-License-Identifier: GPL-2.0+
  2. # Copyright (c) 2011 The Chromium OS Authors.
  3. PLATFORM_CPPFLAGS += -D__SANDBOX__ -U_FORTIFY_SOURCE
  4. PLATFORM_CPPFLAGS += -DCONFIG_ARCH_MAP_SYSMEM
  5. PLATFORM_CPPFLAGS += -fPIC
  6. PLATFORM_LIBS += -lrt
  7. # Define this to avoid linking with SDL, which requires SDL libraries
  8. # This can solve 'sdl-config: Command not found' errors
  9. ifneq ($(NO_SDL),)
  10. PLATFORM_CPPFLAGS += -DSANDBOX_NO_SDL
  11. else
  12. ifdef CONFIG_SANDBOX_SDL
  13. PLATFORM_LIBS += $(shell sdl-config --libs)
  14. PLATFORM_CPPFLAGS += $(shell sdl-config --cflags)
  15. endif
  16. endif
  17. cmd_u-boot__ = $(CC) -o $@ -Wl,-T u-boot.lds \
  18. -Wl,--start-group $(u-boot-main) -Wl,--end-group \
  19. $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map
  20. cmd_u-boot-spl = (cd $(obj) && $(CC) -o $(SPL_BIN) -Wl,-T u-boot-spl.lds \
  21. -Wl,--start-group $(patsubst $(obj)/%,%,$(u-boot-spl-main)) \
  22. $(patsubst $(obj)/%,%,$(u-boot-spl-platdata)) -Wl,--end-group \
  23. $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot-spl.map -Wl,--gc-sections)
  24. CONFIG_ARCH_DEVICE_TREE := sandbox