Config.version 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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
  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.6.3" if GCC_VERSION_4_6_3
  15. default "4.7.2" if GCC_VERSION_4_7_2
  16. default "4.5-linaro" if GCC_VERSION_4_5_LINARO
  17. default "4.6-linaro" if GCC_VERSION_4_6_LINARO
  18. default "4.7-linaro" if GCC_VERSION_4_7_LINARO
  19. default "llvm" if GCC_VERSION_LLVM
  20. default "4.6-linaro"
  21. config GCC_VERSION_4_4
  22. bool
  23. default y if GCC_VERSION_4_4_7
  24. config GCC_VERSION_4_5
  25. bool
  26. default y if GCC_VERSION_4_5_LINARO
  27. config GCC_VERSION_4_6
  28. bool
  29. default y if (GCC_VERSION_4_6_2 || GCC_VERSION_4_6_3 || GCC_VERSION_4_6_LINARO)
  30. config GCC_VERSION_4_7
  31. bool
  32. default y if (GCC_VERSION_4_7_2 || GCC_VERSION_4_7_LINARO)
  33. if !TOOLCHAINOPTS
  34. config GCC_VERSION_4_4_7
  35. default y if GCC_DEFAULT_VERSION_4_4_7
  36. bool
  37. config GCC_VERSION_4_6_LINARO
  38. default y if GCC_DEFAULT_VERSION_4_6_LINARO
  39. bool
  40. endif