Config.in.compiler 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. choice
  4. prompt "Compiler"
  5. config ADK_BUILD_COMPILER_GCC
  6. bool "gcc"
  7. endchoice
  8. choice
  9. prompt "GCC version"
  10. depends on ADK_BUILD_COMPILER_GCC
  11. default ADK_TOOLCHAIN_GCC_AVR32 if ADK_TARGET_ARCH_AVR32
  12. default ADK_TOOLCHAIN_GCC_KVX if ADK_TARGET_ARCH_KVX
  13. default ADK_TOOLCHAIN_GCC_METAG if ADK_TARGET_ARCH_METAG
  14. default ADK_TOOLCHAIN_GCC_7 if ADK_TARGET_ARCH_C6X # ICE with newer GCC
  15. default ADK_TOOLCHAIN_GCC_9 if ADK_TARGET_ARCH_BFIN && ADK_TARGET_BINFMT_FDPIC
  16. default ADK_TOOLCHAIN_GCC_10 if ADK_TARGET_ARCH_CRIS # no longer supported
  17. default ADK_TOOLCHAIN_GCC_10 if ADK_TARGET_ARCH_H8300 # ICE
  18. default ADK_TOOLCHAIN_GCC_10 if ADK_TARGET_CPU_SH_J2 # j2.patch
  19. default ADK_TOOLCHAIN_GCC_11 if ADK_TARGET_ARCH_SPARC # bus error without patch
  20. default ADK_TOOLCHAIN_GCC_12
  21. config ADK_TOOLCHAIN_GCC_GIT
  22. bool "git"
  23. depends on !ADK_TARGET_ARCH_AVR32
  24. depends on !ADK_TARGET_ARCH_METAG
  25. depends on !ADK_TARGET_ARCH_NDS32
  26. config ADK_TOOLCHAIN_GCC_13
  27. bool "13.2.0"
  28. depends on !ADK_TARGET_ARCH_AVR32
  29. depends on !ADK_TARGET_ARCH_METAG
  30. depends on !ADK_TARGET_ARCH_SPARC
  31. config ADK_TOOLCHAIN_GCC_12
  32. bool "12.3.0"
  33. depends on !ADK_TARGET_ARCH_AVR32
  34. depends on !ADK_TARGET_ARCH_METAG
  35. depends on !ADK_TARGET_ARCH_SPARC
  36. config ADK_TOOLCHAIN_GCC_11
  37. bool "11.4.0"
  38. depends on !ADK_TARGET_ARCH_AVR32
  39. depends on !ADK_TARGET_ARCH_C6X
  40. depends on !ADK_TARGET_ARCH_METAG
  41. depends on !ADK_TARGET_ARCH_LOONGARCH
  42. config ADK_TOOLCHAIN_GCC_10
  43. bool "10.5.0"
  44. depends on !ADK_TARGET_ARCH_AVR32
  45. depends on !ADK_TARGET_ARCH_C6X
  46. depends on !ADK_TARGET_ARCH_METAG
  47. depends on !ADK_TARGET_ARCH_NDS32
  48. depends on !ADK_TARGET_ARCH_LOONGARCH
  49. config ADK_TOOLCHAIN_GCC_9
  50. bool "9.5.0"
  51. depends on !ADK_TARGET_ARCH_ARC
  52. depends on !ADK_TARGET_ARCH_AVR32
  53. depends on !ADK_TARGET_ARCH_C6X
  54. depends on !ADK_TARGET_ARCH_METAG
  55. depends on !ADK_TARGET_ARCH_NDS32
  56. depends on !ADK_TARGET_ARCH_LOONGARCH
  57. config ADK_TOOLCHAIN_GCC_8
  58. bool "8.5.0"
  59. depends on !ADK_TARGET_ARCH_ARC
  60. depends on !ADK_TARGET_ARCH_AVR32
  61. depends on !ADK_TARGET_ARCH_C6X
  62. depends on !ADK_TARGET_ARCH_CSKY
  63. depends on !ADK_TARGET_ARCH_HPPA
  64. depends on !ADK_TARGET_ARCH_METAG
  65. depends on !ADK_TARGET_ARCH_NDS32
  66. depends on !ADK_TARGET_ARCH_OR1K
  67. depends on !ADK_TARGET_ARCH_LOONGARCH
  68. config ADK_TOOLCHAIN_GCC_7
  69. bool "7.5.0"
  70. depends on !ADK_TARGET_ARCH_ARC
  71. depends on !ADK_TARGET_ARCH_AVR32
  72. depends on !ADK_TARGET_ARCH_CSKY
  73. depends on !ADK_TARGET_ARCH_HPPA
  74. depends on !ADK_TARGET_ARCH_METAG
  75. depends on !ADK_TARGET_ARCH_NDS32
  76. depends on !ADK_TARGET_ARCH_OR1K
  77. depends on !ADK_TARGET_ARCH_LOONGARCH
  78. config ADK_TOOLCHAIN_GCC_AVR32
  79. bool "4.4.7-avr32"
  80. depends on ADK_TARGET_ARCH_AVR32
  81. config ADK_TOOLCHAIN_GCC_METAG
  82. bool "4.2.4-metag"
  83. depends on ADK_TARGET_ARCH_METAG
  84. config ADK_TOOLCHAIN_GCC_KVX
  85. bool "coolidge"
  86. depends on ADK_TARGET_ARCH_KVX
  87. endchoice