mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-12-22 10:30:13 +00:00
Redefined LD to gcc to make things compile. Removed generation of symbols.[ch] due to problematic builds (seemingly neverending loops).
This commit is contained in:
parent
5a5313aa80
commit
b0b3e5d0d6
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user