Searched +full:libcxx +full:- +full:setup (Results 1 – 11 of 11) sorted by relevance
| /third_party/benchmark/ |
| D | .travis-libcxx-setup.sh | 4 curl -sSL https://cmake.org/files/v3.6/cmake-3.6.1-Linux-x86_64.sh -o install-cmake.sh 5 chmod +x install-cmake.sh 6 sudo ./install-cmake.sh --prefix=/usr/local --skip-license 9 git clone --depth=1 https://github.com/llvm-mirror/llvm.git llvm-source 10 git clone --depth=1 https://github.com/llvm-mirror/libcxx.git llvm-source/projects/libcxx 11 git clone --depth=1 https://github.com/llvm-mirror/libcxxabi.git llvm-source/projects/libcxxabi 13 # Setup libc++ options 14 if [ -z "$BUILD_32_BITS" ]; then 19 mkdir llvm-build && cd llvm-build 20 cmake -DCMAKE_C_COMPILER=${C_COMPILER} -DCMAKE_CXX_COMPILER=${COMPILER} \ [all …]
|
| D | OAT.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- Copyright (c) 2021 Huawei Device Co., Ltd. 8 http://www.apache.org/licenses/LICENSE-2.0 18 --> 25 …<!--policyitem type="compatibility" name="GPL-2.0+" path="abc/.*" desc="Process that runs independ… 26 … <!--policyitem type="license" name="LGPL" path="abc/.*" desc="Dynamically linked by module X"/--> 27 …--policyitem type="copyright" name="xxx" path="abc/.*" rule="may" group="defaultGroup" filefilter=… 32 …<filteritem type="filename" name=".travis-libcxx-setup.sh|BUILD.bazel" desc="files are used for bu… 36 <!--<filteritem type="filepath" name="src/.*" desc="sources files"/>--> 63 …<!--licensematcher name="uvwxyz License" desc="If the scanning result is InvalidLicense, you can d… [all …]
|
| D | .travis.yml | 7 - 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/benchmark/.github/ |
| D | .libcxx-setup.sh | 4 git clone --depth=1 https://github.com/llvm/llvm-project.git llvm-project 6 # Setup libc++ options 7 if [ -z "$BUILD_32_BITS" ]; then 12 cd ./llvm-project 13 cmake -DCMAKE_C_COMPILER=${C_COMPILER} \ 14 -DCMAKE_CXX_COMPILER=${COMPILER} \ 15 -DCMAKE_BUILD_TYPE=RelWithDebInfo \ 16 -DCMAKE_INSTALL_PREFIX=/usr \ 17 -DLIBCXX_ABI_UNSTABLE=OFF \ 18 -DLLVM_USE_SANITIZER=${LIBCXX_SANITIZER} \ [all …]
|
| /third_party/skia/infra/bots/recipe_modules/build/ |
| D | default.py | 2 # Use of this source code is governed by a BSD-style license that can be 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']) 31 '-DSWIFTSHADER_BUILD_TESTS=OFF', 32 '-DSWIFTSHADER_WARNINGS_AS_ERRORS=OFF', 33 '-DREACTOR_ENABLE_MEMORY_SANITIZER_INSTRUMENTATION=OFF', # Way too slow. 42 # setup (everything mentioning libcxx below) and point SwiftShader's 43 # CMakeLists.txt at a harmless non-existent path. [all …]
|
| /third_party/skia/m133/infra/bots/recipe_modules/build/ |
| D | default.py | 2 # Use of this source code is governed by a BSD-style license that can be 22 '-DSWIFTSHADER_BUILD_TESTS=OFF', 23 '-DSWIFTSHADER_WARNINGS_AS_ERRORS=OFF', 24 '-DREACTOR_ENABLE_MEMORY_SANITIZER_INSTRUMENTATION=OFF', # Way too slow. 33 # setup (everything mentioning libcxx below) and point SwiftShader's 34 # CMakeLists.txt at a harmless non-existent path. 46 libcxx = clang_linux + '/' + short 48 '-fsanitize=' + full, 49 '-stdlib=libc++', 50 '-L%s/lib' % libcxx, [all …]
|
| /third_party/benchmark/.github/workflows/ |
| D | sanitizer.yml | 13 runs-on: ubuntu-latest 15 fail-fast: false 22 - uses: actions/checkout@v2 24 - name: configure msan env 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 39 …echo "EXTRA_FLAGS=-g -O2 -fno-omit-frame-pointer -fsanitize=address -fno-sanitize-recover=all" >> … 42 - name: configure tsan env [all …]
|
| /third_party/rust/rust/ |
| D | config.example.toml | 3 # To configure rustbuild, run `./configure` or `./x.py setup`. 4 # See https://rustc-dev-guide.rust-lang.org/building/how-to-build-and-run.html#create-a-configtoml … 9 # a custom configuration file can also be specified with `--config` to the build 16 # Use different pre-set defaults than the global defaults. 23 # If `changelog-seen` does not match the version that is currently running, 26 changelog-seen = 2 38 # All tier 1 targets are currently supported; set this to `"if-available"` if 45 #download-ci-llvm = if rust.channel == "dev" { "if-available" } else { false } 51 # only succeed if you use clang, lld, llvm-ar, and llvm-ranlib in your C/C++ 53 # More info at: https://clang.llvm.org/docs/ThinLTO.html#clang-bootstrap [all …]
|
| /third_party/rust/rust/src/bootstrap/ |
| D | config.rs | 36 "setting {} is incompatible with download-ci-llvm.", 49 /// This is a dry run enabled by the `--dry-run` flag. 65 fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> in deserialize() 73 StringOrInt::String("line-tables-only") => DebuginfoLevel::LineTablesOnly, in deserialize() 84 &"expected none, line-tables-only, limited, or full", in deserialize() 91 /// Suitable for passing to `-C debuginfo` 93 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() 97 LineTablesOnly => "line-tables-only", in fmt() 106 …parsed from `config.toml`, and some of the fields are inferred from `git` or build-time parameters. 156 /// Arguments appearing after `--` to be forwarded to tools, [all …]
|
| /third_party/NuttX/ |
| D | ReleaseNotes | 14 "nuttx-6.27"). 16 NuttX-0.1.0 17 ----------- 23 This release has been verified on both the Linux user-mode and C5471 25 for the C5471 can be found in arch/c5471/doc/test-results.txt. 29 NuttX-0.1.1 30 ----------- 42 This release has been verified on the Linux user-mode platform, the 51 NuttX-0.1.2 52 ----------- [all …]
|
| /third_party/grpc/third_party/toolchains/rbe_ubuntu2004_bazel7/cc/ |
| D | module.modulemap | 152 textual header "/usr/local/lib/clang/19/include/opencl-c-base.h" 153 textual header "/usr/local/lib/clang/19/include/opencl-c.h" 1219 textual header "/usr/local/include/c++/v1/libcxx.imp" 1281 textual header "/usr/include/x86_64-linux-gnu/a.out.h" 1282 textual header "/usr/include/x86_64-linux-gnu/asm/a.out.h" 1283 textual header "/usr/include/x86_64-linux-gnu/asm/auxvec.h" 1284 textual header "/usr/include/x86_64-linux-gnu/asm/bitsperlong.h" 1285 textual header "/usr/include/x86_64-linux-gnu/asm/boot.h" 1286 textual header "/usr/include/x86_64-linux-gnu/asm/bootparam.h" 1287 textual header "/usr/include/x86_64-linux-gnu/asm/bpf_perf_event.h" [all …]
|