1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Description: on mips64el, both MIPSEL and MIPS64EL are defined
Author: Damyan Ivanov <dmn@debian.org>
--- a/src/common/common.h
+++ b/src/common/common.h
@@ -147,6 +147,10 @@
#define RISC_ALIGNMENT
#endif /* sparc */
+#ifdef MIPS64EL
+#define FB_CPU CpuMips64el
+#else
+
#ifdef MIPSEL
#define FB_CPU CpuMipsel
#endif /* mipsel */
@@ -155,8 +159,6 @@
#define FB_CPU CpuMips
#endif /* mips */
-#ifdef MIPS64EL
-#define FB_CPU CpuMips64el
#endif /* mips64el */
#ifdef IA64
|