Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

23 lines
507B

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