diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-02-04 08:34:20 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-02-04 08:34:20 +0000 |
| commit | 0a0c4d5379dec1ced3d259641e1f8ab79381cf80 (patch) | |
| tree | 692efdf82951283a82614f0d7f6dc93400b56ade /apps | |
| parent | 3edc65b137cf7f17d4412ac018afa6731a466b74 (diff) | |
| download | rockbox-0a0c4d5379dec1ced3d259641e1f8ab79381cf80.zip rockbox-0a0c4d5379dec1ced3d259641e1f8ab79381cf80.tar.gz rockbox-0a0c4d5379dec1ced3d259641e1f8ab79381cf80.tar.bz2 rockbox-0a0c4d5379dec1ced3d259641e1f8ab79381cf80.tar.xz | |
allow different output formats for other targets
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5771 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/plugins/plugin.lds | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/plugins/plugin.lds b/apps/plugins/plugin.lds index 6b15287..071630f 100644 --- a/apps/plugins/plugin.lds +++ b/apps/plugins/plugin.lds @@ -1,4 +1,12 @@ +#include "config.h" + +/* These output formats should be in the config-files */ + +#if CONFIG_CPU == MCF5249 +OUTPUT_FORMAT(elf32-m68k) +#else OUTPUT_FORMAT(elf32-sh) +#endif #define PLUGIN_LENGTH 0x8000 #define DRAMSIZE (MEMORYSIZE * 0x100000) - PLUGIN_LENGTH |