Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

gcc-9-audit.jsonc 463B

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