Home
last modified time | relevance | path

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

12

/external/curl/.github/
Dlabeler.yml3 # SPDX-License-Identifier: curl
10 # Labels are added in two ways: the any-glob-to-all-files ones are added if all
11 # the files fit into the category, and the any-glob-to-any-file ones are added
17 # N.B. any-glob-to-all-files is misnamed; it acts like one-glob-to-all-files.
18 # Therefore, to get any-glob-to-all-files semantics, there must be a single glob
24 - all:
25 - changed-files:
26 - any-glob-to-all-files:
27- '{.github/workflows/macos.yml,lib/config-mac.h,lib/macos*,lib/vtls/sectransp*,m4/curl-sectransp.…
30 - all:
[all …]
/external/libultrahdr/.github/workflows/
Dcmake.yml1 name: CMake
15 - name: ubuntu-latest-gcc-cmake
16 os: ubuntu-latest
19 build-system: cmake
20 cmake-opts: '-DUHDR_BUILD_TESTS=1 -DUHDR_ENABLE_INSTALL=0 -DUHDR_BUILD_FUZZERS=0'
22 - name: ubuntu-latest-gcc-cmake-deps
23 os: ubuntu-latest
26 build-system: cmake
27cmake-opts: '-DUHDR_BUILD_TESTS=1 -DUHDR_ENABLE_INSTALL=0 -DUHDR_BUILD_FUZZERS=0 -DUHDR_BUILD_DEPS…
29 - name: ubuntu-latest-clang-cmake
[all …]
/external/flac/.github/workflows/
Daction.yml12 - name: ubuntu-latest-clang-autotools
13 os: ubuntu-latest
16 build-system: autotools
17 configure-opts: ''
19 - name: ubuntu-latest-gcc-cmake
20 os: ubuntu-latest
23 build-system: cmake
24 configure-opts: ''
26 - name: ubuntu-latest-clang-cmake
27 os: ubuntu-latest
[all …]
/external/webp/infra/
Dcompile.sh32 set -xe
34 WORKSPACE=${WORKSPACE:-"$(mktemp -d -t webp.XXX)"}
43 BUILD_TYPE supported build type: (shared, static, static-debug)
45 aarch64-linux-clang
46 aarch64-linux-gnu
47 arm-linux-gnueabi
48 arm-neon-linux-gnueabi
49 cmake
50 cmake-aarch64
51 cmake-arm
[all …]
Dcompile_js.sh32 set -ex
34 readonly WORKSPACE="${WORKSPACE:-"$(mktemp -d -t webp.js.XXX)"}"
50 [[ -d "${EMSDK_DIR:?Not defined}" ]] \
56 readonly EMSCRIPTEN=${EMSCRIPTEN:-"${EMSDK}/upstream/emscripten"}
58 EMSCRIPTEN_CMAKE_FILE="${EMSCRIPTEN}/cmake/Modules/Platform/Emscripten.cmake"
62 opts=("-GUnix Makefiles" "-DWEBP_BUILD_WEBP_JS=ON")
63 if [[ -z "$(command -v emcmake)" ]]; then
64 opts+=("-DCMAKE_TOOLCHAIN_FILE=${EMSCRIPTEN_CMAKE_FILE}")
65 cmake \
66 "${opts[@]}" \
[all …]
Dcompile_android.sh32 set -xe
35 readonly WORKSPACE=${WORKSPACE:-"$(mktemp -d -t webp.android.XXX)"}
45 static-debug
47 shared-debug
49 armeabi-v7a
50 arm64-v8a
62 if [[ ! -d "${WORKSPACE}" ]]; then
79 readonly BUILD_DIR="${WORKSPACE}/build-${BUILD_TYPE}"
82 if [[ ! -x "${ANDROID_NDK_DIR}/ndk-build" ]]; then
83 log_err "unable to find ndk-build in ANDROID_NDK_DIR: ${ANDROID_NDK_DIR}."
[all …]
/external/gflags/
DCMakeLists.txt1 ## CMake configuration file of gflags project
5 ## can be overridden either on the CMake command-line using the -D option of
6 ## the cmake command or in a super-project which includes the gflags source
7 ## tree by setting the GFLAGS_<varname> CMake variables before adding the
8 ## gflags source directory via CMake's "add_subdirectory" command. Only when
9 ## the non-cached variable GFLAGS_IS_SUBPROJECT has a value equivalent to FALSE,
10 ## these configuration variables are added to the CMake cache so they can be
11 ## edited in the CMake GUI. By default, GFLAGS_IS_SUBPROJECT is set to TRUE when
13 ## file, i.e., the top-level directory of the gflags project source tree.
16 ## settings are such that only the static single-threaded library is built without
[all …]
/external/llvm/utils/llvm-build/llvmbuild/
Dmain.py15 cmake_quote_string(value) -> str
17 Return a quoted form of the given value that is suitable for use in CMake
28 cmake_quote_path(value) -> str
30 Return a quoted form of the given value that is suitable for use in CMake
34 # CMake has a bug in it's Makefile generator that doesn't properly quote
43 mk_quote_string_for_target(target_name) -> str
54 make_install_dir(path) -> None
103 """validate_components() -> None
105 Validate that the project components are well-defined. Among other
107 - Components have valid references.
[all …]
/external/toolchain-utils/llvm_tools/
Dsetup_for_workon.py3 # Use of this source code is governed by a BSD-style license that can be
6 """Sets up src/third_party/llvm-project for cros workon from an LLVM ebuild."""
37 ) -> None:
42 f"--svn_version={current_rev.number}",
43 f"--src_path={llvm_dir.path}",
44 f"--patch_metadata_file={patch_metadata_file}",
51 def find_ebuild_in_dir(ebuild_dir: Path) -> Path:
53 candidates = list(ebuild_dir.glob("*-9999.ebuild"))
62 def write_gentoo_cmake_hack(llvm_dir: LLVMSourceDir, ebuild_dir: Path) -> None:
63 """Modifies cmake files in LLVM so cmake.eclass doesn't modify them."""
[all …]
Dcheck_clang_diags.py3 # Use of this source code is governed by a BSD-style license that can be
8 This looks at projects we care about (currently only clang-tidy, though
10 warning appears. These bugs are intended to keep us up-to-date with new
33 def _build_llvm(llvm_dir: str, build_dir: str) -> None:
35 targets = ["clang-tidy"]
36 # use `-C $llvm_dir` so the failure is easier to handle if llvm_dir DNE.
38 ["ninja", "-C", build_dir] + targets,
44 # Sometimes the directory doesn't exist, sometimes incremental cmake
52 "cmake",
53 "-G",
[all …]
/external/libwebm/infra/
Dcompile.sh32 set -e
33 shopt -s inherit_errexit
37 readonly WORKSPACE=${WORKSPACE:-"$(mktemp -d -t webm.XXX)"}
46 BUILD_TYPE supported build type (static, static-debug)
47 TARGET supported target platform compilation: (native, native-clang,
48 clang-i686, i686-w64-mingw32, x86_64-w64-mingw32,
49 native-Makefile.unix)
59 if command -v ccache 2> /dev/null; then
68 if [[ ! -d "${WORKSPACE}" ]]; then
81 BUILD_DIR="${WORKSPACE}/build-${BUILD_TYPE}"
[all …]
Drun_unit_tests.sh32 set -xeo pipefail
33 shopt -s inherit_errexit
38 readonly WORKSPACE=${WORKSPACE:-"$(mktemp -d -t webm.XXX)"}
47 TARGET supported targets: (x86-asan, x86-ubsan, x86_64-asan, x86_64-ubsan,
48 x86_64-valgrind)
59 --leak-check=full \
60 --show-reachable=yes \
61 --track-origins=yes \
62 --error-exitcode=1 \
77 if [[ ! -d "${googletest_dir}" ]] || ! git -C "${googletest_dir}" pull; then
[all …]
/external/deqp-deps/amber/kokoro/scripts/linux/
Dbuild-docker.sh9 # http://www.apache.org/licenses/LICENSE-2.0
17 set -e # fail on error
21 set -x # show commands
23 # Disable git's "detected dubious ownership" error - kokoro checks out the repo with a different
25 git config --global --add safe.directory '*'
27 using cmake-3.17.2
28 using ninja-1.10.0
30 if [ ! -z "$COMPILER" ]; then
45 DEPS_ARGS+=" --with-clspv"
48 DEPS_ARGS+=" --with-dxc"
[all …]
/external/curl/src/
DCMakeLists.txt21 # SPDX-License-Identifier: curl
25 add_definitions(-DBUILDING_CURL)
28 add_definitions("-DUSE_MANUAL")
31 COMMAND ${CMAKE_COMMAND} -E echo "#include \"tool_setup.h\"" > tool_hugehelp.c
32 COMMAND ${CMAKE_COMMAND} -E echo "#ifndef HAVE_LIBZ" >> tool_hugehelp.c
33 …"${CMAKE_CURRENT_SOURCE_DIR}/mkhelp.pl" < "${CURL_BINARY_DIR}/docs/cmdline-opts/curl.txt" >> tool_…
35 COMMAND ${CMAKE_COMMAND} -E echo "#else" >> tool_hugehelp.c
36 …L_EXECUTABLE}" "${CMAKE_CURRENT_SOURCE_DIR}/mkhelp.pl" -c < "${CURL_BINARY_DIR}/docs/cmdline-opts/…
37 COMMAND ${CMAKE_COMMAND} -E echo "#endif /* HAVE_LIBZ */" >> tool_hugehelp.c
39 generate-curl.1
[all …]
/external/curl/docs/libcurl/opts/
DCMakeLists.txt21 # SPDX-License-Identifier: curl
25 transform_makefile_inc("Makefile.inc" "${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
26 include("${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
29 add_custom_target(curl-opts-man DEPENDS ${man_MANS})
30 add_dependencies(curl-man curl-opts-man)
/external/harfbuzz_ng/
Dmeson.build5 'cpp_eh=none', # Just to support msvc, we are passing -fno-exceptions also anyway
8 …'wrap_mode=nofallback', # Use --wrap-mode=default to revert, https://github.com/harfbuzz/harfbuzz/…
26 if ['clang', 'clang-cl'].contains(cpp.get_id()) and cpp.get_define('_MSC_FULL_VER') != ''
27 add_project_arguments('-std=c++14', language: 'cpp')
36 '/wd4244', # lossy type conversion (e.g. double -> int)
37 cpp.get_supported_arguments(['/utf-8']), # set the input encoding to utf-8
45 '-Bsymbolic-functions'
49 '-fno-exceptions',
50 '-fno-rtti',
51 '-fno-threadsafe-statics',
[all …]
/external/curl/docs/cmdline-opts/
DCMakeLists.txt21 # SPDX-License-Identifier: curl
24 set(MANPAGE "${CURL_BINARY_DIR}/docs/cmdline-opts/curl.1")
25 set(ASCIIPAGE "${CURL_BINARY_DIR}/docs/cmdline-opts/curl.txt")
28 transform_makefile_inc("Makefile.inc" "${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
29 include("${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
37 add_custom_target(generate-curl.1 ALL DEPENDS "${MANPAGE}")
/external/curl/.github/workflows/
Ddistcheck.yml3 # SPDX-License-Identifier: curl
10 - master
11 - '*/ci'
14 - master
17 group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
18 cancel-in-progress: true
23 maketgz-and-verify-in-tree:
24 runs-on: ubuntu-latest
25 timeout-minutes: 30
27 - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
[all …]
/external/curl/
DRELEASE-NOTES22 o appveyor: drop unnecessary `--clean-first` cmake option [197]
23 o appveyor: guard against crash-build with VS2008 [193]
24 o appveyor: make gcc 6 mingw64 job build-only [152]
25 o asyn-thread: fix curl_global_cleanup crash in Windows [161]
26 o asyn-thread: fix Curl_thread_create result check [162]
33 o BUG-BOUNTY.md: clarify the third party situation [210]
35 o build: remove MacOSX-Framework script [60]
37 o cf-https-connect: use timeouts as unsigned ints [143]
38 o cf-socket: don't try getting local IP without socket [188]
39 o cf-socket: remove references to l_ip, l_port [9]
[all …]
/external/curl/docs/libcurl/
DCMakeLists.txt21 # SPDX-License-Identifier: curl
25 transform_makefile_inc("Makefile.inc" "${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
26 include("${CMAKE_CURRENT_BINARY_DIR}/Makefile.inc.cmake")
44 …COMMAND "${PERL_EXECUTABLE}" ${PROJECT_SOURCE_DIR}/scripts/cd2nroff -k -d "${CMAKE_CURRENT_BINARY_…
54 if(_file STREQUAL "libcurl-symbols.3")
55 # Special case, an auto-generated file.
64 add_custom_command(OUTPUT libcurl-symbols.md
68 "${CMAKE_CURRENT_SOURCE_DIR}/symbols-in-versions" > libcurl-symbols.md
70 "${CMAKE_CURRENT_SOURCE_DIR}/symbols-in-versions"
76 add_custom_target(curl-man ALL DEPENDS ${man_MANS})
[all …]
/external/angle/third_party/glslang/src/
DREADME-spirv-remap.txt3 --------------------------------------------------------------------------------
4 spirv-remap 0.97
7 --------------------------------------------------------------------------------
8 spirv-remap is a utility to improve compression of SPIR-V binary files via
10 load/store optimization. It transforms SPIR-V to SPIR-V, remapping IDs. The
25 spirv-remap is currently in an alpha state. Although there are no known
31 ---------------------------------------------------------------------------------
36 --------------------------------------------------------------------------------
37 Examples are given with a verbosity of one (-v), but more verbosity can be
38 had via -vv, -vvv, etc, or an integer parameter to --verbose, such as
[all …]
/external/deqp-deps/glslang/
DREADME-spirv-remap.txt3 --------------------------------------------------------------------------------
4 spirv-remap 0.97
7 --------------------------------------------------------------------------------
8 spirv-remap is a utility to improve compression of SPIR-V binary files via
10 load/store optimization. It transforms SPIR-V to SPIR-V, remapping IDs. The
25 spirv-remap is currently in an alpha state. Although there are no known
31 --------------------------------------------------------------------------------
37 --------------------------------------------------------------------------------
38 Examples are given with a verbosity of one (-v), but more verbosity can be
39 had via -vv, -vvv, etc, or an integer parameter to --verbose, such as
[all …]
/external/curl/docs/
DMakefile.am21 # SPDX-License-Identifier: curl
25 AUTOMAKE_OPTIONS = foreign no-dependencies
29 MK_CA_DOCS = mk-ca-bundle.1
30 CURLCONF_DOCS = curl-config.1
33 CURLPAGES = curl-config.md mk-ca-bundle.md
35 SUBDIRS = . cmdline-opts libcurl
39 CLEANFILES = mk-ca-bundle.1 curl-config.1
48 BUG-BOUNTY.md \
56 CLIENT-READERS.md \
57 CLIENT-WRITERS.md \
[all …]
/external/toolchain-utils/pgo_tools/
Dgenerate_pgo_profile.py3 # Use of this source code is governed by a BSD-style license that can be
10 Note that this script has a few (perhaps surprising) side-effects:
39 HOST_TRIPLE = "x86_64-pc-linux-gnu"
44 "x86_64-cros-linux-gnu",
45 "armv7a-cros-linux-gnueabihf",
46 "aarch64-cros-linux-gnu",
49 # Set of all of the cross-* libraries we need.
51 f"cross-{triple}/{package}"
54 for package in ("glibc", "libcxx", "llvm-libunwind", "linux-headers")
58 def ensure_llvm_binpkg_exists() -> bool:
[all …]
/external/curl/tests/
Dtest1119.pl22 # SPDX-License-Identifier: curl
39 configurehelp->import(qw(
45 # This is the case with cmake.
53 # need an include directory when building out-of-tree
54 my $i = ($ARGV[1]) ? "-I$ARGV[1] " : '';
69 open my $h_in, "-|", "$Cpreprocessor $i$file" || die "Cannot preprocess $file";
86 if (/^#define ((LIB|)CURL[A-Za-z0-9_]*)/) {
113 # detect global-looking 'CURL[BLABLA]_*' symbols
114 …UNC|_WRITEFUNC|_CSELECT|_FORMADD|_IPRESOLVE|_REDIR|_RTSPREQ|_TIMECOND|_VERSION)_[a-zA-Z0-9_]+)//) {
140 scanman3dir("$root/docs/libcurl/opts");
[all …]

12