rockbox/lib/libsetjmp/SOURCES
Thomas Martitz 3478bc5d6d mips is predefined by gcc, but we want it for paths. Don't let others fall into this trap again. Use __mips instead
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27872 a1c6a512-1295-4272-9138-f99709370657
2010-08-24 13:41:45 +00:00

19 lines
198 B
Text

#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
#ifdef CPU_ARM
arm/setjmp.S
#endif
#ifdef CPU_COLDFIRE
m68k/setjmp.S
#endif
#ifdef CPU_SH
sh/setjmp.S
#endif
#ifdef CPU_MIPS
mips/setjmp.S
#endif
#endif