/external/llvm-project/clang/lib/Driver/ToolChains/ |
D | RISCVToolchain.cpp | 1 //===--- RISCVToolchain.cpp - RISCV ToolChain Implementations ---*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 28 ToolChain::path_list &Paths) { in addMultilibsFilePaths() 35 // through gcc-toolchain argument or in the same prefix where clang 36 // is installed. This helps decide whether to instantiate this toolchain 37 // or Baremetal toolchain. 49 /// RISCV Toolchain 58 // Add toolchain/multilib specific file paths. in RISCVToolChain() 62 ToolChain::path_list &PPaths = getProgramPaths(); in RISCVToolChain() [all …]
|
D | CommonArgs.h | 1 //===--- CommonArgs.h - Args handling for multiple toolchains ---*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 16 #include "clang/Driver/ToolChain.h" 24 ToolChain::path_list &Paths); 26 void AddLinkerInputs(const ToolChain &TC, const InputInfoList &Inputs, 30 void addLinkerCompressDebugSectionsOption(const ToolChain &TC, 36 bool addSanitizerRuntimes(const ToolChain &TC, const llvm::opt::ArgList &Args, 39 void linkSanitizerRuntimeDeps(const ToolChain &TC, 42 bool addXRayRuntime(const ToolChain &TC, const llvm::opt::ArgList &Args, [all …]
|
D | Ananas.cpp | 1 //===--- Ananas.cpp - Ananas ToolChain Implementations ------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 35 CmdArgs.push_back("-o"); in ConstructJob() 52 const ToolChain &ToolChain = getToolChain(); in ConstructJob() local 53 const Driver &D = ToolChain.getDriver(); in ConstructJob() 56 // Silence warning for "clang -g foo.o -o foo" in ConstructJob() 58 // and "clang -emit-llvm foo.o -o foo" in ConstructJob() 60 // and for "clang -w foo.o -o foo". Other warning options are already in ConstructJob() 65 CmdArgs.push_back(Args.MakeArgString("--sysroot=" + D.SysRoot)); in ConstructJob() [all …]
|
D | Fuchsia.cpp | 1 //===--- Fuchsia.cpp - Fuchsia ToolChain Implementations --------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 36 const toolchains::Fuchsia &ToolChain = in ConstructJob() local 38 const Driver &D = ToolChain.getDriver(); in ConstructJob() 42 // Silence warning for "clang -g foo.o -o foo" in ConstructJob() 44 // and "clang -emit-llvm foo.o -o foo" in ConstructJob() 46 // and for "clang -w foo.o -o foo". Other warning options are already in ConstructJob() 50 CmdArgs.push_back("-z"); in ConstructJob() 51 CmdArgs.push_back("max-page-size=4096"); in ConstructJob() [all …]
|
D | CloudABI.cpp | 1 //===--- CloudABI.cpp - CloudABI ToolChain Implementations ------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 30 const ToolChain &ToolChain = getToolChain(); in ConstructJob() local 31 const Driver &D = ToolChain.getDriver(); in ConstructJob() 34 // Silence warning for "clang -g foo.o -o foo" in ConstructJob() 36 // and "clang -emit-llvm foo.o -o foo" in ConstructJob() 38 // and for "clang -w foo.o -o foo". Other warning options are already in ConstructJob() 43 CmdArgs.push_back(Args.MakeArgString("--sysroot=" + D.SysRoot)); in ConstructJob() 46 CmdArgs.push_back("-Bstatic"); in ConstructJob() [all …]
|
/external/clang/lib/Driver/ |
D | ToolChain.cpp | 1 //===--- ToolChain.cpp - Collections of tools for one platform ------------===// 8 //===----------------------------------------------------------------------===// 18 #include "clang/Driver/ToolChain.h" 40 static ToolChain::RTTIMode CalculateRTTIMode(const ArgList &Args, in CalculateRTTIMode() 43 // Explicit rtti/no-rtti args in CalculateRTTIMode() 45 if (CachedRTTIArg->getOption().matches(options::OPT_frtti)) in CalculateRTTIMode() 46 return ToolChain::RM_EnabledExplicitly; in CalculateRTTIMode() 48 return ToolChain::RM_DisabledExplicitly; in CalculateRTTIMode() 51 // -frtti is default, except for the PS4 CPU. in CalculateRTTIMode() 53 return ToolChain::RM_EnabledImplicitly; in CalculateRTTIMode() [all …]
|
D | Tools.h | 1 //===--- Tools.h - Tool Implementations -------------------------*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 41 SmallString<128> getCompilerRT(const ToolChain &TC, 61 const ToolChain *AuxToolChain) const; 109 Clang(const ToolChain &TC) : Tool("clang", "clang frontend", TC, RF_Full) {} in Clang() 125 ClangAs(const ToolChain &TC) in ClangAs() 145 GnuTool(const char *Name, const char *ShortName, const ToolChain &TC) in GnuTool() 149 /// gcc - Generic GCC tool implementations. 153 Common(const char *Name, const char *ShortName, const ToolChain &TC) in Common() 165 /// RenderExtraToolArgs - Render any arguments necessary to force [all …]
|
/external/rust/crates/grpcio-sys/grpc/third_party/re2/ |
D | .travis.yml | 5 - os: linux 10 - ubuntu-toolchain-r-test 12 - g++-4.8 14 - MATRIX_EVAL="CC=gcc-4.8 CXX=g++-4.8" 15 - os: linux 20 - ubuntu-toolchain-r-test 22 - g++-4.9 24 - MATRIX_EVAL="CC=gcc-4.9 CXX=g++-4.9" 25 - os: linux 30 - ubuntu-toolchain-r-test [all …]
|
/external/llvm-project/clang/lib/Driver/ |
D | ToolChain.cpp | 1 //===- ToolChain.cpp - Collections of tools for one platform --------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 #include "clang/Driver/ToolChain.h" 30 #include "llvm/Config/llvm-config.h" 59 static ToolChain::RTTIMode CalculateRTTIMode(const ArgList &Args, in CalculateRTTIMode() 62 // Explicit rtti/no-rtti args in CalculateRTTIMode() 64 if (CachedRTTIArg->getOption().matches(options::OPT_frtti)) in CalculateRTTIMode() 65 return ToolChain::RM_Enabled; in CalculateRTTIMode() 67 return ToolChain::RM_Disabled; in CalculateRTTIMode() [all …]
|
/external/google-fruit/extras/dockerfiles/ |
D | ubuntu-18.04_custom.list | 1 deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic main 2 deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic main 3 deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-5.0 main 4 deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic-5.0 main 5 deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-6.0 main 6 deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic-6.0 main 7 deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main 8 deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main 9 deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main 10 deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main [all …]
|
D | ubuntu_arm-16.04_custom.list | 1 deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu xenial main 2 deb-src http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu xenial main 3 deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial main 4 deb-src http://apt.llvm.org/xenial/ llvm-toolchain-xenial main 5 deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-3.8 main 6 deb-src http://apt.llvm.org/xenial/ llvm-toolchain-xenial-3.8 main 7 deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-3.9 main 8 deb-src http://apt.llvm.org/xenial/ llvm-toolchain-xenial-3.9 main 9 deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-4.0 main 10 deb-src http://apt.llvm.org/xenial/ llvm-toolchain-xenial-4.0 main
|
/external/swiftshader/tests/regres/llvm/ |
D | llvm.go | 7 // http://www.apache.org/licenses/LICENSE-2.0 37 // Version holds the build version information of an LLVM toolchain. 63 // Download downloads and verifies the LLVM toolchain for the current OS. 68 // DownloadForOS downloads and verifies the LLVM toolchain for the given OS. 112 …rl = "https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/clang+llvm-10.0.0-x86_… 113 sig = relfile("10.0.0-ubuntu.sig") 116 …url = "https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/clang+llvm-10.0.0-x86… 117 sig = relfile("10.0.0-darwin.sig") 120 …url = "https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/LLVM-10.0.0-win64.exe" 121 sig = relfile("10.0.0-win64.sig") [all …]
|
/external/brotli/ |
D | .travis.yml | 5 - master 11 - os: linux 12 env: BUILD_SYSTEM=cmake C_COMPILER=gcc-7 CXX_COMPILER=g++-7 16 - ubuntu-toolchain-r-test 18 - gcc-7 19 - g++-7 20 - os: linux 21 env: BUILD_SYSTEM=cmake C_COMPILER=gcc-4.4 CXX_COMPILER=g++-4.4 25 - ubuntu-toolchain-r-test 27 - gcc-4.4 [all …]
|
/external/cpu_features/scripts/ |
D | test_integration.sh | 3 source "$(dirname -- "$0")"/run_integration.sh 5 # Toolchains for little-endian, 64-bit ARMv8 for GNU/Linux systems 6 function set_aarch64-linux-gnu() { 7 TOOLCHAIN=LINARO 8 TARGET=aarch64-linux-gnu 12 # Toolchains for little-endian, hard-float, 32-bit ARMv7 (and earlier) for GNU/Linux systems 13 function set_arm-linux-gnueabihf() { 14 TOOLCHAIN=LINARO 15 TARGET=arm-linux-gnueabihf 19 # Toolchains for little-endian, 32-bit ARMv8 for GNU/Linux systems [all …]
|
/external/rust/crates/ahash/.github/workflows/ |
D | rust.yml | 7 runs-on: ubuntu-latest 9 - uses: actions/checkout@v2 10 - name: Install latest stable 11 uses: actions-rs/toolchain@v1 13 toolchain: stable 15 - name: check nostd 16 uses: actions-rs/cargo@v1 19 args: --no-default-features 20 - name: test nostd 21 uses: actions-rs/cargo@v1 [all …]
|
/external/cpu_features/ |
D | .travis.yml | 8 - $HOME/cpu_features_archives 12 - ninja-build 16 TOOLCHAIN=NATIVE 21 - os: linux 24 TARGET=x86_64-linux-gnu 25 - os: linux 28 TARGET=x86_64-linux-gnu 29 - os: osx 32 TARGET=x86_64-osx 34 - os: osx [all …]
|
/external/llvm-project/llvm/tools/xcode-toolchain/ |
D | CMakeLists.txt | 6 # toolchain. Xcode toolchains are a mostly-undocumented feature that allows 10 # Setting an environment variable TOOLCHAINS to the toolchain's identifier will 11 # result in /usr/bin/<tool> or xcrun <tool> to find the tool in the toolchain. 13 # To make this work with Xcode 7.1 and later you can install the toolchain this 17 # This file generates a custom install-xcode-toolchain target which constructs 18 # and installs a toolchain with the identifier in the pattern: 19 # org.llvm.${PACKAGE_VERSION}. This toolchain can then be used to override the 24 # cmake -G Ninja -DLLVM_CREATE_XCODE_TOOLCHAIN=On 25 # -DCMAKE_INSTALL_PREFIX=$PWD/install 26 # ninja install-xcode-toolchain [all …]
|
/external/clang/ |
D | Android.mk | 1 LOCAL_PATH := $(call my-dir) 4 .PHONY: clang-toolchain-minimal clang-toolchain-full llvm-tools 5 clang-toolchain-minimal: \ 8 clang-toolchain-full: \ 9 clang-toolchain-minimal \ 11 clang-check \ 12 clang-format \ 13 clang-tidy \ 15 llvm-as \ 16 llvm-dis \ [all …]
|
/external/llvm/tools/xcode-toolchain/ |
D | CMakeLists.txt | 6 # toolchain. Xcode toolchains are a mostly-undocumented feature that allows 10 # Setting an environment variable TOOLCHAINS to the toolchain's identifier will 11 # result in /usr/bin/<tool> or xcrun <tool> to find the tool in the toolchain. 13 # To make this work with Xcode 7.1 and later you can install the toolchain this 17 # This file generates a custom install-xcode-toolchain target which constructs 18 # and installs a toolchain with the identifier in the pattern: 19 # org.llvm.${PACKAGE_VERSION}. This toolchain can then be used to override the 24 # cmake -G Ninja -DLLVM_CREATE_XCODE_TOOLCHAIN=On 25 # -DCMAKE_INSTALL_PREFIX=$PWD/install 26 # ninja install-xcode-toolchain [all …]
|
/external/rust/crates/grpcio-sys/grpc/third_party/toolchains/bazel_0.26.0_rbe_windows/ |
D | BUILD | 7 # http://www.apache.org/licenses/LICENSE-2.0 30 # Hardcoded toolchain, legacy behaviour. 32 name = "toolchain", 34 "armeabi-v7a|compiler": ":cc-compiler-armeabi-v7a", 35 "x64_windows|msvc-cl": ":cc-compiler-x64_windows", 36 "x64_windows|msys-gcc": ":cc-compiler-x64_windows_msys", 37 "x64_windows|mingw-gcc": ":cc-compiler-x64_windows_mingw", 38 "x64_windows_msys": ":cc-compiler-x64_windows_msys", 39 "x64_windows": ":cc-compiler-x64_windows", 40 "armeabi-v7a": ":cc-compiler-armeabi-v7a", [all …]
|
/external/angle/infra/config/generated/ |
D | cr-buildbucket.cfg | 1 # Auto-generated by lucicfg. 5 # https://luci-config.appspot.com/schemas/projects:buildbucket.cfg 14 identity: "user:angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com" 18 name: "android-arm-dbg" 19 swarming_host: "chromium-swarm.appspot.com" 26 …latform\":\"android\",\"recipe\":\"angle\",\"test_mode\":\"compile_only\",\"toolchain\":\"clang\"}" 28 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com" 35 name: "android-arm-rel" 36 swarming_host: "chromium-swarm.appspot.com" 43 …latform\":\"android\",\"recipe\":\"angle\",\"test_mode\":\"compile_only\",\"toolchain\":\"clang\"}" [all …]
|
/external/ms-tpm-20-ref/Samples/Nucleo-TPM/L4A6RG/ |
D | .cproject | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 15 …factType=org.eclipse.cdt.build.core.buildArtefactType.exe" cleanCommand="rm -rf" description="" id… 17 …<toolChain id="com.atollic.truestudio.exe.debug.toolchain.683225115" name="Atollic ARM Tools" supe… 21 …io.exe.debug.toolchain.platform.2054752829" isAbstract="false" name="Debug platform" superClass="c… 22 …<builder buildPath="${workspace_loc:/Nucleo-L4A6RG}/Debug" customBuilderProperties="toolChainpathT… 27 …-atollic-eabi-gcc -c" commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG}${OUTPUT_PREFIX} ${OUT… 36 ….fpucore" value="com.atollic.truestudio.common_options.target.fpucore.fpv4-sp-d16" valueType="enum… 39 …-atollic-eabi-gcc -c " commandLinePattern="${COMMAND} ${FLAGS} ${OUTPUT_FLAG}${OUTPUT_PREFIX} ${OU… 69 …dio.exe.debug.toolchain.gcc.optimization.level.1763412676" name="Optimization Level" superClass="c… 71 ….fpucore" value="com.atollic.truestudio.common_options.target.fpucore.fpv4-sp-d16" valueType="enum… [all …]
|
/external/pigweed/pw_toolchain/ |
D | generate_toolchain.gni | 7 # https://www.apache.org/licenses/LICENSE-2.0 20 # Scope defining the current toolchain. Contains all of the arguments required 27 # gn gen out --args='pw_command_launcher="ccache"' 31 # Creates a toolchain target. 45 # generate_from: (optional) The full target name of the toolchain that can 46 # trigger this toolchain to be generated. GN only allows one toolchain to 48 # same generate_toolchain target only one should declare a toolchain. This 49 # is primarily to allow generating sub-toolchains. Defaults to 52 # targets in this toolchain. These take precedence over args.gni settings. 55 # current_cpu: The CPU of the toolchain. [all …]
|
/external/fmtlib/ |
D | .travis.yml | 12 - secure: |- 20 - env: BUILD=Doc 23 - env: COMPILER=g++-6 BUILD=Debug STANDARD=14 29 - ubuntu-toolchain-r-test 31 - g++-6 32 - env: COMPILER=g++-6 BUILD=Release STANDARD=14 38 - ubuntu-toolchain-r-test 40 - g++-6 42 - env: COMPILER=g++-8 BUILD=Debug STANDARD=17 48 - ubuntu-toolchain-r-test [all …]
|
/external/libwebsockets/contrib/ |
D | android-make-script.sh | 8 export NDK=/opt/ndk_r17/android-ndk-r17-beta2-linux-x86_64/android-ndk-r17-beta2 10 export TOOLCHAIN=${NDK}/toolchain 12 export SYSROOT=${NDK}/platforms/android-22/arch-arm 13 set -e 16 #zlib-1.2.8 17 #libuv-1.x 18 #mbedtls-2.11.0 19 #libwebsockets-3.0.0 22 # create a local android toolchain 23 API=${3:-24} [all …]
|