diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-05-30 21:04:40 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-05-30 21:04:40 +0000 |
| commit | bb4e1436b9a6599179c35da15617a5fc62a48996 (patch) | |
| tree | 4229097eea2368b08abb930a888eb04d82a964c3 /apps | |
| parent | b69338f9f8ae2ae957949a0f4af9749ebb4adc3f (diff) | |
| download | rockbox-bb4e1436b9a6599179c35da15617a5fc62a48996.zip rockbox-bb4e1436b9a6599179c35da15617a5fc62a48996.tar.gz rockbox-bb4e1436b9a6599179c35da15617a5fc62a48996.tar.bz2 rockbox-bb4e1436b9a6599179c35da15617a5fc62a48996.tar.xz | |
Removed libc from link line
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@836 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile index 561adac..0b8a43b 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -51,7 +51,7 @@ $(OBJDIR)/librockbox.a: make -C $(FIRMWARE) TARGET=$(TARGET) DEBUG=$(DEBUG) OBJDIR=$(OBJDIR) $(OBJDIR)/archos.elf : $(OBJS) $(LDS) $(OBJDIR)/librockbox.a - $(CC) -Os -nostdlib -o $(OBJDIR)/archos.elf $(OBJS) -L$(OBJDIR) -lrockbox -lgcc -lc -L$(FIRMWARE) -T$(LDS) -Wl,-Map,$(OBJDIR)/archos.map + $(CC) -Os -nostdlib -o $(OBJDIR)/archos.elf $(OBJS) -L$(OBJDIR) -lrockbox -lgcc -L$(FIRMWARE) -T$(LDS) -Wl,-Map,$(OBJDIR)/archos.map $(OBJDIR)/archos.bin : $(OBJDIR)/archos.elf $(OC) -O binary $(OBJDIR)/archos.elf $(OBJDIR)/archos.bin |