Config.sh64 886 B

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