Config.version 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. config GCC_DEFAULT_VERSION
  2. bool
  3. config GCC_DEFAULT_VERSION_4_3_3_CS
  4. select GCC_DEFAULT_VERSION
  5. bool
  6. config GCC_DEFAULT_VERSION_4_3_5
  7. select GCC_DEFAULT_VERSION
  8. default y if (avr32 || powerpc64 || TARGET_coldfire || TARGET_etrax)
  9. bool
  10. config GCC_DEFAULT_VERSION_4_4_5
  11. select GCC_DEFAULT_VERSION
  12. default y if (powerpc || ubicom32)
  13. bool
  14. config GCC_DEFAULT_VERSION_LINARO
  15. default y if !(GCC_DEFAULT_VERSION)
  16. bool
  17. config GCC_VERSION
  18. string
  19. default "4.3.3+cs" if GCC_VERSION_4_3_3_CS
  20. default "4.3.5" if GCC_VERSION_4_3_5
  21. default "4.4.1+cs" if GCC_VERSION_4_4_1_CS
  22. default "4.4.5" if GCC_VERSION_4_4_5
  23. default "4.5.2" if GCC_VERSION_4_5_2
  24. default "linaro" if GCC_VERSION_LINARO
  25. default "llvm" if GCC_VERSION_LLVM
  26. default "linaro"
  27. config GCC_VERSION_4_3
  28. bool
  29. default y if GCC_VERSION_4_3_3_CS
  30. default y if GCC_VERSION_4_3_5
  31. config GCC_VERSION_4_4
  32. bool
  33. default y if GCC_VERSION_4_4_1_CS
  34. default y if GCC_VERSION_4_4_5
  35. config GCC_VERSION_4_5
  36. bool
  37. default y if GCC_VERSION_4_5_2
  38. default y if GCC_VERSION_LINARO
  39. if !TOOLCHAINOPTS
  40. config GCC_VERSION_4_3_3_CS
  41. default y if GCC_DEFAULT_VERSION_4_3_3_CS
  42. bool
  43. config GCC_VERSION_4_3_5
  44. default y if GCC_DEFAULT_VERSION_4_3_5
  45. bool
  46. config GCC_VERSION_4_4_5
  47. default y if GCC_DEFAULT_VERSION_4_4_5
  48. bool
  49. config GCC_VERSION_LINARO
  50. default y if GCC_DEFAULT_VERSION_LINARO
  51. bool
  52. endif