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