Config.sh64 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see extra/config/Kconfig-language.txt
  4. #
  5. mainmenu "uClibc C Library Configuration"
  6. menu "Target Architecture Features and Options"
  7. config HAVE_ELF
  8. bool
  9. default y
  10. config ARCH_CFLAGS
  11. string
  12. config ARCH_LDFLAGS
  13. string
  14. config LIBGCC_CFLAGS
  15. string
  16. choice
  17. prompt "Target Processor Type"
  18. default CONFIG_SH5
  19. help
  20. This is the processor type of your CPU. This information is used for
  21. optimizing purposes, as well as to determine if your CPU has an MMU,
  22. an FPU, etc. If you pick the wrong CPU type, there is no guarantee
  23. that uClibc will work at all....
  24. Here are the available choices:
  25. - "SH5" SH-5 101, 103
  26. config CONFIG_SH5
  27. bool "SH5"
  28. endchoice
  29. choice
  30. prompt "Target Processor Endianness"
  31. default ARCH_LITTLE_ENDIAN
  32. help
  33. This is the endianness you wish to build use. Choose either Big
  34. Endian, or Little Endian.
  35. config ARCH_LITTLE_ENDIAN
  36. bool "Little Endian"
  37. config ARCH_BIG_ENDIAN
  38. bool "Big Endian"
  39. endchoice
  40. source "extra/Configs/Config.in.arch"
  41. endmenu
  42. source "extra/Configs/Config.in"