Config.mips 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. default "mips"
  7. config ARCH_CFLAGS
  8. string
  9. default "-mno-split-addresses"
  10. config LIBGCC_CFLAGS
  11. string
  12. config ARCH_SUPPORTS_BIG_ENDIAN
  13. bool
  14. default y
  15. config ARCH_SUPPORTS_LITTLE_ENDIAN
  16. bool
  17. default y
  18. choice
  19. prompt "Target Processor Architecture"
  20. default CONFIG_MIPS_ISA_1
  21. help
  22. This selects the instruction set architecture of your MIPS CPU. This
  23. information is used for optimizing purposes. To build a library that
  24. will run on any MIPS CPU, you can specify "Generic (MIPS I)" here.
  25. If you pick anything other than "Generic (MIPS I)," there is no
  26. guarantee that uClibc will even run on anything other than the
  27. selected processor type.
  28. You should probably select the MIPS ISA that best matches the
  29. CPU you will be using on your device. uClibc will be tuned
  30. for that architecture.
  31. If you don't know what to do, choose "Generic (MIPS I)"
  32. config CONFIG_MIPS_ISA_1
  33. bool "Generic (MIPS I)"
  34. config CONFIG_MIPS_ISA_2
  35. bool "MIPS II"
  36. config CONFIG_MIPS_ISA_3
  37. bool "MIPS III"
  38. config CONFIG_MIPS_ISA_4
  39. bool "MIPS IV"
  40. config CONFIG_MIPS_ISA_MIPS32
  41. bool "MIPS32"
  42. config CONFIG_MIPS_ISA_MIPS64
  43. bool "MIPS64"
  44. endchoice