Config.version 1.2 KB

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