Config.mips 1.3 KB

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