blob: 95f9e3ff63f2dd389734e0b1176ca7f891d95c00 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glass3d750d72011-09-26 14:10:39 +00002# Copyright (c) 2011 The Chromium OS Authors.
Simon Glass3d750d72011-09-26 14:10:39 +00003
Masahiro Yamada4869aee2014-07-30 14:08:23 +09004PLATFORM_CPPFLAGS += -D__SANDBOX__ -U_FORTIFY_SOURCE
Masahiro Yamada57a11eb2015-03-19 19:42:52 +09005PLATFORM_CPPFLAGS += -DCONFIG_ARCH_MAP_SYSMEM
Andy Shevchenko5077f432018-09-03 12:08:10 +03006PLATFORM_CPPFLAGS += -fPIC
Matthias Weisser0d3dd142011-11-29 12:16:40 +01007PLATFORM_LIBS += -lrt
Simon Glass62cf9122013-04-26 02:53:43 +00008
Simon Glassd8e22922015-02-10 18:52:35 -07009# Define this to avoid linking with SDL, which requires SDL libraries
10# This can solve 'sdl-config: Command not found' errors
11ifneq ($(NO_SDL),)
12PLATFORM_CPPFLAGS += -DSANDBOX_NO_SDL
13else
Simon Glass0d10f292014-02-27 13:26:17 -070014ifdef CONFIG_SANDBOX_SDL
15PLATFORM_LIBS += $(shell sdl-config --libs)
16PLATFORM_CPPFLAGS += $(shell sdl-config --cflags)
17endif
Simon Glassd8e22922015-02-10 18:52:35 -070018endif
Simon Glass0d10f292014-02-27 13:26:17 -070019
Tom Rinia1965e92016-03-05 14:07:44 -050020cmd_u-boot__ = $(CC) -o $@ -Wl,-T u-boot.lds \
Masahiro Yamada9f9a4e92014-02-24 11:12:18 +090021 -Wl,--start-group $(u-boot-main) -Wl,--end-group \
22 $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map
Simon Glass66c164b2014-02-26 15:59:14 -070023
Simon Glass1a3ba622016-07-04 11:57:46 -060024cmd_u-boot-spl = (cd $(obj) && $(CC) -o $(SPL_BIN) -Wl,-T u-boot-spl.lds \
25 -Wl,--start-group $(patsubst $(obj)/%,%,$(u-boot-spl-main)) \
26 $(patsubst $(obj)/%,%,$(u-boot-spl-platdata)) -Wl,--end-group \
27 $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot-spl.map -Wl,--gc-sections)
28
Simon Glass66c164b2014-02-26 15:59:14 -070029CONFIG_ARCH_DEVICE_TREE := sandbox