No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

22 líneas
515B

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