mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-06 21:25:03 -05:00
This allows us to easily distinguish between mips32 and mips32r2 (Works at least as far back as gcc 4.9) Change-Id: I2bcba194fd9cbeedf76cea739252271908bf73d0
6 lines
115 B
C
6 lines
115 B
C
#if (CPU_MIPS == 32) || (CPU_MIPS == 32r2)
|
|
#include "thread-mips32.c"
|
|
#else
|
|
#error Missing thread impl
|
|
#endif
|
|
|