Config.in.arches 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. choice
  7. prompt "Target Architecture"
  8. default TARGET_alpha if TARGET_ARCH = "alpha"
  9. default TARGET_arm if TARGET_ARCH = "arm"
  10. default TARGET_avr32 if TARGET_ARCH = "avr32"
  11. default TARGET_bfin if TARGET_ARCH = "bfin"
  12. default TARGET_cris if TARGET_ARCH = "cris"
  13. default TARGET_e1 if TARGET_ARCH = "e1"
  14. default TARGET_frv if TARGET_ARCH = "frv"
  15. default TARGET_h8300 if TARGET_ARCH = "h8300"
  16. default TARGET_hppa if TARGET_ARCH = "hppa"
  17. default TARGET_i386 if TARGET_ARCH = "i386"
  18. default TARGET_i960 if TARGET_ARCH = "i960"
  19. default TARGET_ia64 if TARGET_ARCH = "ia64"
  20. default TARGET_m68k if TARGET_ARCH = "m68k"
  21. default TARGET_microblaze if TARGET_ARCH = "microblaze"
  22. default TARGET_mips if TARGET_ARCH = "mips"
  23. default TARGET_nios if TARGET_ARCH = "nios"
  24. default TARGET_nios2 if TARGET_ARCH = "nios2"
  25. default TARGET_powerpc if TARGET_ARCH = "powerpc"
  26. default TARGET_sh if TARGET_ARCH = "sh"
  27. default TARGET_sh64 if TARGET_ARCH = "sh64"
  28. default TARGET_sparc if TARGET_ARCH = "sparc"
  29. default TARGET_v850 if TARGET_ARCH = "v850"
  30. default TARGET_vax if TARGET_ARCH = "vax"
  31. default TARGET_x86_64 if TARGET_ARCH = "x86_64"
  32. default TARGET_xtensa if TARGET_ARCH = "xtensa"
  33. help
  34. The architecture of your target.
  35. config TARGET_alpha
  36. bool "alpha"
  37. config TARGET_arm
  38. bool "arm"
  39. config TARGET_avr32
  40. bool "avr32"
  41. config TARGET_bfin
  42. bool "bfin"
  43. config TARGET_cris
  44. bool "cris"
  45. config TARGET_e1
  46. bool "e1 (BROKEN)"
  47. config TARGET_frv
  48. bool "frv (BROKEN)"
  49. config TARGET_h8300
  50. bool "h8300 (BROKEN)"
  51. config TARGET_hppa
  52. bool "hppa"
  53. config TARGET_i386
  54. bool "i386"
  55. config TARGET_i960
  56. bool "i960 (BROKEN)"
  57. config TARGET_ia64
  58. bool "ia64"
  59. config TARGET_m68k
  60. bool "m68k"
  61. config TARGET_microblaze
  62. bool "microblaze (BROKEN)"
  63. config TARGET_mips
  64. bool "mips"
  65. config TARGET_nios
  66. bool "nios"
  67. config TARGET_nios2
  68. bool "nios2"
  69. config TARGET_powerpc
  70. bool "powerpc"
  71. config TARGET_sh
  72. bool "superh"
  73. config TARGET_sh64
  74. bool "sh64"
  75. config TARGET_sparc
  76. bool "sparc"
  77. config TARGET_v850
  78. bool "v850 (BROKEN)"
  79. config TARGET_vax
  80. bool "vax"
  81. config TARGET_x86_64
  82. bool "x86_64"
  83. config TARGET_xtensa
  84. bool "xtensa"
  85. endchoice