Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

20 lines
409B

  1. {
  2. "$schema": "../res/toolchain-schema.json",
  3. "compiler_id": "gnu",
  4. "c_compiler": "gcc9",
  5. "cxx_compiler": "g++9",
  6. "warning_flags": [
  7. "-Werror",
  8. ],
  9. "cxx_flags": [
  10. "-fconcepts",
  11. "-std=c++2a",
  12. ],
  13. "link_flags": [
  14. "-static-libgcc",
  15. "-static-libstdc++",
  16. ],
  17. // "debug": true,
  18. "optimize": true,
  19. "compiler_launcher": "ccache"
  20. }