Config.arm 700 B

123456789101112131415161718192021222324252627
  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. select ARCH_VDSO_SUPPORT
  15. config CONFIG_ARM_EABI
  16. bool "Build for EABI"
  17. help
  18. If you say 'y' here, functions and constants required by the
  19. ARM EABI will be built into the library. You should say 'y'
  20. if your compiler uses the ARM EABI, in which case you will also
  21. need a kernel supporting the EABI system call interface.
  22. If you say 'n' here, then the library will be built for the
  23. old Linux ABI.