/external/r8/tools/ |
D | create_art_tests.py | 47 def create_toolchain_dirs(toolchain): argument 48 toolchain_dir = join(OUTPUT_DIR, toolchain) 54 def write_file(toolchain, tool, class_name, contents): argument 55 file_name = join(OUTPUT_DIR, toolchain, tool, class_name + ".java") 59 def create_tests(toolchain): argument 60 source_dir = join(TEST_DIR, "dx" if toolchain == "none" else toolchain) 66 if tool == "d8" and toolchain == "none": 74 testGeneratingToolchain=toolchain, 75 testGeneratingToolchainEnum=upper(toolchain), 77 write_file(toolchain, tool, class_name, contents) [all …]
|
/external/clang/ |
D | Android.mk | 4 .PHONY: clang-toolchain-minimal clang-toolchain-full llvm-tools 5 clang-toolchain-minimal: \ 8 clang-toolchain-full: \ 9 clang-toolchain-minimal \ 66 clang-toolchain-minimal: \ 79 clang-toolchain-full: \ 85 clang-toolchain-full: libomp 87 clang-toolchain-full: libomp-$(TARGET_ARCH) 93 clang-toolchain-minimal: \
|
D | ToolchainPrebuilts.md | 116 1. Run the toolchain build script. This will perform a two stage build and 117 create a tarball of the final toolchain. 121 2. The just built toolchain can be tested in an existing AOSP tree by invoking 128 This will use the just built toolchain rather than the one in **prebuilts/**. 142 toolchain in prebuilts so we can easily switch between them in the build 144 that need new toolchain features to take advantage of them locally while
|
/external/toolchain-utils/ |
D | README.chromium | 1 Name: toolchain-utils 2 Short Name: toolchain-utils 3 URL: https://chromium.googlesource.com/chromiumos/third_party/toolchain-utils 9 This contains scripts used to help maintain the toolchain. These 11 custom versions of the toolchain inside Chromium OS; launching 13 running toolchain regression tests; and using binary search to isolate 14 toolchain issues.
|
/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 26 # ninja install-xcode-toolchain 37 option(LLVM_CREATE_XCODE_TOOLCHAIN "Create a target to install LLVM into an Xcode toolchain" Off) 51 message(FATAL_ERROR "Could not identify toolchain dir") [all …]
|
/external/toolchain-utils/automation/clients/helper/ |
D | chromeos.py | 64 def __init__(self, chromeos_version, board, toolchain, p4_snapshot): argument 67 self.toolchain = toolchain 94 self.toolchain: True} 157 toolchain='trunk', argument 161 self.toolchain = toolchain 163 self.commands = CommandsFactory(chromeos_version, board, toolchain, 169 label = 'BuildAndBenchmark(%s,%s,%s)' % (self.toolchain, self.board,
|
/external/autotest/test_suites/ |
D | control.toolchain-tests | 6 NAME = "toolchain-tests" 7 PURPOSE = "Test basic, required functionality for the toolchain team." 15 This is a suite designed to catch all the tests that the toolchain 16 team wants to run. They should only be run by the toolchain builbots. 39 'labels': ['toolchain-tests'], 49 args_dict['name'] = 'toolchain-tests'
|
/external/toolchain-utils/automation/clients/ |
D | nightly.py | 33 toolchain = options.toolchain 40 toolchain=toolchain)
|
/external/valgrind/ |
D | README.mips | 18 - Use of cross-toolchain is supported as well. 26 * --host=mips-linux-gnu is necessary if you compile it with cross toolchain 29 * --host=mipsel-linux-gnu is necessary if you compile it with cross toolchain 47 then 4.6.1 due to a bug in the toolchain. 48 - Older GCC may have issues with some inline assembly blocks. Get a toolchain
|
/external/libvpx/libvpx/build/make/ |
D | configure.sh | 409 echo "TOOLCHAIN := ${toolchain}" >> config.mk 411 case ${toolchain} in 422 fwrite config.mk "ALL_TARGETS += ${t}-${toolchain}" 444 TOOLCHAIN=${toolchain} 522 toolchain="${toolchain:-${optval}}" 525 toolchain="${toolchain:-${optval}}" 675 if [ -z "$toolchain" ]; then 759 toolchain=${tgt_isa}-${tgt_os}-gcc 763 toolchain=${toolchain:-generic-gnu} 765 is_in ${toolchain} ${all_platforms} || enabled force_toolchain \ [all …]
|
/external/v8/ |
D | snapshot_toolchain.gni | 32 # toolchain that matches the bit-width of the target CPU, but runs on 37 # Try to infer the appropriate snapshot toolchain for the v8_current_cpu 55 # toolchain. 61 # toolchain here, too. 65 v8_snapshot_toolchain = "//build/toolchain/mac:clang_${v8_current_cpu}" 69 # host, unless this is a ChromeOS build, in which case the same toolchain 90 v8_snapshot_toolchain = "//build/toolchain/${host_os}:${_clang}${_cpus}"
|
D | .gn | 41 "//build/toolchain/concurrent_links.gni", 42 "//build/toolchain/gcc_toolchain.gni", 43 "//build/toolchain/mac/BUILD.gn", 44 "//build/toolchain/win/BUILD.gn",
|
/external/autotest/client/site_tests/platform_ToolchainOptions/ |
D | control | 9 hardened toolchain. 19 ATTRIBUTES = "suite:bvt-cq, suite:toolchain-tests" 27 Tests whether system ELF executables were compiled with a hardened toolchain.
|
/external/boringssl/src/third_party/android-cmake/ |
D | android.toolchain.cmake | 32 # Android CMake toolchain file, for use with the Android NDK r5-r10d 39 # $ cmake -DCMAKE_TOOLCHAIN_FILE=path/to/the/android.toolchain.cmake .. 51 # -DCMAKE_TOOLCHAIN_FILE=path\to\the\android.toolchain.cmake 82 # Option is read-only when standalone toolchain is used. 86 # toolchain to be used. The list of possible values depends on the NDK 131 # Is not available for standalone toolchain. 134 # Is not available for standalone toolchain. 138 # Is not available for standalone toolchain. 142 # Is not available for standalone toolchain. 146 # Is not available for standalone toolchain. [all …]
|
/external/llvm/cmake/modules/ |
D | CrossCompile.cmake | 1 function(llvm_create_cross_target_internal target_name toolchain buildtype) 9 if (EXISTS ${LLVM_MAIN_SRC_DIR}/cmake/platforms/${toolchain}.cmake) 11 -DCMAKE_TOOLCHAIN_FILE=\"${LLVM_MAIN_SRC_DIR}/cmake/platforms/${toolchain}.cmake\"
|
/external/v8/src/third_party/vtune/ |
D | BUILD.gn | 5 import("//build/toolchain/toolchain.gni")
|
/external/libyuv/files/ |
D | .gn | 43 "//build/toolchain/gcc_toolchain.gni", 44 "//build/toolchain/mac/BUILD.gn", 45 "//build/toolchain/win/BUILD.gn",
|
/external/r8/src/test/java/com/android/tools/r8/ |
D | R8RunArtTestsTest.java | 61 private final DexTool toolchain; field in R8RunArtTestsTest 852 private final DexTool toolchain; field in R8RunArtTestsTest.SpecificationKey 854 private SpecificationKey(String name, DexTool toolchain) { in SpecificationKey() argument 857 this.toolchain = toolchain; in SpecificationKey() 867 return name.equals(that.name) && toolchain == that.toolchain; in equals() 872 return 31 * name.hashCode() + toolchain.hashCode(); in hashCode() 1013 public R8RunArtTestsTest(String name, DexTool toolchain) { in R8RunArtTestsTest() argument 1015 this.toolchain = toolchain; in R8RunArtTestsTest() 1360 .get(new SpecificationKey(name, toolchain)); in runArtTest() 1365 + toolchain + "."); in runArtTest() [all …]
|
/external/webrtc/ |
D | .gn | 42 "//build/toolchain/gcc_toolchain.gni", 43 "//build/toolchain/mac/BUILD.gn", 44 "//build/toolchain/win/BUILD.gn",
|
/external/llvm/tools/msbuild/ |
D | install.bat | 52 REM Routine for installing v100 toolchain. 63 REM Routine for installing v110 toolchain. 80 REM Routine for installing v120 toolchain. 97 REM Routine for installing v140 toolchain.
|
/external/libxml2/VxWorks/ |
D | README | 23 of the GNU toolchain, we have only tested and built with the GNU 24 toolchain. 29 hack). Since the VxWorks GNU toolchain is very close in version to the 61 VxWorks toolchain, and in my investigation, it has something to do with
|
/external/boringssl/src/util/bot/ |
D | vs_toolchain.py | 39 toolchain = toolchain_data['path'] 50 os.environ['GYP_MSVS_OVERRIDE_PATH'] = toolchain
|
/external/libmojo/mojo/public/tools/bindings/ |
D | mojom.gni | 105 toolchain = get_label_info(d, "toolchain") 106 deps += [ "${name}__is_mojom(${toolchain})" ] 254 toolchain = get_label_info(d, "toolchain") 256 dependency_target = "${dependency_output}(${toolchain})"
|
/external/libmojo/mojo/public/ |
D | mojo_application_manifest.gni | 135 toolchain = get_label_info(d, "toolchain") 136 deps += [ "${name}__is_mojo_application_manifest(${toolchain})" ]
|
/external/libvpx/libvpx/ |
D | configure | 491 tgt_fn="$tgt-$toolchain.mk" 494 echo "Creating makefiles for ${toolchain} ${tgt}" 543 case $toolchain in 659 case $toolchain in x86*) soft_enable postproc;; esac 666 case "$toolchain" in
|