| /third_party/benchmark/.github/workflows/ |
| D | build-and-test.yml | 13 name: ${{ matrix.os }}.${{ matrix.build_type }}.${{ matrix.compiler }} 19 build_type: ['Release', 'Debug'] 24 build_type: 'Release' 27 build_type: 'Debug' 42 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} 47 run: cmake --build . --config ${{ matrix.build_type }} 52 run: ctest -C ${{ matrix.build_type }} -VV 55 name: ubuntu-16.04.${{ matrix.build_type }}.${{ matrix.compiler }} 60 build_type: ['Release', 'Debug'] 82 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} [all …]
|
| D | build-and-test-perfcounters.yml | 12 name: ${{ matrix.os }}.${{ matrix.build_type }} 18 build_type: ['Release', 'Debug'] 40 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} 45 run: cmake --build . --config ${{ matrix.build_type }} 53 # run: ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure 56 name: ubuntu-16.04.${{ matrix.build_type }} 61 build_type: ['Release', 'Debug'] 84 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} 89 run: cmake --build . --config ${{ matrix.build_type }} 97 # run: ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure
|
| D | sanitizer.yml | 12 name: ${{ matrix.sanitizer }}.${{ matrix.build_type }}.${{ matrix.compiler }} 17 build_type: ['Debug', 'RelWithDebInfo'] 82 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} 87 run: cmake --build . --config ${{ matrix.build_type }} 92 run: ctest -C ${{ matrix.build_type }} -VV
|
| /third_party/jsoncpp/.travis_scripts/ |
| D | cmake_builder.sh | 9 # - BUILD_TYPE=Release/Debug 21 if ${BUILD_TYPE+false}; then 22 echo "BUILD_TYPE not set in environment." 36 echo "USAGE: CXX=$(which clang++) BUILD_TYPE=[Release|Debug] LIB_TYPE=[static|shared] $0" 39 …echo " CXX=$(which clang++) BUILD_TYPE=Release LIB_TYPE=shared DESTDIR=/tmp/cmake_json_c… 40 …echo " CXX=$(which clang++) BUILD_TYPE=Debug LIB_TYPE=shared DESTDIR=/tmp/cmake_json_c… 41 …echo " CXX=$(which clang++) BUILD_TYPE=Release LIB_TYPE=static DESTDIR=/tmp/cmake_json_c… 42 …echo " CXX=$(which clang++) BUILD_TYPE=Debug LIB_TYPE=static DESTDIR=/tmp/cmake_json_c… 44 …echo " CXX=$(which g++) BUILD_TYPE=Release LIB_TYPE=shared DESTDIR=/tmp/cmake_json_c… 45 …echo " CXX=$(which g++) BUILD_TYPE=Debug LIB_TYPE=shared DESTDIR=/tmp/cmake_json_c… [all …]
|
| D | meson_builder.sh | 9 # - BUILD_TYPE=release/debug 13 if ${BUILD_TYPE+false}; then 14 echo "BUILD_TYPE not set in environment." 28 echo "USAGE: CXX=$(which clang++) BUILD_TYPE=[release|debug] LIB_TYPE=[static|shared] $0" 31 …echo " CXX=$(which clang++) BUILD_TYPE=release LIB_TYPE=shared DESTDIR=/tmp/meson_json_c… 32 …echo " CXX=$(which clang++) BUILD_TYPE=debug LIB_TYPE=shared DESTDIR=/tmp/meson_json_c… 33 …echo " CXX=$(which clang++) BUILD_TYPE=release LIB_TYPE=static DESTDIR=/tmp/meson_json_c… 34 …echo " CXX=$(which clang++) BUILD_TYPE=debug LIB_TYPE=static DESTDIR=/tmp/meson_json_c… 36 …echo " CXX=$(which g++) BUILD_TYPE=release LIB_TYPE=shared DESTDIR=/tmp/meson_json_c… 37 …echo " CXX=$(which g++) BUILD_TYPE=debug LIB_TYPE=shared DESTDIR=/tmp/meson_json_c… [all …]
|
| /third_party/skia/third_party/externals/swiftshader/tests/kokoro/gcp_windows/ |
| D | continuous.bat | 29 cmake --build . --config %BUILD_TYPE% || goto :error 35 build\%BUILD_TYPE%\ReactorUnitTests.exe || goto :error 36 build\%BUILD_TYPE%\gles-unittests.exe || goto :error 37 build\%BUILD_TYPE%\system-unittests.exe || goto :error 38 build\%BUILD_TYPE%\vk-unittests.exe || goto :error 43 cmake --build . --config %BUILD_TYPE% --target ReactorUnitTests || goto :error 44 %BUILD_TYPE%\ReactorUnitTests.exe --gtest_filter=ReactorUnitTests.Print* || goto :error 50 cmake --build . --config %BUILD_TYPE% --target ReactorUnitTests || goto :error 51 %BUILD_TYPE%\ReactorUnitTests.exe --gtest_filter=ReactorUnitTests.EmitAsm || goto :error 57 cmake --build . --config %BUILD_TYPE% --target ReactorUnitTests || goto :error [all …]
|
| /third_party/jsoncpp/devtools/ |
| D | batchbuild.py | 15 def __init__(self, prepend_envs=None, variables=None, build_type=None, generator=None): argument 18 self.build_type = build_type 27 build_desc.build_type or self.build_type, 46 if self.build_type and 'Visual' not in self.generator: 47 args.append("-DCMAKE_BUILD_TYPE=%s" % self.build_type) 53 return "BuildDesc(%s, build_type=%s)" % (" ".join(self.cmake_args()), self.build_type) 83 if self.desc.build_type: 84 cmd += ['--config', self.desc.build_type] 130 for build_type in axis["build_types"]: 131 build_desc = BuildDesc(build_type=build_type) [all …]
|
| /third_party/benchmark/ |
| D | .travis.yml | 12 env: COMPILER=g++ C_COMPILER=gcc BUILD_TYPE=Coverage 22 - BUILD_TYPE=Debug 34 - BUILD_TYPE=Release 40 - COMPILER=g++-6 C_COMPILER=gcc-6 BUILD_TYPE=Debug 52 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Debug 63 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Release 77 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Debug 93 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Release 107 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Debug 122 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Debug [all …]
|
| /third_party/jsoncpp/ |
| D | .travis.yml | 36 BUILD_TYPE=release 47 BUILD_TYPE=release 69 BUILD_TYPE=release 91 BUILD_TYPE=release 109 BUILD_TYPE=Debug 135 BUILD_TYPE=release 152 BUILD_TYPE=release 166 BUILD_TYPE=release 180 BUILD_TYPE=release
|
| /third_party/glslang/ |
| D | ChooseMSVCCRT.cmake | 96 foreach(build_type ${CMAKE_CONFIGURATION_TYPES} ${CMAKE_BUILD_TYPE}) 97 string(TOUPPER "${build_type}" build) 104 CACHE STRING "Specify VC++ CRT to use for ${build_type} configurations." 109 endforeach(build_type) 111 foreach(build_type ${CMAKE_CONFIGURATION_TYPES} ${CMAKE_BUILD_TYPE}) 112 string(TOUPPER "${build_type}" build) 122 message(STATUS "Using ${build_type} VC++ CRT: ${LLVM_USE_CRT_${build}}") 127 endforeach(build_type)
|
| /third_party/elfio/.github/workflows/ |
| D | c-cpp.yml | 37 BUILD_TYPE: Release 42 build_type: [Release] 52 …run: cmake ${{ github.workspace }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DELFIO_BUILD_EXAMP… 55 run: cmake --build . --config ${{ matrix.build_type }}
|
| /third_party/flatbuffers/ |
| D | .travis.yml | 95 - BUILD_TYPE=Debug 96 - BUILD_TYPE=Release 111 -DCMAKE_BUILD_TYPE=$BUILD_TYPE 125 - BUILD_TYPE=Debug 126 - BUILD_TYPE=Release 136 -DCMAKE_BUILD_TYPE=$BUILD_TYPE
|
| /third_party/mindspore/mindspore/_extends/parallel_compile/tbe_compiler/ |
| D | compiler.py | 56 def build_op(build_type, json_str, tune_mode=None): argument 61 build_type : op function name 111 if build_type == op_build: 117 … raise ValueError("function {} is not supported by Tbe op {}.".format(build_type, op_name)) 123 … raise ValueError("Op:{} function {} is not supported by Tbe.".format(op_name, build_type))
|
| /third_party/boost/libs/locale/tools/ |
| D | cross-compile-gettext.sh | 16 BUILD_TYPE=i586-mingw32msvc 35 ./configure --disable-shared --host=$BUILD_TYPE --prefix=$PREFIX || exit 1 41 ./configure --disable-shared --host=$BUILD_TYPE --prefix=$PREFIX --with-libiconv-prefix=$PREFIX || …
|
| /third_party/flutter/skia/third_party/externals/spirv-tools/ |
| D | .travis.yml | 18 - BUILD_TYPE=Release 19 - BUILD_TYPE=Debug 66 cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ..;
|
| /third_party/skia/experimental/skottiekit/ |
| D | compile.sh | 35 BUILD_TYPE="full" 55 BUILD_TYPE="minimal" 70 echo "Building a *${BUILD_TYPE}* Debug build" 76 echo "Building a *${BUILD_TYPE}* build for profiling"
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/include/llvm/IR/ |
| D | cmake_install.cmake | 11 if(BUILD_TYPE) 13 CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
| /third_party/skia/third_party/externals/swiftshader/tests/kokoro/macos/ |
| D | continuous.sh | 24 if [[ "${BUILD_TYPE}" == "Debug" ]]; then 30 "-DCMAKE_BUILD_TYPE=${BUILD_TYPE}" \
|
| /third_party/jerryscript/tools/ |
| D | js2c.py | 59 def js_to_native_code(path, name, build_type): argument 63 if build_type != 'debug': 112 gen_output.append(js_to_native_code(path, name, script_args.build_type))
|
| /third_party/mindspore/mindspore/ccsrc/runtime/device/gpu/ |
| D | kernel_info_setter.cc | 347 std::string build_type = "in ["; in PrintUnsupportedTypeException() local 349 [&build_type](auto i) { build_type += mindspore::kernel::TypeId2String(i) + " "; }); in PrintUnsupportedTypeException() 350 build_type += "] out ["; in PrintUnsupportedTypeException() 352 [&build_type](auto i) { build_type += mindspore::kernel::TypeId2String(i) + " "; }); in PrintUnsupportedTypeException() 353 build_type += "]"; in PrintUnsupportedTypeException() 357 << ", but get " << build_type; in PrintUnsupportedTypeException()
|
| /third_party/skia/third_party/externals/tint/kokoro/linux/ |
| D | build.sh | 42 --env BUILD_TYPE=$BUILD_TYPE \
|
| /third_party/skia/third_party/externals/tint/kokoro/windows/ |
| D | build.bat | 117 cmake --build . --config %BUILD_TYPE% || goto :error 122 %BUILD_TYPE%\tint_unittests.exe || goto :error 130 git bash -- ./test/test-all.sh ../tint-build/%BUILD_TYPE%/tint.exe --verbose
|
| /third_party/skia/third_party/externals/spirv-tools/kokoro/scripts/windows/ |
| D | build.bat | 21 set BUILD_TYPE=%1 variable 60 …TALL_PREFIX=%KOKORO_ARTIFACTS_DIR%\install -GNinja -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DRE2_BUILD_TES… 81 ctest -C %BUILD_TYPE% --output-on-failure --timeout 300
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/scripts/windows/ |
| D | build.bat | 21 set BUILD_TYPE=%1 variable 60 …TALL_PREFIX=%KOKORO_ARTIFACTS_DIR%\install -GNinja -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DRE2_BUILD_TES… 81 ctest -C %BUILD_TYPE% --output-on-failure --timeout 300
|
| /third_party/spirv-tools/kokoro/scripts/windows/ |
| D | build.bat | 21 set BUILD_TYPE=%1 variable 63 …TALL_PREFIX=%KOKORO_ARTIFACTS_DIR%\install -GNinja -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DRE2_BUILD_TES… 92 ctest -C %BUILD_TYPE% --output-on-failure --timeout 300
|