Config.version 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. config GCC_VERSION
  2. string
  3. default "4.1.2" if GCC_VERSION_4_1_2
  4. default "4.2.4" if GCC_VERSION_4_2_4
  5. default "4.3.3+cs" if GCC_VERSION_4_3_3_CS
  6. default "4.3.5" if GCC_VERSION_4_3_5
  7. default "4.4.1+cs" if GCC_VERSION_4_4_1_CS
  8. default "4.4.5" if GCC_VERSION_4_4_5
  9. default "4.5.2" if GCC_VERSION_4_5_2
  10. default "4.5.1+l" if GCC_VERSION_4_5_1_LINARO
  11. default "llvm" if GCC_VERSION_LLVM
  12. default "4.1.2"
  13. config GCC_VERSION_4
  14. bool
  15. default y if GCC_VERSION_4_1
  16. default y if GCC_VERSION_4_2
  17. default y if GCC_VERSION_4_3
  18. default y if GCC_VERSION_4_4
  19. default y if GCC_VERSION_4_5
  20. config GCC_VERSION_4_1
  21. bool
  22. default y if GCC_VERSION_4_1_2
  23. config GCC_VERSION_4_2
  24. bool
  25. default y if GCC_VERSION_4_2_4
  26. default y if GCC_VERSION_LLVM
  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_4_5_1_LINARO
  39. if !TOOLCHAINOPTS
  40. config GCC_VERSION_4_3_3_CS
  41. default y if (mips || mipsel) && !(TARGET_octeon || TARGET_sibyte)
  42. default y if (arm || armeb) && !(TARGET_gemini || TARGET_cns21xx || TARGET_omap35xx)
  43. config GCC_VERSION_4_3_5
  44. default y if avr32
  45. default y if powerpc64
  46. default y if TARGET_etrax
  47. default y if TARGET_coldfire
  48. default y if TARGET_gemini
  49. default y if TARGET_cns21xx
  50. config GCC_VERSION_4_4_5
  51. default y if (TARGET_octeon || TARGET_sibyte || TARGET_omap35xx)
  52. default y if powerpc
  53. default y if ubicom32
  54. config GCC_VERSION_4_5_1_LINARO
  55. default y if sparc
  56. endif