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.

1234567891011121314151617181920212223
  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. "flags": [
  10. "-fsanitize=address,undefined",
  11. ],
  12. "cxx_flags": [
  13. "-fconcepts",
  14. "-std=c++2a",
  15. ],
  16. "link_flags": [
  17. "-fsanitize=address,undefined",
  18. "-l:libssl.a",
  19. "-l:libcrypto.a",
  20. "-ldl",
  21. ],
  22. "debug": true
  23. }