Config.version 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. config GCC_DEFAULT_VERSION
  2. bool
  3. config GCC_DEFAULT_VERSION_4_4_7
  4. select GCC_DEFAULT_VERSION
  5. default y if (avr32 || ubicom32)
  6. bool
  7. config GCC_DEFAULT_VERSION_4_6_LINARO
  8. default y if !(GCC_DEFAULT_VERSION)
  9. bool
  10. config GCC_VERSION
  11. string
  12. default "4.4.7" if GCC_VERSION_4_4_7
  13. default "4.6.2" if GCC_VERSION_4_6_2
  14. default "4.7.0" if GCC_VERSION_4_7_0
  15. default "4.5-linaro" if GCC_VERSION_4_5_LINARO
  16. default "4.6-linaro" if GCC_VERSION_4_6_LINARO
  17. default "4.7-linaro" if GCC_VERSION_4_7_LINARO
  18. default "llvm" if GCC_VERSION_LLVM
  19. default "4.6-linaro"
  20. config GCC_VERSION_4_4
  21. bool
  22. default y if GCC_VERSION_4_4_7
  23. config GCC_VERSION_4_5
  24. bool
  25. default y if GCC_VERSION_4_5_LINARO
  26. config GCC_VERSION_4_6
  27. bool
  28. default y if (GCC_VERSION_4_6_2 || GCC_VERSION_4_6_LINARO)
  29. config GCC_VERSION_4_7
  30. bool
  31. default y if (GCC_VERSION_4_7_0 || GCC_VERSION_4_7_LINARO)
  32. if !TOOLCHAINOPTS
  33. config GCC_VERSION_4_4_7
  34. default y if GCC_DEFAULT_VERSION_4_4_7
  35. bool
  36. config GCC_VERSION_4_6_LINARO
  37. default y if GCC_DEFAULT_VERSION_4_6_LINARO
  38. bool
  39. endif