Config.sh64 849 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 "sh64"
  7. config HAVE_ELF
  8. bool
  9. default y
  10. config ARCH_CFLAGS
  11. string
  12. config LIBGCC_CFLAGS
  13. string
  14. config HAVE_DOT_HIDDEN
  15. bool
  16. default y
  17. config ARCH_SUPPORTS_BIG_ENDIAN
  18. bool
  19. default y
  20. config ARCH_SUPPORTS_LITTLE_ENDIAN
  21. bool
  22. default y
  23. choice
  24. prompt "Target Processor Type"
  25. default CONFIG_SH5
  26. help
  27. This is the processor type of your CPU. This information is used for
  28. optimizing purposes, as well as to determine if your CPU has an MMU,
  29. an FPU, etc. If you pick the wrong CPU type, there is no guarantee
  30. that uClibc will work at all....
  31. Here are the available choices:
  32. - "SH5" SuperH SH-5 101, 103
  33. config CONFIG_SH5
  34. select ARCH_HAS_MMU
  35. select UCLIBC_HAS_LFS
  36. bool "SH5"
  37. endchoice