Home
last modified time | relevance | path

Searched +full:build +full:- +full:msan (Results 1 – 25 of 116) sorted by relevance

12345

/third_party/grpc/tools/remote_build/
Dlinux.bazelrc8 # http://www.apache.org/licenses/LICENSE-2.0
20 # Next section is linux-specific RBE configuration
21 build --crosstool_top=//third_party/toolchains:rbe_linux_default_toolchain_suite
22 build --extra_toolchains=//third_party/toolchains:rbe_linux_default_cc_toolchain
24 build --extra_execution_platforms=//third_party/toolchains:rbe_linux_default_platform
25 build --host_platform=//third_party/toolchains:rbe_linux_default_platform
26 build --platforms=//third_party/toolchains:rbe_linux_default_platform
28 # we assume the default bazel RBE build is on linux,
30 build --test_tag_filters=-no_linux
31 build --build_tag_filters=-no_linux
[all …]
/third_party/protobuf/ci/
Dcommon.bazelrc2 build --javacopt=-Xep:SelfAssertion:WARN
4 build:dbg --compilation_mode=dbg
6 build:opt --compilation_mode=opt
8 build:san-common --config=dbg --strip=never --copt=-O0 --copt=-fno-omit-frame-pointer
10 build:asan --config=san-common --copt=-fsanitize=address --linkopt=-fsanitize=address
12 build:asan --dynamic_mode=off
14 build:msan --config=san-common --copt=-fsanitize=memory --linkopt=-fsanitize=memory
15 build:msan --copt=-fsanitize-memory-track-origins
16 build:msan --copt=-fsanitize-memory-use-after-dtor
17 build:msan --action_env=MSAN_OPTIONS=poison_in_dtor=1
[all …]
/third_party/libuv/.github/workflows/
Dsanitizer.yml6 - '**'
7 - '!docs/**'
8 - '!.**'
9 - '.github/workflows/sanitizer.yml'
12 - v[0-9].*
13 - master
16 sanitizers-linux:
17 runs-on: ubuntu-22.04
19 - uses: actions/checkout@v2
20 - name: Setup
[all …]
/third_party/grpc/tools/
Dbazel.rc3 # Bazel 7 begins to enable module by default which breaks gRPC build.
5 common --enable_bzlmod=false
7 # for platform-appropriate cxxopts
8 common --enable_platform_specific_config
10 build:windows --cxxopt='/std:c++17'
11 build:windows --host_cxxopt='/std:c++17'
12 build:linux --cxxopt='-std=c++17'
13 build:linux --host_cxxopt='-std=c++17'
14 build:macos --cxxopt='-std=c++17'
15 build:macos --host_cxxopt='-std=c++17'
[all …]
/third_party/skia/m133/infra/bots/recipe_modules/build/examples/full.expected/
DBuild-Debian10-Clang-x86_64-Debug-SwiftShader_MSAN.json5 "[START_DIR]/cache/work/skia/bin/fetch-gn"
13 "name": "fetch-gn"
18 "[START_DIR]/cache/work/skia/bin/fetch-ninja"
26 "name": "fetch-ninja"
31 "-u",
33 "--json-output",
49 "-u",
51 "--json-output",
53 "ensure-directory",
54 "--mode",
[all …]
DBuild-Debian10-Clang-x86_64-Debug-MSAN.json5 "[START_DIR]/cache/work/skia/bin/fetch-gn"
13 "name": "fetch-gn"
18 "[START_DIR]/cache/work/skia/bin/fetch-ninja"
26 "name": "fetch-ninja"
31 "-u",
33 "--json-output",
49 "-s"
60 "name": "ccache stats-start"
66 "[START_DIR]/cache/work/skia/out/Build-Debian10-Clang-x86_64-Debug-MSAN/Debug",
67--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\"…
[all …]
/third_party/grpc/tools/dockerfile/test/rbe_ubuntu2004/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
17 # Workaround the "tzdata hangs apt-get install during docker image build" issue for ubuntu20.04
21 RUN apt-get update && apt-get install -y build-essential curl git time wget zip && apt-get clean
27 # These dependencies are not sufficient to build gRPC Python, gRPC Python
29 RUN apt-get update && apt-get install -y \
31 python3-pip \
32 python3-setuptools \
33 python3-yaml \
34 && apt-get clean
37 RUN python3 -m pip install --upgrade pip==19.3.1
[all …]
/third_party/grpc/templates/tools/dockerfile/test/rbe_ubuntu2004/
DDockerfile.template2 --- |
9 # http://www.apache.org/licenses/LICENSE-2.0
19 # Workaround the "tzdata hangs apt-get install during docker image build" issue for ubuntu20.04
23 RUN apt-get update && apt-get install -y build-essential curl git time wget zip && apt-get clean
28 RUN ln -s /usr/bin/python3 /usr/bin/python
30 # Install Google's LLVM build for Ubuntu 20.04
31 …# Heavily inspired by https://github.com/GoogleCloudPlatform/container-definitions/tree/master/ubu…
32 # See go/llvm-docker
33 # Note that we are using the google's pre-built tools for multiple reasons:
34 …# * this is what the "official" rbe-ubuntu18-04 image is using: See https://github.com/GoogleCloud…
[all …]
/third_party/skia/m133/site/docs/dev/testing/
Dxsan.md2 ---
3 title: "MSAN, ASAN, & TSAN"
4 linkTitle: "MSAN, ASAN, & TSAN"
6 ---
13 - UBSAN works on Linux, Mac, Android, and Windows, though some checks are platform-specific.
14 - ASAN works on Linux, Mac, Android, and Windows.
15 - TSAN works on Linux and Mac.
16 - MSAN works on Linux[1].
19 with the system-provided C++ standard library, which is usually libstdc++.
23 [1]To compile and run with MSAN, an MSAN-instrumented version of libc++ is needed.
[all …]
/third_party/skia/site/docs/dev/testing/
Dxsan.md2 ---
3 title: "MSAN, ASAN, & TSAN"
4 linkTitle: "MSAN, ASAN, & TSAN"
6 ---
13 - UBSAN works on Linux, Mac, Android, and Windows, though some checks are platform-specific.
14 - ASAN works on Linux, Mac, Android, and Windows.
15 - TSAN works on Linux and Mac.
16 - MSAN works on Linux[1].
19 with the system-provided C++ standard library, which is usually libstdc++.
23 [1]To compile and run with MSAN, an MSAN-instrumented version of libc++ is needed.
[all …]
/third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/
DBuild-Debian10-Clang-x86_64-Debug-SwiftShader_MSAN.json5 "-u",
7 "--json-output",
23 "-u",
25 "--json-output",
27 "ensure-directory",
28 "--mode",
30 …"[START_DIR]/cache/work/skia/out/Build-Debian10-Clang-x86_64-Debug-SwiftShader_MSAN/Debug/swiftsha…
38 "-DSWIFTSHADER_BUILD_TESTS=OFF",
39 "-DSWIFTSHADER_WARNINGS_AS_ERRORS=OFF",
40 "-DREACTOR_ENABLE_MEMORY_SANITIZER_INSTRUMENTATION=OFF",
[all …]
DBuild-Debian10-Clang-x86_64-Debug-MSAN.json5 "-u",
7 "--json-output",
23 "-u",
24 "[START_DIR]/cache/work/skia/bin/fetch-gn"
32 "name": "fetch-gn"
37 "-s"
48 "name": "ccache stats-start"
54 "[START_DIR]/cache/work/skia/out/Build-Debian10-Clang-x86_64-Debug-MSAN/Debug",
55--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\"…
71 "-C",
[all …]
/third_party/benchmark/.github/workflows/
Dsanitizer.yml13 runs-on: ubuntu-latest
15 fail-fast: false
20 # TODO: add 'msan' above. currently failing and needs investigation.
22 - uses: actions/checkout@v2
24 - name: configure msan env
25 if: matrix.sanitizer == 'msan'
27 …echo "EXTRA_FLAGS=-g -O2 -fno-omit-frame-pointer -fsanitize=memory -fsanitize-memory-track-origins…
30 - name: configure ubsan env
33 …echo "EXTRA_FLAGS=-g -O2 -fno-omit-frame-pointer -fsanitize=undefined -fno-sanitize-recover=all" >…
36 - name: configure asan env
[all …]
/third_party/skia/m133/infra/bots/recipe_modules/build/
Ddefault.py2 # Use of this source code is governed by a BSD-style license that can be
10 """Build SwiftShader with CMake.
22 '-DSWIFTSHADER_BUILD_TESTS=OFF',
23 '-DSWIFTSHADER_WARNINGS_AS_ERRORS=OFF',
24 '-DREACTOR_ENABLE_MEMORY_SANITIZER_INSTRUMENTATION=OFF', # Way too slow.
31 # We arrange our MSAN/TSAN prebuilts a little differently than
34 # CMakeLists.txt at a harmless non-existent path.
38 # Extra flags for MSAN/TSAN, if necessary.
40 if 'MSAN' in extra_tokens:
41 san = ('msan','memory')
[all …]
/third_party/skia/infra/bots/recipe_modules/build/
Ddefault.py2 # Use of this source code is governed by a BSD-style license that can be
10 api.run(api.python, 'build command_buffer',
13 '--chrome-dir', chrome_dir,
14 '--output-dir', out,
15 '--extra-gn-args', 'mac_sdk_min="10.13"',
16 '--no-sync', '--no-hooks', '--make-output-dir'])
20 """Build SwiftShader with CMake.
31 '-DSWIFTSHADER_BUILD_TESTS=OFF',
32 '-DSWIFTSHADER_WARNINGS_AS_ERRORS=OFF',
33 '-DREACTOR_ENABLE_MEMORY_SANITIZER_INSTRUMENTATION=OFF', # Way too slow.
[all …]
/third_party/skia/m133/third_party/externals/harfbuzz/.circleci/
Dconfig.yml4 win32-executor:
6 - image: cimg/base:2023.10
7 win64-executor:
9 - image: cimg/base:2023.10
10 dist-executor:
12 - image: cimg/base:2023.10
16 macos-aat-fonts:
20 - checkout
21- run: HOMEBREW_NO_AUTO_UPDATE=1 brew install pkg-config ragel freetype glib cairo python3 icu4c g…
22 - run: pip3 install meson --upgrade
[all …]
/third_party/python/Lib/test/test_peg_generator/
D__init__.py8 # bpo-46633: Skip the test because it is too slow when Python is built
9 # with ASAN/MSAN: between 5 and 20 minutes on GitHub Actions.
10 raise unittest.SkipTest("test too slow on ASAN/MSAN build")
/third_party/skia/third_party/externals/harfbuzz/.circleci/
Dconfig.yml4 win32-executor:
6 - image: cimg/base:edge-20.04
7 win64-executor:
9 - image: cimg/base:edge-20.04
10 autotools-executor:
12 - image: cimg/base:edge-20.04
16 macos-aat-fonts:
20 - checkout
21- run: HOMEBREW_NO_AUTO_UPDATE=1 brew install pkg-config ragel freetype glib cairo python3 icu4c g…
22 - run: pip3 install meson --upgrade
[all …]
/third_party/skia/infra/bots/assets/clang_linux/
Dcreate.py5 # Use of this source code is governed by a BSD-style license that can be
25 # Build Clang, lld, compiler-rt (sanitizer support) and libc++.
27 subprocess.check_call(["git", "clone", "--depth", "1", "-b", BRANCH,
28 "https://llvm.googlesource.com/llvm-project"])
29 os.chdir("llvm-project")
32 subprocess.check_call(["cmake", "../llvm", "-G", "Ninja",
33 "-DCMAKE_BUILD_TYPE=MinSizeRel",
34 "-DCMAKE_INSTALL_PREFIX=" + target_dir,
35 "-DLLVM_ENABLE_PROJECTS=clang;clang-tools-extra;" +
36 "compiler-rt;libcxx;libcxxabi;lld",
[all …]
/third_party/skia/m133/infra/bots/assets/clang_linux/
DDockerfile2 # https://github.com/llvm/llvm-project/blob/76fd4bf675b5ceeeca0e4e15cf15d89c7acf4947/llvm/utils/doc…
6 # docker pull launcher.gcr.io/google/debian10:latest && docker images --digests | grep debian10
9 # Install build dependencies of llvm.
12 sed 's/^deb/deb-src /g' >> /etc/apt/sources.list
14 # compiler-rt (it fails using the built-in ld).
18 RUN apt-get update && \
19 apt-get install -y --no-install-recommends \
20 ca-certificates=20200601~deb10u2 gnupg=2.2.12-1+deb10u2 \
21 build-essential=12.6 cmake=3.13.4-1 make=4.2.1-1.2 python3=3.7.3-1 \
22 zlib1g=1:1.2.11.dfsg-1+deb10u2 wget=1.20.1-1.1 unzip=6.0-23+deb10u3 \
[all …]
/third_party/python/Lib/test/test_tools/
D__init__.py11 # bpo-46633: Skip the test because it is too slow when Python is built
12 # with ASAN/MSAN: between 5 and 20 minutes on GitHub Actions.
13 raise unittest.SkipTest("test too slow on ASAN/MSAN build")
/third_party/mesa3d/.gitlab-ci/build/
Dgitlab-ci.yml2 .build-common:
3 extends: .container+build-rules
7 # Build jobs don't take more than 1-3 minutes. 5-8 min max on a fresh runner
22 - _build/meson-logs/*.txt
23 - _build/meson-logs/strace
24 - _build/.ninja_log
25 - artifacts
28 .build-linux:
29 extends: .build-common
36 - !reference [default, before_script]
[all …]
/third_party/benchmark/
D.travis.yml7 - compiler: gcc
11 - lcov
13 - compiler: gcc
17 - g++-multilib
18 - libc6:i386
20 - COMPILER=g++
21 - C_COMPILER=gcc
22 - BUILD_TYPE=Debug
23 - BUILD_32_BITS=ON
24 - EXTRA_FLAGS="-m32"
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
Dreactor.gni2 # Use of this source code is governed by a BSD-style license that can be
9 import("${skia_root_dir}/build_overrides/build.gni")
19 …# Don't build LLVM on Mac, unless we have to. This only happens on ARM64 devices, which launched w…
26 # except for MSan builds which only get Reactor code instrumented with LLVM.
/third_party/skia/m133/third_party/externals/libwebp/infra/
Dcompile.sh32 set -xe
34 WORKSPACE=${WORKSPACE:-"$(mktemp -d -t webp.XXX)"}
43 BUILD_TYPE supported build type: (shared, static, static-debug)
45 aarch64-linux-clang
46 aarch64-linux-gnu
47 arm-linux-gnueabi
48 arm-neon-linux-gnueabi
50 cmake-aarch64
51 cmake-arm
52 cmake-clang
[all …]

12345