The recent commit (2690fadc8b35190dddd29274a7405bac13adc469) shuffled the
mips headers around causing it to check the ABI defines before it included
the header which set those up.  Now all mips builds fail with:
        In file included from count.c:36:0:
        defs.h:48:4: error: #error Unsupported _MIPS_SIM

* defs.h [MIPS]: Move sgidefs.h above _MIPS_SIM check.
---
 defs.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/defs.h b/defs.h
index 5f1905e..291b8fb 100644
--- a/defs.h
+++ b/defs.h
@@ -38,6 +38,7 @@
 #endif
 
 #ifdef MIPS
+# include <sgidefs.h>
 # if _MIPS_SIM == _MIPS_SIM_ABI64
 #  define LINUX_MIPSN64
 # elif _MIPS_SIM == _MIPS_SIM_NABI32
@@ -47,7 +48,6 @@
 # else
 #  error Unsupported _MIPS_SIM
 # endif
-# include <sgidefs.h>
 #endif
 
 #include <features.h>
-- 
1.8.2.1


------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
_______________________________________________
Strace-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/strace-devel

Reply via email to