sgidefs.h 545 B

123456789101112131415161718192021222324252627282930
  1. #ifndef _SGIDEFS_H
  2. #define _SGIDEFS_H
  3. /* MIPS ABI crap that GLIBC puts into /include
  4. by default, and GDB depends on it happily. */
  5. #define _MIPS_ISA_MIPS1 1
  6. #define _MIPS_ISA_MIPS2 2
  7. #define _MIPS_ISA_MIPS3 3
  8. #define _MIPS_ISA_MIPS4 4
  9. #define _MIPS_ISA_MIPS5 5
  10. #define _MIPS_ISA_MIPS32 6
  11. #define _MIPS_ISA_MIPS64 7
  12. #ifndef _ABIO32
  13. #define _ABIO32 1
  14. #endif
  15. #define _MIPS_SIM_ABI32 _ABIO32
  16. #ifndef _ABIN32
  17. #define _ABIN32 2
  18. #endif
  19. #define _MIPS_SIM_NABI32 _ABIN32
  20. #ifndef _ABI64
  21. #define _ABI64 3
  22. #endif
  23. #define _MIPS_SIM_ABI64 _ABI64
  24. #endif