uClibc_arch_features.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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. #error "You should copy this to your arch/bits/ dir and customize"
  7. /* instruction used when calling abort() to kill yourself */
  8. /*#define __UCLIBC_ABORT_INSTRUCTION__ "asm instruction"*/
  9. #undef __UCLIBC_ABORT_INSTRUCTION__
  10. /* can your target use syscall6() for mmap ? */
  11. #undef __UCLIBC_MMAP_HAS_6_ARGS__
  12. /* does your target use syscall4() for truncate64 ? (32bit arches only) */
  13. #undef __UCLIBC_TRUNCATE64_HAS_4_ARGS__
  14. /* does your target have a broken create_module() ? */
  15. #undef __UCLIBC_BROKEN_CREATE_MODULE__
  16. /* does your target prefix all symbols with an _ ? */
  17. #define __UCLIBC_NO_UNDERSCORES__
  18. /* does your target have an asm .set ? */
  19. #define __UCLIBC_HAVE_ASM_SET_DIRECTIVE__
  20. /* shouldn't need to change these ... */
  21. #define __UCLIBC_ASM_GLOBAL_DIRECTIVE__
  22. #define __UCLIBC_ASM_TYPE_DIRECTIVE_PREFIX__
  23. #define __UCLIBC_HAVE_ASM_WEAK_DIRECTIVE__
  24. #define __UCLIBC_HAVE_ASM_WEAKEXT_DIRECTIVE__
  25. #define __UCLIBC_HAVE_ASM_GLOBAL_DOT_NAME__
  26. #endif /* _BITS_UCLIBC_ARCH_FEATURES_H */