uClibc_arch_features.h 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Track misc arch-specific features that aren't config options
  3. */
  4. #ifndef _BITS_UCLIBC_ARCH_FEATURES_H
  5. #define _BITS_UCLIBC_ARCH_FEATURES_H
  6. /* instruction used when calling abort() to kill yourself */
  7. #define __UCLIBC_ABORT_INSTRUCTION__ "unimp 0xf00"
  8. /* can your target use syscall6() for mmap ? */
  9. #define __UCLIBC_MMAP_HAS_6_ARGS__
  10. /* does your target use syscall4() for truncate64 ? (32bit arches only) */
  11. #undef __UCLIBC_TRUNCATE64_HAS_4_ARGS__
  12. /* does your target have a broken create_module() ? */
  13. #undef __UCLIBC_BROKEN_CREATE_MODULE__
  14. /* does your target prefix all symbols with an _ ? */
  15. #define __UCLIBC_NO_UNDERSCORES__
  16. /* does your target have an asm .set ? */
  17. #define __UCLIBC_HAVE_ASM_SET_DIRECTIVE__
  18. /* shouldn't need to change these ... */
  19. #define __UCLIBC_ASM_GLOBAL_DIRECTIVE__
  20. #define __UCLIBC_ASM_TYPE_DIRECTIVE_PREFIX__
  21. #define __UCLIBC_HAVE_ASM_WEAK_DIRECTIVE__
  22. #define __UCLIBC_HAVE_ASM_WEAKEXT_DIRECTIVE__
  23. #define __UCLIBC_HAVE_ASM_GLOBAL_DOT_NAME__
  24. #endif /* _BITS_UCLIBC_ARCH_FEATURES_H */