1
0
Fork 0
forked from len0rd/rockbox

Bug fix for simulator: Plugins and codecs were objcopied isntead of left as ELF.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19147 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2008-11-20 12:09:36 +00:00
parent c6b3d38a15
commit 838c74f79d
2 changed files with 9 additions and 2 deletions

View file

@ -73,4 +73,8 @@ $(BUILDDIR)/%.rock: $(BUILDDIR)/%.o $(PLUGINLINK_LDS)
$(filter %.o, $^) \
$(filter %.a, $^) \
-lgcc $(PLUGINLDFLAGS)
ifdef SIMVER
$(SILENT)$(shell cp $(BUILDDIR)/$*.elf $@)
else
$(SILENT)$(OC) -O binary $(BUILDDIR)/$*.elf $@
endif