From b0b3e5d0d695147b0c7af46eec327470a5f9aaa6 Mon Sep 17 00:00:00 2001 From: adamdunkels Date: Thu, 15 Mar 2007 21:52:00 +0000 Subject: [PATCH] Redefined LD to gcc to make things compile. Removed generation of symbols.[ch] due to problematic builds (seemingly neverending loops). --- cpu/x86/Makefile.x86 | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cpu/x86/Makefile.x86 b/cpu/x86/Makefile.x86 index 9afaaea49..4152ecdbd 100644 --- a/cpu/x86/Makefile.x86 +++ b/cpu/x86/Makefile.x86 @@ -2,7 +2,7 @@ CONTIKI_SOURCEFILES += mtarch.c ### Compiler definitions CC = gcc -LD = ld +LD = gcc AS = as OBJCOPY = objcopy STRIP = strip @@ -19,11 +19,11 @@ LDFLAGS = -Wl,-Map=contiki.map,-export-dynamic %.so: $(OBJECTDIR)/%.o $(LD) -shared -o $@ $^ -.PHONY: symbols.c symbols.h -ifdef CORE -symbols.c symbols.h: - @${CONTIKI}/tools/make-symbols $(CORE) -else +# .PHONY: symbols.c symbols.h +# ifdef CORE +# symbols.c symbols.h: +# @${CONTIKI}/tools/make-symbols $(CORE) +# else symbols.c symbols.h: @${CONTIKI}/tools/make-empty-symbols -endif +#endif