您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

22 行
549B

  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. "cxx_flags": [
  10. "-fconcepts",
  11. "-std=c++2a",
  12. ],
  13. "link_flags": [
  14. "-static",
  15. "-l:libssl.a",
  16. "-l:libcrypto.a",
  17. "-ldl",
  18. // WORKAROUND: https://sourceware.org/legacy-ml/glibc-bugs/2018-09/msg00009.html
  19. "-Wl,-u,pthread_mutex_lock,-u,pthread_mutex_unlock,-u,pthread_self",
  20. ],
  21. "optimize": true
  22. }