diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2012-04-04 21:43:22 +0200 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2012-04-04 21:48:19 +0200 |
| commit | 4b56ee048a950eb8190abec3f8dc8b7a9b6e8946 (patch) | |
| tree | 5f7275d75c32831531963c6fecf64dbcad250efa /apps/plugins/pdbox | |
| parent | a54072e2992ad8b6fccdaf8e8062f37c53743be8 (diff) | |
| download | rockbox-4b56ee048a950eb8190abec3f8dc8b7a9b6e8946.zip rockbox-4b56ee048a950eb8190abec3f8dc8b7a9b6e8946.tar.gz rockbox-4b56ee048a950eb8190abec3f8dc8b7a9b6e8946.tar.bz2 rockbox-4b56ee048a950eb8190abec3f8dc8b7a9b6e8946.tar.xz | |
Refactor and unify objcopy calls in the build system. Also now properly handles DEBUG builds on hosted targets to keep debug symbols if necessary.
Change-Id: I884031b79c6d49479e4d95752f35ced68872dd5d
Diffstat (limited to 'apps/plugins/pdbox')
| -rw-r--r-- | apps/plugins/pdbox/pdbox.make | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/plugins/pdbox/pdbox.make b/apps/plugins/pdbox/pdbox.make index 239e1c0..3edc97e 100644 --- a/apps/plugins/pdbox/pdbox.make +++ b/apps/plugins/pdbox/pdbox.make @@ -36,10 +36,6 @@ $(PDBOXBUILDDIR)/pdbox.rock: $(filter %.o, $^) \ $(filter %.a, $+) \ -lgcc $(PDBOXLDFLAGS) -ifdef APP_TYPE - $(SILENT)cp $*.elf $@ -else - $(SILENT)$(OC) -O binary $*.elf $@ -endif + $(SILENT)$(call objcopy,$*.elf,$@) |