選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
407B

  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. }