Config.version 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.3" if GCC_VERSION_4_6_3
  14. default "4.7.2" if GCC_VERSION_4_7_2
  15. default "4.6-linaro" if GCC_VERSION_4_6_LINARO
  16. default "4.7-linaro" if GCC_VERSION_4_7_LINARO
  17. default "4.8.0" if GCC_VERSION_4_8_0
  18. default "4.6-linaro"
  19. config GCC_VERSION_4_4
  20. bool
  21. default y if GCC_VERSION_4_4_7
  22. config GCC_VERSION_4_6
  23. bool
  24. default y if (GCC_VERSION_4_6_3 || GCC_VERSION_4_6_LINARO)
  25. config GCC_VERSION_4_7
  26. bool
  27. default y if (GCC_VERSION_4_7_2 || GCC_VERSION_4_7_LINARO)
  28. config GCC_VERSION_4_8
  29. bool
  30. default y if GCC_VERSION_4_8_0
  31. if !TOOLCHAINOPTS
  32. config GCC_VERSION_4_4_7
  33. default y if GCC_DEFAULT_VERSION_4_4_7
  34. bool
  35. config GCC_VERSION_4_6_LINARO
  36. default y if GCC_DEFAULT_VERSION_4_6_LINARO
  37. bool
  38. endif