Config.version 956 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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_4_5_LINARO
  8. default y if !(GCC_DEFAULT_VERSION)
  9. bool
  10. config GCC_DEFAULT_VERSION_4_6_LINARO
  11. bool
  12. config GCC_VERSION
  13. string
  14. default "4.4.6" if GCC_VERSION_4_4_6
  15. default "4.6.1" if GCC_VERSION_4_6_1
  16. default "4.5-linaro" if GCC_VERSION_4_5_LINARO
  17. default "4.6-linaro" if GCC_VERSION_4_6_LINARO
  18. default "llvm" if GCC_VERSION_LLVM
  19. default "4.5-linaro"
  20. config GCC_VERSION_4_4
  21. bool
  22. default y if GCC_VERSION_4_4_6
  23. config GCC_VERSION_4_5
  24. bool
  25. default y if GCC_VERSION_4_5_LINARO
  26. config GCC_VERSION_4_6
  27. bool
  28. default y if (GCC_VERSION_4_6_1 || GCC_VERSION_4_6_LINARO)
  29. if !TOOLCHAINOPTS
  30. config GCC_VERSION_4_4_6
  31. default y if GCC_DEFAULT_VERSION_4_4_6
  32. bool
  33. config GCC_VERSION_4_5_LINARO
  34. default y if GCC_DEFAULT_VERSION_4_5_LINARO
  35. bool
  36. endif