| /third_party/libsnd/Scripts/ |
| D | static-deps-build.mk | 7 # 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/ |
| D | full.py | 8 '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/libuv/.github/workflows/ |
| D | sanitizer.yml | 22 sudo apt-get install ninja-build 26 - name: ASAN Build 28 mkdir build-asan 29 (cd build-asan && cmake .. -G Ninja -DBUILD_TESTING=ON -DASAN=ON -DCMAKE_BUILD_TYPE=Debug) 30 cmake --build build-asan 33 ./build-asan/uv_run_tests_a 35 - name: MSAN Build 37 mkdir build-msan 38 …(cd build-msan && cmake .. -G Ninja -DBUILD_TESTING=ON -DMSAN=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_… 39 cmake --build build-msan [all …]
|
| D | CI-win.yml | 17 build-windows: 19 name: build-${{ join(matrix.config.*, '-') }} 33 - name: Build 35 cmake -S . -B build -DBUILD_TESTING=ON 40 cmake --build build --config RelWithDebInfo 42 …${{ matrix.config.config == 'ASAN' && 'Copy-Item -Path "build\\*.exe" -Destination "build\\RelWith… 44 …${{ matrix.config.config == 'ASAN' && 'Copy-Item -Path "build\\*.dll" -Destination "build\\RelWith… 46 ls -l build 48 ls -l build\\RelWithDebInfo 53 build\\RelWithDebInfo\\uv_run_tests_a.exe platform_output [all …]
|
| D | CI-unix.yml | 17 build-linux: 24 mkdir build 25 (cd build && ../configure) 28 make -C build distcheck 30 build-android: 38 # see build options you can use in https://developer.android.com/ndk/guides/cmake 40 mkdir build 41 cd build 42 …2.4988404/bin/cmake -DCMAKE_TOOLCHAIN_FILE=$ANDROID_HOME/ndk/20.0.5594570/build/cmake/android.tool… 43 - name: Build android arm64 [all …]
|
| /third_party/python/Tools/unicode/ |
| D | Makefile | 27 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/mesa3d/src/compiler/nir/ |
| D | nir_builder.h | 51 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 …]
|
| D | nir_builder.c | 28 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/ |
| D | Building.md | 6 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/ninja/misc/ |
| D | long-slow-build.ninja | 1 # 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/node/deps/v8/include/ |
| D | v8.h | 24 #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/ |
| D | Makefile | 4 - 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/python/PCbuild/ |
| D | pcbuild.sln | 132 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|ARM.Build.0 = Debug|ARM 134 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|ARM64.Build.0 = Debug|ARM64 136 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|Win32.Build.0 = Debug|Win32 138 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.Debug|x64.Build.0 = Debug|x64 140 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|ARM.Build.0 = PGInstrument|ARM 142 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|ARM64.Build.0 = PGInstrument|ARM64 144 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|Win32.Build.0 = PGInstrument|Win32 146 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGInstrument|x64.Build.0 = PGInstrument|x64 148 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|ARM.Build.0 = PGUpdate|ARM 150 {B11D750F-CD1F-4A96-85CE-E69A5C5259F9}.PGUpdate|ARM64.Build.0 = PGUpdate|ARM64 [all …]
|
| /third_party/python/Doc/ |
| D | Makefile | 9 SPHINXBUILD = PATH=$(VENVDIR)/bin:$$PATH sphinx-build 23 ALLSPHINXOPTS = -b $(BUILDER) -d build/doctrees $(PAPEROPT_$(PAPER)) -j $(JOBS) \ 24 $(SPHINXOPTS) $(SPHINXERRORHANDLING) . build/$(BUILDER) $(SOURCES) 26 .PHONY: help build html htmlhelp latex text texinfo changes linkcheck \ 32 @echo " clean to remove build files" 50 build: target 51 -mkdir -p build 57 cp ../Misc/NEWS build/NEWS; \ 61 $(BLURB) merge -f build/NEWS; \ 63 echo "Neither Misc/NEWS.d nor Misc/NEWS found; cannot build docs"; \ [all …]
|
| /third_party/skia/third_party/externals/freetype/ |
| D | .gitlab-ci.yml | 2 - 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/vulkan-loader/ |
| D | BUILD.md | 1 # Build Instructions 7 - [Build Instructions](#build-instructions) 12 - [Build Requirements](#build-requirements) 19 - [Build and Install Directory Locations](#build-and-install-directory-locations) 25 - [Build Options](#build-options) 28 - [Windows Build - Microsoft Visual Studio](#windows-build---microsoft-visual-studio) 31 - [Build the Solution From the Command Line](#build-the-solution-from-the-command-line) 32 - [Build the Solution With Visual Studio](#build-the-solution-with-visual-studio) 37 - [Linux Build](#linux-build) 40 - [Build the Project](#build-the-project) [all …]
|
| /third_party/optimized-routines/string/ |
| D | Dir.mk | 7 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/ |
| D | LiteTest.java | 103 .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/vulkan-loader/.github/workflows/ |
| D | build.yml | 19 name: CI Build 62 cmake -S. -B build \ 70 - run: cmake --build build 71 - run: ctest --output-on-failure --test-dir build/ 72 - run: cmake --install build --prefix /tmp 78 - run: scripts/update_deps.py --dir ext --no-build 88 cmake -S. -B build \ 96 - run: cmake --build build 97 - run: cmake --install build --prefix /tmp 98 - run: ctest --output-on-failure -E UnknownFunction --test-dir build/ [all …]
|
| /third_party/ninja/.github/workflows/ |
| D | linux.yml | 10 build: 30 - name: Build debug ninja 36 scan-build -o scanlogs cmake -DCMAKE_BUILD_TYPE=Debug -B debug-build 37 scan-build -o scanlogs cmake --build debug-build --parallel --config Debug 41 working-directory: debug-build 43 - name: Build release ninja 46 cmake -DCMAKE_BUILD_TYPE=Release -B release-build 47 cmake --build release-build --parallel --config Release 48 strip release-build/ninja 52 working-directory: release-build [all …]
|
| /third_party/curl/docs/ |
| D | INSTALL-CMAKE.md | 11 This document describes how to configure, build and install curl and libcurl 12 from source code using the CMake build tool. To build with CMake, you will 21 # Current flaws in the curl CMake build 23 Missing features in the CMake build: 28 - Does not allow different resolver backends (no c-ares build support) 30 - Does not allow build curl and libcurl debug enabled 32 - Does not allow you to disable specific protocols from the build 40 A CMake configuration of curl is similar to the autotools build of curl. 45 You can configure for in source tree builds or for a build tree 48 - Build in the source tree. [all …]
|
| /third_party/typescript/tests/baselines/reference/tscWatch/moduleResolution/ |
| D | watches-for-changes-to-package-json-main-fields.js | 3 {"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.json | 9 …"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/ninja/doc/ |
| D | manual.asciidoc | 1 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/skia/third_party/externals/tint/ |
| D | CMakeLists.txt | 25 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 …]
|