Config.in.compiler 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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_ARC if ADK_TARGET_CPU_ARC_ARC32
  12. default ADK_TOOLCHAIN_GCC_ARC if ADK_TARGET_CPU_ARC_ARC64
  13. default ADK_TOOLCHAIN_GCC_AVR32 if ADK_TARGET_ARCH_AVR32
  14. default ADK_TOOLCHAIN_GCC_KVX if ADK_TARGET_ARCH_KVX
  15. default ADK_TOOLCHAIN_GCC_LM32 if ADK_TARGET_ARCH_LM32
  16. default ADK_TOOLCHAIN_GCC_METAG if ADK_TARGET_ARCH_METAG
  17. default ADK_TOOLCHAIN_GCC_7 if ADK_TARGET_ARCH_C6X # ICE with newer GCC
  18. default ADK_TOOLCHAIN_GCC_9 if ADK_TARGET_ARCH_BFIN && ADK_TARGET_BINFMT_FDPIC
  19. default ADK_TOOLCHAIN_GCC_10 if ADK_TARGET_ARCH_CRIS # no longer supported
  20. default ADK_TOOLCHAIN_GCC_10 if ADK_TARGET_CPU_SH_J2 # j2.patch
  21. default ADK_TOOLCHAIN_GCC_11 if ADK_TARGET_ARCH_SPARC # bus error without patch
  22. default ADK_TOOLCHAIN_GCC_13
  23. config ADK_TOOLCHAIN_GCC_GIT
  24. bool "git"
  25. depends on !ADK_TARGET_ARCH_AVR32
  26. depends on !ADK_TARGET_ARCH_METAG
  27. depends on !ADK_TARGET_ARCH_NDS32
  28. config ADK_TOOLCHAIN_GCC_13
  29. bool "13.2.0"
  30. depends on !ADK_TARGET_ARCH_AVR32
  31. depends on !ADK_TARGET_ARCH_CRIS
  32. depends on !ADK_TARGET_ARCH_METAG
  33. depends on !ADK_TARGET_ARCH_SPARC
  34. config ADK_TOOLCHAIN_GCC_12
  35. bool "12.3.0"
  36. depends on !ADK_TARGET_ARCH_AVR32
  37. depends on !ADK_TARGET_ARCH_CRIS
  38. depends on !ADK_TARGET_ARCH_METAG
  39. depends on !ADK_TARGET_ARCH_LOONGARCH
  40. depends on !ADK_TARGET_ARCH_SPARC
  41. config ADK_TOOLCHAIN_GCC_11
  42. bool "11.4.0"
  43. depends on !ADK_TARGET_ARCH_AVR32
  44. depends on !ADK_TARGET_ARCH_CRIS
  45. depends on !ADK_TARGET_ARCH_C6X
  46. depends on !ADK_TARGET_ARCH_METAG
  47. depends on !ADK_TARGET_ARCH_LOONGARCH
  48. config ADK_TOOLCHAIN_GCC_10
  49. bool "10.5.0"
  50. depends on !ADK_TARGET_ARCH_AVR32
  51. depends on !ADK_TARGET_ARCH_C6X
  52. depends on !ADK_TARGET_ARCH_METAG
  53. depends on !ADK_TARGET_ARCH_NDS32
  54. depends on !ADK_TARGET_ARCH_LOONGARCH
  55. config ADK_TOOLCHAIN_GCC_9
  56. bool "9.5.0"
  57. depends on !ADK_TARGET_ARCH_ARC
  58. depends on !ADK_TARGET_ARCH_AVR32
  59. depends on !ADK_TARGET_ARCH_C6X
  60. depends on !ADK_TARGET_ARCH_METAG
  61. depends on !ADK_TARGET_ARCH_NDS32
  62. depends on !ADK_TARGET_ARCH_LOONGARCH
  63. config ADK_TOOLCHAIN_GCC_8
  64. bool "8.5.0"
  65. depends on !ADK_TARGET_ARCH_ARC
  66. depends on !ADK_TARGET_ARCH_AVR32
  67. depends on !ADK_TARGET_ARCH_C6X
  68. depends on !ADK_TARGET_ARCH_CSKY
  69. depends on !ADK_TARGET_ARCH_HPPA
  70. depends on !ADK_TARGET_ARCH_METAG
  71. depends on !ADK_TARGET_ARCH_NDS32
  72. depends on !ADK_TARGET_ARCH_OR1K
  73. depends on !ADK_TARGET_ARCH_LOONGARCH
  74. config ADK_TOOLCHAIN_GCC_7
  75. bool "7.5.0"
  76. depends on !ADK_TARGET_ARCH_ARC
  77. depends on !ADK_TARGET_ARCH_AVR32
  78. depends on !ADK_TARGET_ARCH_CSKY
  79. depends on !ADK_TARGET_ARCH_HPPA
  80. depends on !ADK_TARGET_ARCH_METAG
  81. depends on !ADK_TARGET_ARCH_NDS32
  82. depends on !ADK_TARGET_ARCH_OR1K
  83. depends on !ADK_TARGET_ARCH_LOONGARCH
  84. config ADK_TOOLCHAIN_GCC_ARC
  85. bool "arc-2023.09"
  86. depends on ADK_TARGET_ARCH_ARC
  87. config ADK_TOOLCHAIN_GCC_AVR32
  88. bool "4.4.7-avr32"
  89. depends on ADK_TARGET_ARCH_AVR32
  90. config ADK_TOOLCHAIN_GCC_LM32
  91. bool "4.5.4-lm32"
  92. depends on ADK_TARGET_ARCH_LM32
  93. config ADK_TOOLCHAIN_GCC_METAG
  94. bool "4.2.4-metag"
  95. depends on ADK_TARGET_ARCH_METAG
  96. config ADK_TOOLCHAIN_GCC_KVX
  97. bool "coolidge"
  98. depends on ADK_TARGET_ARCH_KVX
  99. endchoice