浏览代码

Remove unused (and wrong) toolchain fiel

default_compile_flags
vector-of-bool 4 年前
父节点
当前提交
e9d5608c5a
共有 2 个文件被更改,包括 0 次插入15 次删除
  1. +0
    -4
      tools/dds_ci/toolchain.py
  2. +0
    -11
      tools/gcc-9-test.jsonc

+ 0
- 4
tools/dds_ci/toolchain.py 查看文件

Get the default toolchain that should be used for dev and test based on the Get the default toolchain that should be used for dev and test based on the
host platform. host platform.
""" """
if distro.id() == 'alpine':
# Alpine Linux cannot use the full audit mode, as asan and ubsan do not
# work with musl
return paths.TOOLS_DIR / 'gcc-9-test.jsonc'
if sys.platform == 'win32': if sys.platform == 'win32':
return paths.TOOLS_DIR / 'msvc-audit.jsonc' return paths.TOOLS_DIR / 'msvc-audit.jsonc'
if sys.platform == 'linux': if sys.platform == 'linux':

+ 0
- 11
tools/gcc-9-test.jsonc 查看文件

{
"$schema": "../res/toolchain-schema.json",
"compiler_id": "gnu",
"c_compiler": "gcc-9",
"cxx_compiler": "g++-9",
"cxx_version": "c++17",
"warning_flags": [
"-Werror",
],
"debug": true
}

正在加载...
取消
保存