Skip to content
Snippets Groups Projects
Commit f8d2c65f authored by Andreas Bießmann's avatar Andreas Bießmann Committed by Mike Frysinger
Browse files

sandbox: fix compiling of cpu/os.c


U-boot itself generally builds with -nostdinc.  This is because the
bootloader needs to be completely standalone.  In the sandbox arch
though, we need a little bit of code to glue the u-boot world to the
host operating system, and we need to be able to access the host
libc's headers in order to do so.

Currently, we're using -I/usr/include to workaround the global
-nostdinc, but that doesn't work for everyone and for all headers.
Instead, let's filter out -nostdinc when building the os.c code.

Without this patch, some distros hit errors such as:
---8<---
In file included from /usr/include/fcntl.h:27:0,
                 from os.c:22:
/usr/include/features.h:323:26: fatal error:
     bits/predefs.h: No such file or directory
--->8---

Signed-off-by: default avatarAndreas Bießmann <biessmann@corscience.de>
Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent d99a6874
No related branches found
No related tags found
No related merge requests found
...@@ -23,9 +23,6 @@ ...@@ -23,9 +23,6 @@
# MA 02111-1307 USA # MA 02111-1307 USA
# #
# os.c is build in the system environment, so needs standard includes
CPPFLAGS_arch/sandbox/cpu/os.o += -I/usr/include
include $(TOPDIR)/config.mk include $(TOPDIR)/config.mk
LIB = $(obj)lib$(CPU).o LIB = $(obj)lib$(CPU).o
...@@ -40,6 +37,10 @@ all: $(obj).depend $(LIB) ...@@ -40,6 +37,10 @@ all: $(obj).depend $(LIB)
$(LIB): $(OBJS) $(LIB): $(OBJS)
$(call cmd_link_o_target, $(OBJS)) $(call cmd_link_o_target, $(OBJS))
# os.c is build in the system environment, so needs standard includes
$(obj)os.o: ALL_CFLAGS := $(filter-out -nostdinc,$(ALL_CFLAGS))
$(obj).depend.os: CPPFLAGS := $(filter-out -nostdinc,$(CPPFLAGS))
######################################################################### #########################################################################
# defines $(obj).depend target # defines $(obj).depend target
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment