diff options
author | Jens Arnold <amiconn@rockbox.org> | 2007-02-15 20:28:08 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2007-02-15 20:28:08 +0000 |
commit | e393b8e359f2d179c899f7dd37b00fb9c90636b2 (patch) | |
tree | 3e016808b4c419f99b4feb3ac4459743eb24f852 /apps/plugins/doom | |
parent | 9745bbc1df4b82a6f43dabc915ab7823d2889d5b (diff) |
Replaced some explicit options for target linking with to be consistent with the sims.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12318 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/doom')
-rw-r--r-- | apps/plugins/doom/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/doom/Makefile b/apps/plugins/doom/Makefile index a90a864f36..46bd728ecb 100644 --- a/apps/plugins/doom/Makefile +++ b/apps/plugins/doom/Makefile @@ -101,7 +101,7 @@ all: $(OUTPUT) ifndef SIMVER $(OBJDIR)/doom.elf: $(OBJS) $(LINKFILE) - $(call PRINTS,LD $(@F))$(CC) $(GCCOPTS) $(LDFLAGS) -nostdlib -o $@ $(OBJS) -L$(BUILDDIR) -lplugin -lgcc\ + $(call PRINTS,LD $(@F))$(CC) $(CFLAGS) -o $@ $(OBJS) -L$(BUILDDIR) -lplugin -lgcc\ -T$(LINKFILE) -Wl,-Map,$(OBJDIR)/doom.map $(OUTPUT): $(OBJDIR)/doom.elf |