
8 Sep
2013
8 Sep
'13
10:12 p.m.
From: Rob Herring rob.herring@calxeda.com
This fixes building time.c when unreferenced functions are added.
Signed-off-by: Rob Herring rob.herring@calxeda.com --- examples/api/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/examples/api/Makefile b/examples/api/Makefile index 4d68340..33cc91b 100644 --- a/examples/api/Makefile +++ b/examples/api/Makefile @@ -53,7 +53,7 @@ all: $(obj).depend $(OUTPUT) #########################################################################
$(OUTPUT): $(OBJS) - $(LD) -Ttext $(LOAD_ADDR) -o $@ $^ $(PLATFORM_LIBS) + $(LD) --gc-sections -Ttext $(LOAD_ADDR) -o $@ $^ $(PLATFORM_LIBS) $(OBJCOPY) -O binary $@ $(OUTPUT).bin 2>/dev/null
# Rule to build generic library C files
--
1.8.1.2