forked from len0rd/rockbox
don't do #error if no CPU define was found since we don't set it on simulator
builds! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19955 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
04c7379ac5
commit
293ca3eaad
1 changed files with 3 additions and 1 deletions
|
@ -11,7 +11,9 @@ OUTPUT_FORMAT(elf32-sh)
|
||||||
#elif defined(CPU_MIPS)
|
#elif defined(CPU_MIPS)
|
||||||
OUTPUT_FORMAT(elf32-littlemips)
|
OUTPUT_FORMAT(elf32-littlemips)
|
||||||
#else
|
#else
|
||||||
#error Unknown CPU architecture
|
/* We cannot have an #error here since we don't have any of these defines
|
||||||
|
define when we build simulators!
|
||||||
|
#error Unknown CPU architecture */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue