/external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/ |
D | cmake.yml | 1 name: CI CMake 4 ci-cmake: 6 runs-on: ${{ matrix.os }} 8 fail-fast: false 11 - name: Ubuntu 18.04 GCC 12 os: ubuntu-18.04 14 cxx-compiler: g++ 16 - name: Ubuntu GCC ASAN 17 os: ubuntu-latest 19 cxx-compiler: g++ [all …]
|
D | pkgcheck.yml | 4 ci-pkgcheck: 6 runs-on: ${{ matrix.os }} 8 fail-fast: false 11 - name: Ubuntu GCC 12 os: ubuntu-latest 14 cxx-compiler: g++ 16 - name: Ubuntu GCC -m32 17 os: ubuntu-latest 19 cxx-compiler: g++ 20 packages: gcc-multilib g++-multilib [all …]
|
D | release.yml | 5 - '*' 7 ci-cmake: 9 runs-on: ${{ matrix.os }} 11 fail-fast: false 14 - name: Windows MSVC Win32 15 os: windows-latest 17 cmake-args: -A Win32 18 deploy-name: win-x86 20 - name: Windows MSVC Win32 Compat 21 os: windows-latest [all …]
|
D | pigz.yml | 4 ci-cmake: 6 runs-on: ${{ matrix.os }} 8 fail-fast: false 11 - name: Ubuntu GCC 12 os: ubuntu-latest 16 - name: Ubuntu GCC Symbol Prefix 17 os: ubuntu-latest 20 cmake-args: -DZLIB_SYMBOL_PREFIX=zTest_ 22 - name: Ubuntu Clang 23 os: ubuntu-latest [all …]
|
/external/python/pybind11/.github/workflows/ |
D | ci.yml | 8 - master 9 - stable 10 - v* 17 fail-fast: false 19 runs-on: [ubuntu-latest, windows-latest, macos-latest] 21 - 2.7 22 - 3.5 23 - 3.6 24 - 3.9 25 # - 3.10-dev # Re-enable once 3.10.0a5 is released [all …]
|
/external/vulkan-validation-layers/scripts/ |
D | update_deps.py | 11 # http://www.apache.org/licenses/LICENSE-2.0 23 Get and build dependent repositories using known-good commits. 26 ------- 31 repository at a "known-good" commit in order to provide stability in 35 -------------------- 39 Known-Good JSON Database 40 ------------------------ 42 This program expects to find a file named "known-good.json" in the 47 --------------- 49 See the help text (update_deps.py --help) for a complete list of options. [all …]
|
/external/libyuv/files/docs/ |
D | getting_started.md | 5 ## Pre-requisites 7 …need to have depot tools installed: https://www.chromium.org/developers/how-tos/install-depot-tools 14 gclient config --name src https://chromium.googlesource.com/libyuv/libyuv 62 call gn gen out\Release "--args=is_debug=false target_cpu=\"x64\"" 63 call gn gen out\Debug "--args=is_debug=true target_cpu=\"x64\"" 64 ninja -v -C out\Release 65 ninja -v -C out\Debug 67 call gn gen out\Release "--args=is_debug=false target_cpu=\"x86\"" 68 call gn gen out\Debug "--args=is_debug=true target_cpu=\"x86\"" 69 ninja -v -C out\Release [all …]
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/ |
D | gen_backends.py | 1 # Copyright (C) 2017-2018 Intel Corporation. All Rights Reserved. 32 def main(args=sys.argv[1:]): argument 35 …parser.add_argument('--dim', help='gBackendPixelRateTable array dimensions', nargs='+', type=int, … 36 parser.add_argument('--outdir', help='output directory', nargs='?', type=str, default=thisDir) 37 …parser.add_argument('--split', help='how many lines of initialization per file [0=no split]', narg… 38 …parser.add_argument('--numfiles', help='how many output files to generate', nargs='?', type=int, d… 39 parser.add_argument('--cpp', help='Generate cpp file(s)', action='store_true', default=False) 40 parser.add_argument('--hpp', help='Generate hpp file', action='store_true', default=False) 41 parser.add_argument('--cmake', help='Generate cmake file', action='store_true', default=False) 42 …parser.add_argument('--rast', help='Generate rasterizer functions instead of normal backend', acti… [all …]
|
/external/swiftshader/.vscode/ |
D | tasks.json | 22 "args": [ array 23 "-c", 24 "cmake --build . && echo Done" 28 "args": [ array 29 "-c", 30 "cmake --build . && echo Done" 34 "args": [ array 35 "-c", 36 "cmake --build . && echo Done" 64 "label": "cmake", [all …]
|
/external/pigweed/pw_build/ |
D | pigweed.cmake | 7 # https://www.apache.org/licenses/LICENSE-2.0 23 "using ${pw_root} within CMake") 28 # pw_unit_test/test.cmake for test functions and variables instead of relying 29 # on them to be provided by pw_build/pigweed.cmake. 30 include("$ENV{PW_ROOT}/pw_unit_test/test.cmake") 40 # NUM_POSITIONAL_ARGS - PARSE_ARGV <N> arguments for 43 # Optional Args: 45 # OPTION_ARGS - <option> arguments for cmake_parse_arguments 46 # ONE_VALUE_ARGS - <one_value_keywords> arguments for cmake_parse_arguments 47 # MULTI_VALUE_ARGS - <multi_value_keywords> arguments for [all …]
|
/external/deqp/scripts/ctsbuild/ |
D | config.py | 1 # -*- coding: utf-8 -*- 3 #------------------------------------------------------------------------- 5 # -------------------------------------- 13 # http://www.apache.org/licenses/LICENSE-2.0 21 #------------------------------------------------------------------------- 40 def __init__ (self, buildDir, buildType, args, srcPath = DEQP_DIR): argument 44 self.args = copy.copy(args) 57 return self.args 64 if which("cmake") == None: 66 "/Applications/CMake.app/Contents/bin/cmake" [all …]
|
/external/deqp/scripts/ |
D | check_swiftshader_runtime.py | 8 # https://www.apache.org/licenses/LICENSE-2.0 17 # - Python3 (apt-get install -y python3.x) 18 # - GO (apt-get install -y golang-go) 19 # - cmake (version 3.13 or later) 20 # - ninja (apt-get install -y ninja-build) 21 # - git (sudo apt-get install -y git) 24 # - crypto/openpgp (go get -u golang.org/x/crypto/openpgp...) 43 "-d", 44 "--directory", 48 default=str(Path(tempfile.gettempdir()) / "deqp-swiftshader") [all …]
|
/external/ComputeLibrary/scripts/ |
D | generate_build_files.py | 2 # -*- coding: utf-8 -*- 6 # SPDX-License-Identifier: MIT 26 """Generates build files for either bazel or cmake experimental builds using filelist.json 28 python scripts/generate_build_files.py --bazel 29 python scripts/generate_build_files.py --cmake 31 Writes generated file to the bazel BUILD file located under src/ if using --bazel flag. 32 Writes generated file to the CMake CMakeLists.txt file located under src/ if using --cmake flag. 98 # SPDX-License-Identifier: MIT 228 # ------------------------------------- 241 # Setup data-type and data-layout files to include [all …]
|
/external/libgav1/cmake/ |
D | libgav1_targets.cmake | 7 # http://www.apache.org/licenses/LICENSE-2.0 40 # libgav1_add_executable(NAME <name> SOURCES <sources> [optional args]) 42 # Optional args: 43 # cmake-format: off 44 # - OUTPUT_NAME: Override output file basename. Target basename defaults to 46 # - TEST: Flag. Presence means treat executable as a test. 47 # - DEFINES: List of preprocessor macro definitions. 48 # - INCLUDES: list of include directories for the target. 49 # - COMPILE_FLAGS: list of compiler flags for the target. 50 # - LINK_FLAGS: List of linker flags for the target. [all …]
|
/external/pigweed/pw_presubmit/py/pw_presubmit/ |
D | source_in_build.py | 7 # https://www.apache.org/licenses/LICENSE-2.0 42 ) -> Check: 45 Args: 85 def gn( # pylint: disable=invalid-name 88 ) -> Check: 91 Args: 127 def cmake( function 131 ) -> Check: 132 """Create a presubmit check that ensures source files are in CMake files. 134 Args: [all …]
|
/external/armnn/build-tool/scripts/ |
D | build-armnn.sh | 4 # Copyright © 2022-2023 Arm Ltd and Contributors. All rights reserved. 5 # SPDX-License-Identifier: MIT 9 # setup-armnn.sh must be executed in the same directory, before running this script 11 set -o nounset # Catch references to undefined variables. 12 set -o pipefail # Catch non zero exit codes within pipelines. 13 set -o errexit # Catch and propagate non zero exit codes. 21 …s_params are additional options provided by the user and will overwrite any previously defined args 24 if [ "$flag_debug" -eq 1 ]; then 33 # Force -fPIC so that ACL is suitable for inclusion in Arm NN library 34 local extra_cxx_flags="extra_cxx_flags='-fPIC'" [all …]
|
/external/skia/infra/bots/assets/cmake_mac/ |
D | create.py | 5 # Use of this source code is governed by a BSD-style license that can be 24 URL = ('https://github.com/Kitware/CMake/releases/download/v%s/' 25 'cmake-%s-Darwin-x86_64.tar.gz') % (VERSION, VERSION) 31 subprocess.check_call(['wget', URL, '--output-document=cmake.tar.gz']) 32 subprocess.check_call(['tar', '--extract', '--gunzip', '--file', 33 'cmake.tar.gz', '--directory', target_dir, 34 '--strip-components', '1']) 39 parser.add_argument('--target_dir', '-t', required=True) 40 args = parser.parse_args() 41 create_asset(args.target_dir)
|
/external/skia/infra/bots/assets/cmake_linux/ |
D | create.py | 5 # Use of this source code is governed by a BSD-style license that can be 24 URL = 'https://cmake.org/files/v%s/cmake-%s-Linux-x86_64.tar.gz' % ( 31 subprocess.check_call(['curl', URL, '-o', 'cmake.tar.gz']) 32 subprocess.check_call(['tar', '--extract', '--gunzip', '--file', 33 'cmake.tar.gz', '--directory', target_dir, 34 '--strip-components', '1']) 39 parser.add_argument('--target_dir', '-t', required=True) 40 args = parser.parse_args() 41 create_asset(args.target_dir)
|
/external/google-benchmark/ |
D | README.md | 3 …-and-test](https://github.com/google/benchmark/workflows/build-and-test/badge.svg)](https://github… 5 …st-bindings](https://github.com/google/benchmark/workflows/test-bindings/badge.svg)](https://githu… 7 [![Build Status](https://travis-ci.org/google/benchmark.svg?branch=master)](https://travis-ci.org/g… 32 [User Guide](#user-guide) for a more comprehensive feature overview. 39 [Discussion group](https://groups.google.com/d/forum/benchmark-discuss) 59 See [Platform-Specific Build Instructions](#platform-specific-build-instructions). 63 This describes the installation process using cmake. As pre-requisites, you'll 64 need git and cmake installed. 77 $ cmake -E make_directory "build" 78 # Generate build system files with cmake. [all …]
|
/external/libcxx/utils/ci/ |
D | macos-trunk.sh | 3 set -ue 7 …sename ${0}) [-h|--help] --libcxx-root <LIBCXX-ROOT> --libcxxabi-root <LIBCXXABI-ROOT> --std <STD>… 11 --libcxx-root Full path to the root of the libc++ repository to test. 12 --libcxxabi-root Full path to the root of the libc++abi repository to test. 13 --std Version of the C++ Standard to run the tests under (c++03, c++11, etc..). 14 --arch Architecture to build the tests for (32, 64). 15 …[--lit-args] Additional arguments to pass to lit (optional). If there are multiple arguments,… 16 …[--no-cleanup] Do not cleanup the temporary directory that was used for testing at the end. Thi… 17 [-h, --help] Print this help. 21 while [[ $# -gt 0 ]]; do [all …]
|
/external/skia/infra/bots/recipe_modules/build/ |
D | api.py | 2 # Use of this source code is governed by a BSD-style license that can be 14 from . import cmake 21 def __init__(self, buildername, *args, **kwargs): argument 36 elif 'CMake' in b: 37 self.compile_fn = cmake.compile_fn 38 self.copy_fn = cmake.copy_build_products 45 super(BuildApi, self).__init__(*args, **kwargs)
|
/external/tensorflow/third_party/llvm_openmp/ |
D | cmake_vars.bzl | 1 """This file contains helpers for cmake.""" 6 This function double-quotes the given string (in case it contains spaces or 8 double-quotes, and backslashes) that may be present. 10 Args: 27 Args: 40 """Expands #cmakedefine, #cmakedefine01, and CMake variables in a text file. 42 Args: 46 cmake_vars: a string containing the CMake variables, as generated by
|
/external/libwebsockets/contrib/ |
D | iOS.cmake | 1 # This file is based off of the Platform/Darwin.cmake and Platform/UnixPaths.cmake 2 # files which are included with CMake 2.8.4 9 # OS - the default, used to build for iPhone and iPad physical devices, which have an arm arch. 10 # SIMULATOR - used to build for the Simulator platforms, which have an x86 arch. 18 # In this case it will always be the most up-to-date SDK found in the CMAKE_IOS_DEVELOPER_ROOT pa… 29 # find_host_package (PROGRAM ARGS) 31 # Thanks to the android-cmake project for providing the command 46 # Required as of cmake 2.8.10 49 # Determine the cmake host system version so we know where to find the iOS SDKs 52 exec_program(uname ARGS -r OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_VERSION) [all …]
|
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/ |
D | run_tests.py | 8 # http://www.apache.org/licenses/LICENSE-2.0 122 Args: 140 flake_retries=4 if flaky or args.allow_flakes else 0, 141 timeout_retries=1 if flaky or args.allow_flakes else 0) 168 """Returns True if running running as a --use_docker child.""" 208 # Bit-ness is handled by the test machine's environment 237 def configure(self, config, args): argument 239 self.args = args 243 _check_compiler(self.args.compiler, [ 244 'default', 'cmake', 'cmake_vs2015', 'cmake_vs2017', [all …]
|
/external/jsoncpp/devtools/ |
D | batchbuild.py | 44 args = ["-D%s" % var for var in self.variables] 47 args.append("-DCMAKE_BUILD_TYPE=%s" % self.build_type) 49 args.extend(['-G', self.generator]) 50 return args 75 cmd = ['cmake'] + self.desc.cmake_args() + [os.path.abspath(self.source_dir)] 82 cmd = ['cmake', '--build', self.work_dir] 84 cmd += ['--config', self.desc.build_type] 107 """Fixes wrong EOL produced by cmake --build on Windows (\r\r\n instead of \r\n). 155 td.failed {background-color:#f08080;} 156 td.ok {background-color:#c0eec0;} [all …]
|