aboutsummaryrefslogtreecommitdiffstats
path: root/src/build-data/detect_arch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/build-data/detect_arch.cpp')
-rw-r--r--src/build-data/detect_arch.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/build-data/detect_arch.cpp b/src/build-data/detect_arch.cpp
index 028e39b3b..4de58922f 100644
--- a/src/build-data/detect_arch.cpp
+++ b/src/build-data/detect_arch.cpp
@@ -18,7 +18,12 @@
PPC64
#elif defined(__powerpc__) || defined(__ppc__) || defined(_ARCH_PPC)
- PPC32
+
+ #if defined(__SPE__)
+ POWERPCSPE
+ #else
+ PPC32
+ #endif
#elif defined(__mips__) || defined(__mips)