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.

gcc-9.jsonc 407B

1234567891011121314151617
  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. ],
  14. // "debug": true,
  15. "optimize": true,
  16. "compiler_launcher": "ccache"
  17. }