Config.mips 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 "mips"
  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. choice
  15. prompt "Target ABI"
  16. default CONFIG_MIPS_O32_ABI
  17. help
  18. This is the ABI you wish to build use. Choose either O32, N32
  19. or N64.
  20. config CONFIG_MIPS_O32_ABI
  21. bool "O32 ABI"
  22. config CONFIG_MIPS_N32_ABI
  23. bool "N32 ABI"
  24. config CONFIG_MIPS_N64_ABI
  25. bool "N64 ABI"
  26. endchoice
  27. choice
  28. prompt "Target NAN Encoding"
  29. default CONFIG_MIPS_NAN_LEGACY
  30. help
  31. This is the NAN Encoding you want to use. Chose either Legacy
  32. or 2008.
  33. config CONFIG_MIPS_NAN_LEGACY
  34. bool "LEGACY"
  35. config CONFIG_MIPS_NAN_2008
  36. bool "2008"
  37. endchoice
  38. config UCLIBC_USE_MIPS_PREFETCH
  39. bool "Use MIPS prefetch optimization for memcpy/memset"
  40. default y
  41. help
  42. You get better performance when you use Prefetch.
  43. https://gcc.gnu.org/projects/prefetch.html#mips