Simon Glass | 3d750d7 | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 1 | # Copyright (c) 2011 The Chromium OS Authors. |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 2 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 3d750d7 | 2011-09-26 14:10:39 +0000 | [diff] [blame] | 3 | |
Mike Frysinger | 2f60d14 | 2012-02-26 16:00:26 -0500 | [diff] [blame] | 4 | PLATFORM_CPPFLAGS += -DCONFIG_SANDBOX -D__SANDBOX__ -U_FORTIFY_SOURCE |
Simon Glass | 62cf912 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 5 | PLATFORM_CPPFLAGS += -DCONFIG_ARCH_MAP_SYSMEM -DCONFIG_SYS_GENERIC_BOARD |
Matthias Weisser | 0d3dd14 | 2011-11-29 12:16:40 +0100 | [diff] [blame] | 6 | PLATFORM_LIBS += -lrt |
Simon Glass | 62cf912 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 7 | |
Simon Glass | 0d10f29 | 2014-02-27 13:26:17 -0700 | [diff] [blame] | 8 | ifdef CONFIG_SANDBOX_SDL |
| 9 | PLATFORM_LIBS += $(shell sdl-config --libs) |
| 10 | PLATFORM_CPPFLAGS += $(shell sdl-config --cflags) |
| 11 | endif |
| 12 | |
Simon Glass | 62cf912 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 13 | # Support generic board on sandbox |
| 14 | __HAVE_ARCH_GENERIC_BOARD := y |
Masahiro Yamada | 9f9a4e9 | 2014-02-24 11:12:18 +0900 | [diff] [blame] | 15 | |
| 16 | cmd_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 |
Simon Glass | 66c164b | 2014-02-26 15:59:14 -0700 | [diff] [blame] | 19 | |
| 20 | CONFIG_ARCH_DEVICE_TREE := sandbox |
Simon Glass | dcc0bf4 | 2014-03-22 17:12:58 -0600 | [diff] [blame^] | 21 | |
| 22 | # Define this to avoid linking with SDL, which requires SDL libraries |
| 23 | # This can solve 'sdl-config: Command not found' errors |
| 24 | ifneq ($(NO_SDL),) |
| 25 | PLATFORM_CPPFLAGS += -DSANDBOX_NO_SDL |
| 26 | endif |