Daniel Mack wrote:
buildrom does not currently build filo due to a missing include path. This fixes it.
Index: Makefile
--- Makefile (revision 94) +++ Makefile (working copy) @@ -76,7 +76,7 @@ LIBGCC = $(shell $(CC) $(CFLAGS) -print-libgcc-file-name)
OBJS := $(patsubst %,$(obj)/%,$(TARGETS-y)) -INCLUDES := -I$(INCPAYLOAD) -Iinclude -I$(ARCHDIR-y)/include -Ibuild +INCLUDES := -I$(INCPAYLOAD) -I$(INCPAYLOAD)/$(ARCHDIR-y) -Iinclude -I$(ARCHDIR-y)/include -Ibuild INCLUDES += -I$(GCCINCDIR)
try-run= $(shell set -e; \
What's your error without this? Is that a patch against FILO?
Stefan