Home
last modified time | relevance | path

Searched +full:cmake +full:- +full:args (Results 1 – 25 of 226) sorted by relevance

12345678910

/external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/
Dcmake.yml1 name: CI CMake
4 ci-cmake:
6 runs-on: ${{ matrix.os }}
8 fail-fast: false
12 Ubuntu GCC OSB -O1,
52 - name: Ubuntu GCC
53 os: ubuntu-latest
55 cmake-args: -DWITH_SANITIZERS=ON
58 - name: Ubuntu GCC OSB -O1
59 os: ubuntu-latest
[all …]
Dpkgcheck.yml4 ci-pkgcheck:
6 runs-on: ${{ matrix.os }}
8 fail-fast: false
12 Ubuntu GCC -m32,
20 - name: Ubuntu GCC
21 os: ubuntu-latest
24 - name: Ubuntu GCC -m32
25 os: ubuntu-latest
27 packages: gcc-multilib
28 cmake-args: -DCMAKE_C_FLAGS=-m32
[all …]
Drelease.yml5 - '*'
7 ci-cmake:
9 runs-on: ${{ matrix.os }}
11 fail-fast: false
20 - name: Windows MSVC Win32
21 os: windows-latest
23 cmake-args: -A Win32
24 deploy-name: win32
26 - name: Windows MSVC Win32 Compat
27 os: windows-latest
[all …]
/external/llvm-project/llvm/utils/
Dcollect_and_build_with_pgo.py4 - Builds clang with user-defined flags
5 - Uses that clang to build an instrumented clang, which can be used to collect
7 - Builds a user-defined set of sources (default: clang) to act as a
9 - Builds clang once more with the PGO profile generated above
14 This scripts duplicates https://llvm.org/docs/AdvancedBuilds.html#multi-stage-pgo
15 Eventually, it will be updated to instead call the cmake cache mentioned there.
35 # You may assume that out_dir is a freshly-built directory that you can reach
41 # `check-llvm` and `check-clang` are cheap ways to increase coverage. The
42 # former lets us touch on the non-x86 backends a bit if configured, and the
45 # branches should still heavily be weighted in the not-taken direction,
[all …]
/external/python/pybind11/.github/workflows/
Dci.yml8 - 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/
Dupdate_deps.py11 # 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/
Dgetting_started.md5 ## 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/
Dgen_backends.py1 # 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/llvm-project/libcxx/utils/ci/
Dmacos-trunk.sh3 set -ue
7 $(basename ${0}) [-h|--help] --monorepo-root <MONOREPO-ROOT> --std <STD> --libcxx-exceptions <ON|OF…
11--monorepo-root Full path to the root of the LLVM monorepo. Both libc++ and libc++abi from the…
12 --std Version of the C++ Standard to run the tests under (c++03, c++11, etc..).
13--libcxx-exceptions Whether to enable exceptions when building libc++ and running the libc++ tests…
14 …[--cmake-args] Additional arguments to pass to CMake (both the libc++ and the libc++abi confi…
15 …[--lit-args] Additional arguments to pass to lit. If there are multiple arguments, quote th…
16 …[--no-cleanup] Do not cleanup the temporary directory that was used for testing at the end. T…
17 [-h, --help] Print this help.
21 while [[ $# -gt 0 ]]; do
[all …]
/external/swiftshader/.vscode/
Dtasks.json22 "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/deqp/scripts/build/
Dconfig.py1 # -*- 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/pigweed/pw_build/
Ddocs.rst1 .. _module-pw_build:
3 --------
5 --------
9 by upstream developers for its speed and flexibility. `CMake`_ and `Bazel`_
14 .. _Ninja: https://ninja-build.org/
15 .. _CMake: https://cmake.org/
30 Pigweed development, and is the most tested and feature-rich build system
34 declarations that are used by upstream Pigweed to set some architecture-agnostic
41 ------------
42 .. code-block::
[all …]
/external/llvm-project/llvm/utils/vscode/llvm/src/
DlitTaskProvider.ts12 static LITType: string = 'llvm-lit';
14 private args: string[] = [];
21 this.args = ["-3", "${config:cmake.buildDirectory}\\bin\\llvm-lit.py", "-vv"]
24 this.args = ["${config:cmake.buildDirectory}/bin/llvm-lit", "-vv"]
38 let args: string[] = this.args; variable
40 if (definition.task === 'llvm-lit file') {
41 args.push("${file}")
42 } else if (definition.task === 'llvm-lit directory') {
43 args.push("${fileDirname}")
50 new vscode.ShellExecution(this.cmd, args),
[all …]
/external/tensorflow/third_party/llvm/
Dllvm.bzl5 TODO(chandlerc): Currently this expresses include-based dependencies as
21 Re-implemented here to avoid adding a dependency on skylib.
23 Args:
37 Args:
55 rule_suffix = "_".join(opts.replace("-", "_").replace("=", "_").split(" "))
62 cmd = (("$(location %s) " + "-I external/llvm-project/llvm/include " +
63 "-I external/llvm-project/clang/include " +
64 … "-I $$(dirname $(location %s)) " + ("%s $(location %s) --long-string-literals=0 " +
65 "-o $@")) % (
94 This function double-quotes the given string (in case it contains spaces or
[all …]
/external/libgav1/libgav1/cmake/
Dlibgav1_targets.cmake7 # http://www.apache.org/licenses/LICENSE-2.0
32 # libgav1_add_executable(NAME <name> SOURCES <sources> [optional args])
34 # Optional args:
35 # cmake-format: off
36 # - OUTPUT_NAME: Override output file basename. Target basename defaults to
38 # - TEST: Flag. Presence means treat executable as a test.
39 # - DEFINES: List of preprocessor macro definitions.
40 # - INCLUDES: list of include directories for the target.
41 # - COMPILE_FLAGS: list of compiler flags for the target.
42 # - LINK_FLAGS: List of linker flags for the target.
[all …]
/external/skia/infra/bots/assets/cmake_mac/
Dcreate.py5 # Use of this source code is governed by a BSD-style license that can be
18 URL = ('https://github.com/Kitware/CMake/releases/download/v%s/'
19 'cmake-%s-Darwin-x86_64.tar.gz') % (VERSION, VERSION)
25 subprocess.check_call(['wget', URL, '--output-document=cmake.tar.gz'])
26 subprocess.check_call(['tar', '--extract', '--gunzip', '--file',
27 'cmake.tar.gz', '--directory', target_dir,
28 '--strip-components', '1'])
33 parser.add_argument('--target_dir', '-t', required=True)
34 args = parser.parse_args()
35 create_asset(args.target_dir)
/external/skia/infra/bots/assets/cmake_linux/
Dcreate.py5 # Use of this source code is governed by a BSD-style license that can be
18 URL = 'https://cmake.org/files/v%s/cmake-%s-Linux-x86_64.tar.gz' % (
25 subprocess.check_call(['curl', URL, '-o', 'cmake.tar.gz'])
26 subprocess.check_call(['tar', '--extract', '--gunzip', '--file',
27 'cmake.tar.gz', '--directory', target_dir,
28 '--strip-components', '1'])
33 parser.add_argument('--target_dir', '-t', required=True)
34 args = parser.parse_args()
35 create_asset(args.target_dir)
/external/skqp/infra/bots/assets/cmake_linux/
Dcreate.py5 # Use of this source code is governed by a BSD-style license that can be
18 URL = 'https://cmake.org/files/v%s/cmake-%s-Linux-x86_64.tar.gz' % (
25 subprocess.check_call(['curl', URL, '-o', 'cmake.tar.gz'])
26 subprocess.check_call(['tar', '--extract', '--gunzip', '--file',
27 'cmake.tar.gz', '--directory', target_dir,
28 '--strip-components', '1'])
33 parser.add_argument('--target_dir', '-t', required=True)
34 args = parser.parse_args()
35 create_asset(args.target_dir)
/external/google-benchmark/
DREADME.md3-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/
Dmacos-trunk.sh3 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/site/docs/user/
Dbuild.md1 ---
6 ---
14 - [`is_official_build` and Third-party Dependencies](#third-party)
15 - [Supported and Preferred Compilers](#compilers)
16 - [Quickstart](#quick)
17 - [Android](#android)
18 - [ChromeOS](#cros)
19 - [Mac](#macos)
20 - [iOS](#ios)
21 - [Windows](#windows)
[all …]
/external/llvm-project/llvm/utils/gn/
DREADME.rst13 *Warning* The GN build is experimental and best-effort. It might not work,
15 necessary. LLVM's official build system is CMake, if in doubt use that.
16 If you add files, you're expected to update the CMake build but you don't need
18 files. Keeping the GN build files up-to-date is on the people who use the GN
26 convenient for day-to-day hacking on LLVM than CMake. Distribution, building
28 non-goals for the GN build.
37 #. ``git clone https://github.com/llvm/llvm-project.git; cd llvm-project`` if
41 64-bit X86 system running Linux, macOS, or Windows. `Build gn yourself
42 <https://gn.googlesource.com/gn/#getting-started>`_ if you're on a different
48 adds ``--dotfile=llvm/utils/gn/.gn --root=.`` and just runs regular ``gn``;
[all …]
/external/skqp/infra/cmake/
Dbuild_skia.sh4 # Use of this source code is governed by a BSD-style license that can be
7 # This assumes it is being run inside a docker container of emsdk-base
12 # docker run -v $SKIA_ROOT:/SRC -v /tmp/cmake_out:/OUT gcr.io/skia-public/cmake-release:3.13.1_v1 /…
15 set -xe
17 #BASE_DIR is the dir this script is in ($SKIA_ROOT/infra/cmake)
22 rm -rf $SKIA_DIR/out/CMAKE
23 mkdir --mode=0777 -p $SKIA_DIR/out/CMAKE
26 gn gen out/CMAKE --args='is_debug=false' --ide=json --json-ide-script=../../gn/gn_to_cmake.py
28 cd $SKIA_DIR/out/CMAKE
29 cmake -G"CodeBlocks - Unix Makefiles" .
[all …]
/external/skqp/infra/bots/recipe_modules/build/
Dapi.py2 # Use of this source code is governed by a BSD-style license that can be
15 from . import cmake
24 def __init__(self, buildername, *args, **kwargs): argument
48 elif 'CMake' in b:
49 self.compile_fn = cmake.compile_fn
50 self.copy_fn = cmake.copy_extra_build_products
54 super(BuildApi, self).__init__(*args, **kwargs)
/external/skia/infra/bots/recipe_modules/build/
Dapi.py2 # Use of this source code is governed by a BSD-style license that can be
14 from . import cmake
23 def __init__(self, buildername, *args, **kwargs): argument
44 elif 'CMake' in b:
45 self.compile_fn = cmake.compile_fn
46 self.copy_fn = cmake.copy_build_products
53 super(BuildApi, self).__init__(*args, **kwargs)

12345678910