Config.version 804 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. config GCC_DEFAULT_VERSION
  2. bool
  3. config GCC_DEFAULT_VERSION_4_4_6
  4. select GCC_DEFAULT_VERSION
  5. default y if (avr32 || ubicom32)
  6. bool
  7. config GCC_DEFAULT_VERSION_LINARO
  8. default y if !(GCC_DEFAULT_VERSION)
  9. bool
  10. config GCC_VERSION
  11. string
  12. default "4.4.6" if GCC_VERSION_4_4_6
  13. default "4.6.1" if GCC_VERSION_4_6_1
  14. default "linaro" if GCC_VERSION_LINARO
  15. default "llvm" if GCC_VERSION_LLVM
  16. default "linaro"
  17. config GCC_VERSION_4_4
  18. bool
  19. default y if GCC_VERSION_4_4_6
  20. config GCC_VERSION_4_5
  21. bool
  22. default y if GCC_VERSION_LINARO
  23. config GCC_VERSION_4_6
  24. bool
  25. default y if GCC_VERSION_4_6_1
  26. if !TOOLCHAINOPTS
  27. config GCC_VERSION_4_4_6
  28. default y if GCC_DEFAULT_VERSION_4_4_6
  29. bool
  30. config GCC_VERSION_LINARO
  31. default y if GCC_DEFAULT_VERSION_LINARO
  32. bool
  33. endif