You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 4 година
пре 4 година
пре 4 година
пре 4 година
1234567891011121314151617181920
  1. {
  2. "$schema": "../res/toolchain-schema.json",
  3. "compiler_id": "gnu",
  4. "c_compiler": "gcc-9",
  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. }