uClibc_arch_features.h 1.0 KB

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