Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

22 lines
514B

  1. {
  2. "$schema": "../res/toolchain-schema.json",
  3. "compiler_id": "gnu",
  4. "c_compiler": "gcc9",
  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. }