diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2009-02-09 18:31:56 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2009-02-09 18:31:56 +0000 |
| commit | dca7d391f1f57085207def0321b89b18e6307c1b (patch) | |
| tree | ca7f341881eaea3020a085873b6d00cae731b11d /apps/plugins/plugin.lds | |
| parent | 1f3d667b1a8d4a11d2745ce22b89566265b48142 (diff) | |
| download | rockbox-dca7d391f1f57085207def0321b89b18e6307c1b.zip rockbox-dca7d391f1f57085207def0321b89b18e6307c1b.tar.gz rockbox-dca7d391f1f57085207def0321b89b18e6307c1b.tar.bz2 rockbox-dca7d391f1f57085207def0321b89b18e6307c1b.tar.xz | |
make sure plugin.lds is not processed when building sims since it isn't used for anything then!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19957 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/plugin.lds')
| -rw-r--r-- | apps/plugins/plugin.lds | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/plugins/plugin.lds b/apps/plugins/plugin.lds index dd52fba..8840805 100644 --- a/apps/plugins/plugin.lds +++ b/apps/plugins/plugin.lds @@ -10,9 +10,8 @@ OUTPUT_FORMAT(elf32-littlearm) OUTPUT_FORMAT(elf32-sh) #elif defined(CPU_MIPS) OUTPUT_FORMAT(elf32-littlemips) -#elif !defined(SIMULATOR) -/* We cannot have an #error here when building simulators since we don't have - any CPU defined then! */ +#else +/* We can have an #error here we don't use this file when build sims! */ #error Unknown CPU architecture #endif |