Config.arm 674 B

1234567891011121314151617181920212223242526
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see extra/config/Kconfig-language.txt
  4. #
  5. config TARGET_ARCH
  6. string
  7. default "arm"
  8. config FORCE_OPTIONS_FOR_ARCH
  9. bool
  10. default y
  11. select ARCH_ANY_ENDIAN
  12. select ARCH_HAS_UCONTEXT
  13. select ARCH_HAS_DEPRECATED_SYSCALLS
  14. config CONFIG_ARM_EABI
  15. bool "Build for EABI"
  16. help
  17. If you say 'y' here, functions and constants required by the
  18. ARM EABI will be built into the library. You should say 'y'
  19. if your compiler uses the ARM EABI, in which case you will also
  20. need a kernel supporting the EABI system call interface.
  21. If you say 'n' here, then the library will be built for the
  22. old Linux ABI.