Config.in.compiler 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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_ARCH_ARC
  12. default ADK_TOOLCHAIN_GCC_AVR32 if ADK_TARGET_ARCH_AVR32
  13. default ADK_TOOLCHAIN_GCC_KVX if ADK_TARGET_ARCH_KVX
  14. default ADK_TOOLCHAIN_GCC_LM32 if ADK_TARGET_ARCH_LM32
  15. default ADK_TOOLCHAIN_GCC_METAG if ADK_TARGET_ARCH_METAG
  16. default ADK_TOOLCHAIN_GCC_9 if ADK_TARGET_ARCH_BFIN && ADK_TARGET_BINFMT_FDPIC
  17. default ADK_TOOLCHAIN_GCC_11
  18. config ADK_TOOLCHAIN_GCC_GIT
  19. bool "git"
  20. depends on !ADK_TARGET_ARCH_AVR32
  21. depends on !ADK_TARGET_ARCH_METAG
  22. depends on !ADK_TARGET_ARCH_NDS32
  23. config ADK_TOOLCHAIN_GCC_11
  24. bool "11.2.0"
  25. depends on !ADK_TARGET_ARCH_AVR32
  26. depends on !ADK_TARGET_ARCH_METAG
  27. config ADK_TOOLCHAIN_GCC_10
  28. bool "10.3.0"
  29. depends on !ADK_TARGET_ARCH_AVR32
  30. depends on !ADK_TARGET_ARCH_METAG
  31. depends on !ADK_TARGET_ARCH_NDS32
  32. config ADK_TOOLCHAIN_GCC_9
  33. bool "9.4.0"
  34. depends on !ADK_TARGET_ARCH_ARC
  35. depends on !ADK_TARGET_ARCH_AVR32
  36. depends on !ADK_TARGET_ARCH_METAG
  37. depends on !ADK_TARGET_ARCH_NDS32
  38. config ADK_TOOLCHAIN_GCC_8
  39. bool "8.5.0"
  40. depends on !ADK_TARGET_ARCH_ARC
  41. depends on !ADK_TARGET_ARCH_AVR32
  42. depends on !ADK_TARGET_ARCH_CSKY
  43. depends on !ADK_TARGET_ARCH_HPPA
  44. depends on !ADK_TARGET_ARCH_METAG
  45. depends on !ADK_TARGET_ARCH_NDS32
  46. depends on !ADK_TARGET_ARCH_OR1K
  47. config ADK_TOOLCHAIN_GCC_7
  48. bool "7.5.0"
  49. depends on !ADK_TARGET_ARCH_ARC
  50. depends on !ADK_TARGET_ARCH_AVR32
  51. depends on !ADK_TARGET_ARCH_CSKY
  52. depends on !ADK_TARGET_ARCH_HPPA
  53. depends on !ADK_TARGET_ARCH_METAG
  54. depends on !ADK_TARGET_ARCH_NDS32
  55. depends on !ADK_TARGET_ARCH_OR1K
  56. config ADK_TOOLCHAIN_GCC_ARC
  57. bool "arc-2021.09"
  58. depends on ADK_TARGET_ARCH_ARC
  59. config ADK_TOOLCHAIN_GCC_AVR32
  60. bool "4.4.7-avr32"
  61. depends on ADK_TARGET_ARCH_AVR32
  62. config ADK_TOOLCHAIN_GCC_METAG
  63. bool "4.2.4-metag"
  64. depends on ADK_TARGET_ARCH_METAG
  65. config ADK_TOOLCHAIN_GCC_KVX
  66. bool "coolidge"
  67. depends on ADK_TARGET_ARCH_KVX
  68. config ADK_TOOLCHAIN_GCC_LM32
  69. bool "4.5.4-lm32"
  70. depends on ADK_TARGET_ARCH_LM32
  71. endchoice