Home
last modified time | relevance | path

Searched full:build (Results 1 – 25 of 9309) sorted by relevance

12345678910>>...373

/third_party/libsnd/Scripts/
Dstatic-deps-build.mk7 # Build libsndfile as a dynamic/shared library, but statically link to
31 tarball_dir = Build/Tarballs
32 stamp_dir = Build/Stamp
34 build_dir = $(shell pwd)/Build
41 @echo "This script will build libsndfile as a dynamic/shared library but statically linked"
45 @echo "It requires all the normal build tools require to build libsndfile plus wget."
48 config : Build/Stamp/configure
50 build : Build/Stamp/build
53 rm -rf Build/flac-* Build/libogg-* Build/libvorbis-* Build/opus-*
54 rm -rf Build/bin Build/include Build/lib Build/share
[all …]
/third_party/skia/infra/bots/recipe_modules/build/examples/
Dfull.py8 'build',
23 api.build(checkout_root=checkout_root, out_dir=out_dir)
25 api.build.copy_build_products(out_dir=out_dir, dst=dst)
30 'Build-Debian9-Clang-arm-Release-Flutter_Android_Docker',
31 'Build-Debian10-GCC-x86-Debug-Docker',
32 'Build-Debian10-GCC-x86_64-Debug-Docker',
33 'Build-Debian10-GCC-x86_64-Release-NoGPU_Docker',
34 'Build-Debian10-GCC-x86_64-Release-Shared_Docker',
35 'Build-Debian10-Clang-arm-Release-Android_API26',
36 'Build-Debian10-Clang-arm-Release-Android_ASAN',
[all …]
/third_party/python/Tools/unicode/
DMakefile27 build/:
28 mkdir build
30 misc: build/
31 $(PYTHON) gencodec.py MAPPINGS/VENDORS/MISC/ build/
32 $(RM) build/atarist.*
33 $(RM) build/us_ascii_quotes.*
34 $(RM) build/ibmgraph.*
35 $(RM) build/sgml.*
36 $(RM) -f build/readme.*
38 custom-mappings: build/
[all …]
/third_party/ninja/misc/
Dlong-slow-build.ninja1 # An input file for running a "slow" build.
2 # Use like: ninja -f misc/long-slow-build.ninja all
8 build 0: sleep README
9 build 1: sleep README
10 build 2: sleep README
11 build 3: sleep README
12 build 4: sleep README
13 build 5: sleep README
14 build 6: sleep README
15 build 7: sleep README
[all …]
/third_party/mesa3d/src/compiler/nir/
Dnir_builder.h51 void nir_builder_init(nir_builder *build, nir_function_impl *impl);
103 void nir_builder_instr_insert(nir_builder *build, nir_instr *instr);
106 nir_builder_last_instr(nir_builder *build) in nir_builder_last_instr() argument
108 assert(build->cursor.option == nir_cursor_after_instr); in nir_builder_last_instr()
109 return build->cursor.instr; in nir_builder_last_instr()
114 nir_build_alu(nir_builder *build, nir_op op, nir_ssa_def *src0,
119 nir_build_alu1(nir_builder *build, nir_op op, nir_ssa_def *src0);
121 nir_build_alu2(nir_builder *build, nir_op op, nir_ssa_def *src0,
124 nir_build_alu3(nir_builder *build, nir_op op, nir_ssa_def *src0,
127 nir_build_alu4(nir_builder *build, nir_op op, nir_ssa_def *src0,
[all …]
Dnir_builder.c28 nir_builder_init(nir_builder *build, nir_function_impl *impl) in nir_builder_init() argument
30 memset(build, 0, sizeof(*build)); in nir_builder_init()
31 build->exact = false; in nir_builder_init()
32 build->impl = impl; in nir_builder_init()
33 build->shader = impl->function->shader; in nir_builder_init()
66 nir_builder_alu_instr_finish_and_insert(nir_builder *build, nir_alu_instr *instr) in nir_builder_alu_instr_finish_and_insert() argument
70 instr->exact = build->exact; in nir_builder_alu_instr_finish_and_insert()
122 nir_builder_instr_insert(build, &instr->instr); in nir_builder_alu_instr_finish_and_insert()
128 nir_build_alu(nir_builder *build, nir_op op, nir_ssa_def *src0, in nir_build_alu() argument
131 nir_alu_instr *instr = nir_alu_instr_create(build->shader, op); in nir_build_alu()
[all …]
/third_party/astc-encoder/Docs/
DBuilding.md6 Builds must use CMake 3.15 or higher as the build system generator. The
7 examples on this page show how to use it to generate build systems for NMake
8 (Windows) and Make (Linux and macOS), but CMake supports other build system
15 ### Configuring the build
17 To use CMake you must first configure the build. Create a build directory in
19 to generate the build system.
22 # Create a build directory
23 mkdir build
24 cd build
26 # Configure your build of choice, for example:
[all …]
/third_party/python/Doc/
DMakefile9 SPHINXBUILD = PATH=$(VENVDIR)/bin:$$PATH sphinx-build
20 ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees $(PAPEROPT_$(PAPER)) \
21 $(SPHINXOPTS) $(SPHINXERRORHANDLING) . build/$(BUILDER) $(SOURCES)
23 .PHONY: help build html htmlhelp latex text texinfo changes linkcheck \
29 @echo " clean to remove build files"
48 build: target
49 -mkdir -p build
55 cp ../Misc/NEWS build/NEWS; \
59 $(BLURB) merge -f build/NEWS; \
61 echo "Neither Misc/NEWS.d nor Misc/NEWS found; cannot build docs"; \
[all …]
/third_party/node/deps/v8/include/
Dv8.h24 #include "v8-array-buffer.h" // NOLINT(build/include_directory)
25 #include "v8-container.h" // NOLINT(build/include_directory)
26 #include "v8-context.h" // NOLINT(build/include_directory)
27 #include "v8-data.h" // NOLINT(build/include_directory)
28 #include "v8-date.h" // NOLINT(build/include_directory)
29 #include "v8-debug.h" // NOLINT(build/include_directory)
30 #include "v8-exception.h" // NOLINT(build/include_directory)
31 #include "v8-extension.h" // NOLINT(build/include_directory)
32 #include "v8-external.h" // NOLINT(build/include_directory)
33 #include "v8-function.h" // NOLINT(build/include_directory)
[all …]
/third_party/skia/modules/canvaskit/
DMakefile4 - rm -rf ./build/
8 # Does an incremental build where possible.
10 - rm -rf build/
11 mkdir build
12 cp ../../out/canvaskit_wasm/canvaskit.js ./build/
13 cp ../../out/canvaskit_wasm/canvaskit.wasm ./build/
16 # Does an incremental build where possible.
18 - rm -rf build/
19 mkdir build
20 cp ../../out/canvaskit_wasm/canvaskit.js ./build/
[all …]
/third_party/skia/third_party/externals/freetype/
D.gitlab-ci.yml2 - build
9 .build windows common:
13 stage: 'build'
20 .build linux common:
24 stage: 'build'
26 .build macos common:
27 stage: 'build'
31 .build windows meson:
32 extends: '.build windows common'
56 meson setup build $env:MESON_ARGS_WINDOWS &&
[all …]
/third_party/python/PCbuild/
Dpcbuild.sln129 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|ARM.Build.0 = Debug|ARM
131 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|ARM64.Build.0 = Debug|ARM64
133 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.Build.0 = Debug|Win32
135 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.Build.0 = Debug|x64
137 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|ARM.Build.0 = PGInstrument|ARM
139 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|ARM64.Build.0 = PGInstrument|ARM64
141 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.Build.0 = PGInstrument|Win32
143 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.Build.0 = PGInstrument|x64
145 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|ARM.Build.0 = PGUpdate|ARM
147 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|ARM64.Build.0 = PGUpdate|ARM64
[all …]
/third_party/vulkan-loader/
DBUILD.md1 # Build Instructions
14 - [Build and Install Directories](#build-and-install-directories)
17 - [Build Options](#build-options)
20 - [Windows Build - Microsoft Visual Studio](#windows-build---microsoft-visual-studio)
26 - [Linux Build](#linux-build)
30 - [MacOS build](#macos-build)
45 This repository contains the source code necessary to build the desktop Vulkan
90 You must clone the headers repository and build its `install` target before
92 contains the Vulkan API definition files (registry) that are required to build
101 To build the tests, pass the `-DUPDATE_DEPS=ON` and `-DBUILD_TESTS=ON` options when generating the …
[all …]
/third_party/optimized-routines/string/
DDir.mk7 B := build/string
19 string-includes := $(patsubst $(S)/%,build/%,$(wildcard $(S)/include/*.h))
22 build/lib/libstringlib.so \
23 build/lib/libstringlib.a \
26 build/bin/test/memcpy \
27 build/bin/test/memmove \
28 build/bin/test/memset \
29 build/bin/test/memchr \
30 build/bin/test/memrchr \
31 build/bin/test/memcmp \
[all …]
/third_party/protobuf/java/lite/src/test/java/com/google/protobuf/
DLiteTest.java103 .build(); in testLite()
141 NestedMessage.newBuilder().setBb(7).build()) in testLiteExtensions()
142 .build(); in testLiteExtensions()
147 TestAllExtensionsLite message2 = message.toBuilder().build(); in testLiteExtensions()
210 TestAllTypesLite message = builder.build(); in testSanityCopyOnWrite()
215 messageAfterBuild = builder.build(); in testSanityCopyOnWrite()
222 message = builder.build(); in testSanityCopyOnWrite()
226 messageAfterBuild = builder.build(); in testSanityCopyOnWrite()
233 message = builder.build(); in testSanityCopyOnWrite()
237 messageAfterBuild = builder.build(); in testSanityCopyOnWrite()
[all …]
/third_party/typescript/tests/baselines/reference/tscWatch/moduleResolution/
Dwatches-for-changes-to-package-json-main-fields.js3 {"name":"pkg1","version":"1.0.0","main":"build/index.js"}
10 {"compilerOptions":{"outDir":"build"}}
12 //// [/user/username/projects/myproject/packages/pkg2/build/const.d.ts]
15 //// [/user/username/projects/myproject/packages/pkg2/build/index.d.ts]
18 //// [/user/username/projects/myproject/packages/pkg2/build/other.d.ts]
22 {"name":"pkg2","version":"1.0.0","main":"build/index.js"}
58 …ackage.json' has 'main' field 'build/index.js' that references '/user/username/projects/myproject/…
59 File '/user/username/projects/myproject/node_modules/pkg2/build/index.js' does not exist.
60 …date module location '/user/username/projects/myproject/node_modules/pkg2/build/index.js', target …
61 File '/user/username/projects/myproject/node_modules/pkg2/build/index.js.ts' does not exist.
[all …]
/third_party/libwebsockets/
D.sai.json9 …"build": "mkdir build destdir;cd build;export CCACHE_DISABLE=1;export LD_LIBRARY_PATH=../destdir/u…
12 …"build": "mkdir build destdir;cd build;export CCACHE_DISABLE=1;export LD_LIBRARY_PATH=../destdir/u…
15 …"build": "mkdir build destdir;cd build;export CCACHE_DISABLE=1;export LD_LIBRARY_PATH=../destdir/u…
18 …"build": "mkdir build destdir;cd build;export CCACHE_DISABLE=1;export LD_LIBRARY_PATH=../destdir/u…
21 …"build": "mkdir build destdir;cd build;export CCACHE_DISABLE=1;export LD_LIBRARY_PATH=../destdir/u…
24 …"build": "mkdir build destdir;cd build;export CCACHE_DISABLE=1;export LD_LIBRARY_PATH=../destdir/u…
28 …"build": "mkdir build destdir;cd build;export CCACHE_DISABLE=1;export LD_LIBRARY_PATH=../destdir/u…
31 …"build": "mkdir build destdir;cd build;export CCACHE_DISABLE=1;export LD_LIBRARY_PATH=../destdir/u…
34 …"build": "rm -rf build destdir ; mkdir build destdir;cd build;export CCACHE_DISABLE=1;export LD_LI…
37 …"build": "mkdir build destdir;cd build;export CCACHE_DISABLE=1;export LD_LIBRARY_PATH=../destdir/u…
[all …]
/third_party/skia/third_party/externals/tint/
DCMakeLists.txt25 message(STATUS "No build type selected, default to Debug")
70 option_if_not_defined(TINT_BUILD_SAMPLES "Build samples" ON)
71 option_if_not_defined(TINT_BUILD_DOCS "Build documentation" ${TINT_BUILD_DOCS_DEFAULT})
73 option_if_not_defined(TINT_BUILD_SPV_READER "Build the SPIR-V input reader" ON)
74 option_if_not_defined(TINT_BUILD_WGSL_READER "Build the WGSL input reader" ON)
75 option_if_not_defined(TINT_BUILD_GLSL_WRITER "Build the GLSL output writer" ON)
76 option_if_not_defined(TINT_BUILD_HLSL_WRITER "Build the HLSL output writer" ON)
77 option_if_not_defined(TINT_BUILD_MSL_WRITER "Build the MSL output writer" ON)
78 option_if_not_defined(TINT_BUILD_SPV_WRITER "Build the SPIR-V output writer" ON)
79 option_if_not_defined(TINT_BUILD_WGSL_WRITER "Build the WGSL output writer" ON)
[all …]
/third_party/ninja/doc/
Dmanual.asciidoc1 The Ninja build system
9 Ninja is yet another build system. It takes as input the
13 Ninja joins a sea of other build systems. Its distinguishing goal is
17 files and whose other build systems (including one built from custom
24 Where other build systems are high-level languages, Ninja aims to be
27 Build systems get slow when they need to make decisions. When you are
29 want the build system to do the minimum work necessary to figure out
40 incremental builds stay fast. Going beyond autotools, even build-time
42 build a debug or release-mode binary?" belong in the `.ninja` file
54 higher-level build systems have different opinions about how code
[all …]
/third_party/openssl/Configurations/
DREADME-design.md7 The unified scheme takes all its data from the `build.info` files seen
9 needed to build end product files from diverse sources. See the
10 section on `build.info` files below.
12 From the information in `build.info` files, `Configure` builds up an
14 stored in configdata.pm, found at the top of the build tree (which may
20 build-file templates. See the section on build-file templates further
23 build.info files
26 As mentioned earlier, `build.info` files are meant to hold the minimum
27 information needed to build output files, and therefore only (with a
31 as object files are rarely directly referred to in `build.info` files (and
[all …]
/third_party/node/deps/openssl/openssl/Configurations/
DREADME-design.md7 The unified scheme takes all its data from the `build.info` files seen
9 needed to build end product files from diverse sources. See the
10 section on `build.info` files below.
12 From the information in `build.info` files, `Configure` builds up an
14 stored in configdata.pm, found at the top of the build tree (which may
20 build-file templates. See the section on build-file templates further
23 build.info files
26 As mentioned earlier, `build.info` files are meant to hold the minimum
27 information needed to build output files, and therefore only (with a
31 as object files are rarely directly referred to in `build.info` files (and
[all …]
/third_party/node/deps/v8/
D.bazelrc6 build --action_env=CC
7 build --action_env=CXX
8 build --action_env=PATH
11 build:clang --action_env=BAZEL_COMPILER=clang
12 build:clang --action_env=CC=clang
13 build:clang --action_env=CXX=clang++
16 build:debug --compilation_mode=dbg
17 build:debug --config=v8_enable_debugging_features
18 build:debug --//:v8_enable_fast_mksnapshot
19 build:debug --//:v8_enable_backtrace
[all …]
/third_party/libuv/.github/workflows/
DCI-unix.yml17 build-android:
25 # see build options you can use in https://developer.android.com/ndk/guides/cmake
27 mkdir build
28 cd build
29 …2.4988404/bin/cmake -DCMAKE_TOOLCHAIN_FILE=$ANDROID_HOME/ndk/20.0.5594570/build/cmake/android.tool…
30 - name: Build android arm64
32 $ANDROID_HOME/cmake/3.10.2.4988404/bin/cmake --build build
33 ls -lh build
35 build-macos:
46 mkdir build
[all …]
/third_party/nghttp2/.github/workflows/
Dbuild.yml1 name: build
16 build-cache:
30 path: libbpf/build
36 path: openssl1/build
42 path: openssl3/build
49 boringssl/build/crypto/libcrypto.a
50 boringssl/build/ssl/libssl.a
57 path: nghttp3/build
63 path: ngtcp2-openssl1/build
69 path: ngtcp2-openssl3/build
[all …]
/third_party/icu/icu4c/source/allinone/
Dallinone.sln218 {F7659D77-09CF-4FE9-ACEE-927287AA9509}.Debug|Win32.Build.0 = Debug|Win32
220 {F7659D77-09CF-4FE9-ACEE-927287AA9509}.Debug|x64.Build.0 = Debug|x64
224 {F7659D77-09CF-4FE9-ACEE-927287AA9509}.Release|Win32.Build.0 = Release|Win32
226 {F7659D77-09CF-4FE9-ACEE-927287AA9509}.Release|x64.Build.0 = Release|x64
228 {3D1246AE-1B32-479B-BECA-AEFA97BE2321}.Debug|ARM.Build.0 = Debug|ARM
230 {3D1246AE-1B32-479B-BECA-AEFA97BE2321}.Debug|ARM64.Build.0 = Debug|ARM64
232 {3D1246AE-1B32-479B-BECA-AEFA97BE2321}.Debug|Win32.Build.0 = Debug|Win32
234 {3D1246AE-1B32-479B-BECA-AEFA97BE2321}.Debug|x64.Build.0 = Debug|x64
236 {3D1246AE-1B32-479B-BECA-AEFA97BE2321}.Release|ARM.Build.0 = Release|ARM
238 {3D1246AE-1B32-479B-BECA-AEFA97BE2321}.Release|ARM64.Build.0 = Release|ARM64
[all …]

12345678910>>...373