config.mk 971 B

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