Searched +full:cxx +full:- +full:compiler (Results 1 – 25 of 883) sorted by relevance
12345678910>>...36
| /external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/ |
| D | cmake.yml | 4 ci-cmake: 6 runs-on: ${{ matrix.os }} 8 fail-fast: false 11 - name: Ubuntu 18.04 GCC 12 os: ubuntu-18.04 13 compiler: gcc 14 cxx-compiler: g++ 16 - name: Ubuntu GCC ASAN 17 os: ubuntu-latest 18 compiler: gcc [all …]
|
| D | pkgcheck.yml | 4 ci-pkgcheck: 6 runs-on: ${{ matrix.os }} 8 fail-fast: false 11 - name: Ubuntu GCC 12 os: ubuntu-latest 13 compiler: gcc 14 cxx-compiler: g++ 16 - name: Ubuntu GCC -m32 17 os: ubuntu-latest 18 compiler: gcc [all …]
|
| /external/icu/icu4c/source/ |
| D | runConfigureICU | 4 # Copyright (c) 1999-2015, International Business Machines Corporation and 16 if test $ec -eq 0 23 …echo "${uletter}sage: $me [ -h, --help ] [ --enable-debug | --disable-release ] platform [ config… 24 if test $ec -eq 0 28 Options: -h, --help Print this message and exit 29 --enable-debug Enable support for debugging 30 --disable-release Disable presetting optimization flags 35 CXXFLAGS=xyz path/to/runConfigureICU --enable-debug ... 41 AIX/OpenXL Use the IBM Open XL ibm-clang_r/ibm-clang++_r compilers on AIX 43 Cygwin/MSVC Use the Microsoft Visual C++ compiler on Cygwin [all …]
|
| /external/cronet/third_party/icu/source/ |
| D | runConfigureICU | 4 # Copyright (c) 1999-2015, International Business Machines Corporation and 16 if test $ec -eq 0 23 …echo "${uletter}sage: $me [ -h, --help ] [ --enable-debug | --disable-release ] platform [ config… 24 if test $ec -eq 0 28 Options: -h, --help Print this message and exit 29 --enable-debug Enable support for debugging 30 --disable-release Disable presetting optimization flags 35 CXXFLAGS=xyz path/to/runConfigureICU --enable-debug ... 41 AIX/OpenXL Use the IBM Open XL ibm-clang_r/ibm-clang++_r compilers on AIX 43 Cygwin/MSVC Use the Microsoft Visual C++ compiler on Cygwin [all …]
|
| /external/sdv/vsomeip/third_party/boost/optional/.github/workflows/ |
| D | ci.yml | 7 - master 8 - develop 9 - githubactions* 10 - feature/** 11 - fix/** 12 - pr/** 17 fail-fast: false 20 - name: "TOOLSET=gcc COMPILER=g++ CXXSTD=03,11 Job 0" 24 os: "ubuntu-16.04" 25 cxx: "g++" [all …]
|
| /external/angle/third_party/glslang/src/.github/workflows/ |
| D | continuous_integration.yml | 7 - main 9 permissions: read-all 13 runs-on: ubuntu-22.04 15 fail-fast: false 17 compiler: [{cc: clang, cxx: clang++}, {cc: gcc, cxx: g++}] 20 - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 21 - uses: lukka/get-cmake@18d87816d12dd87ec1449d47b9b3a587e0a1cc19 # v3.29.5 22 - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 24 python-version: '3.7' 25 - name: Setup ccache [all …]
|
| D | continuous_deployment.yml | 3 # Github github-script action: https://github.com/actions/github-script 5 # Octokit front-end to the GitHub REST API: https://octokit.github.io/rest.js/v18 6 # Octokit endpoint methods: https://github.com/octokit/plugin-rest-endpoint-methods.js/tree/master/… 8 # TODO: Use actions/upload-artifact and actions/download-artifact to simplify deployment. 17 - main 18 paths-ignore: 19 - 'README.md' 20 - 'README-spirv-remap.txt' 21 - 'LICENSE.txt' 22 - 'CODE_OF_CONDUCT.md' [all …]
|
| /external/deqp-deps/glslang/.github/workflows/ |
| D | continuous_integration.yml | 7 - main 9 permissions: read-all 13 runs-on: ubuntu-22.04 15 fail-fast: false 17 compiler: [{cc: clang, cxx: clang++}, {cc: gcc, cxx: g++}] 20 - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 21 - uses: lukka/get-cmake@139aae96315b496d9af1b5e9abe53b15ca7eece8 # v3.28.3 22 - uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 24 python-version: '3.7' 25 - name: Setup ccache [all …]
|
| /external/google-fruit/extras/scripts/ |
| D | postsubmit-helper.sh | 1 #!/bin/bash -x 3 set -e 9 case $COMPILER in 10 gcc-4.9) 11 export CC=gcc-4.9 12 export CXX=g++-4.9 15 gcc-5) 16 export CC=gcc-5 17 export CXX=g++-5 20 gcc-6) [all …]
|
| /external/libcxx/utils/libcxx/test/ |
| D | config.py | 1 #===----------------------------------------------------------------------===## 3 # The LLVM Compiler Infrastructure 8 #===----------------------------------------------------------------------===## 20 from libcxx.compiler import CXXCompiler 30 # out-of-tree build situation). 53 # Extract the value of a numeric macro such as __cplusplus or a feature-test 59 # pylint: disable=redefined-outer-name 64 self.cxx = None 112 '--param=%s=%s' % (env_var, val, name, conf_val)) 160 self.lit_config.note('Using compiler: %s' % self.cxx.path) [all …]
|
| /external/nanopb-c/tests/ |
| D | SConstruct | 3 It will automatically detect your platform and C compiler and 7 CC Name of C compiler 8 CXX Name of C++ compiler 9 CCFLAGS Flags to pass to the C compiler 10 CXXFLAGS Flags to pass to the C++ compiler 13 scons CC=clang CXX=clang++ 27 # Allow overriding the compiler with scons CC=??? 29 if 'CXX' in ARGUMENTS: env.Replace(CXX = ARGUMENTS['CXX']) 76 # Check if we can use pkg-config to find protobuf include path 77 status, output = conf.TryAction('pkg-config protobuf --variable=includedir > $TARGET') [all …]
|
| /external/libwebm/build/ |
| D | cxx_flags.cmake | 3 # Use of this source code is governed by a BSD-style license 11 # String used to cache failed CXX flags. 14 # Checks C++ compiler for support of $cxx_flag. Adds $cxx_flag to 23 if(${CXX_FLAG_FOUND} EQUAL -1 AND ${CXX_FLAG_FAILED} EQUAL -1) 25 message("Checking CXX compiler flag support for: " ${cxx_flag}) 39 # Checks CXX compiler for support of $cxx_flag and terminates generation when 45 if(${CXX_FLAG_FOUND} EQUAL -1) 47 message("Checking CXX compiler flag support for: " ${cxx_flag}) 52 "${PROJECT_NAME} requires support for CXX flag: ${cxx_flag}.") 60 # Checks only non-MSVC targets for support of $cxx_flag. [all …]
|
| /external/libcxx/utils/libcxx/android/test/ |
| D | config.py | 6 import libcxx.android.compiler 34 'Using compiler: {}'.format(self.cxx.path)) 36 'Using compile template: {}'.format(self.cxx.cxx_template)) 38 'Using link template: {}'.format(self.cxx.link_template)) 53 self.cxx = libcxx.android.compiler.AndroidCXXCompiler( 61 self.config.target_triple = self.cxx.get_triple() 70 self.cxx.extra_cflags.append( 71 '-DLIBCXX_FILESYSTEM_STATIC_TEST_ROOT="{}"'.format(static_env)) 78 self.cxx.extra_cflags.append( 79 '-DLIBCXX_FILESYSTEM_DYNAMIC_TEST_ROOT="{}"'.format(dynamic_env)) [all …]
|
| /external/sdv/vsomeip/third_party/boost/phoenix/.github/workflows/ |
| D | ci.yml | 7 - master 8 - develop 9 - githubactions* 10 - feature/** 11 - fix/** 12 - pr/** 17 fail-fast: false 20 - name: "TOOLSET=gcc-4.4 CXXSTD=98,0x Job 0" 22 packages: "g++-4.4 ccache" 24 os: "ubuntu-16.04" [all …]
|
| /external/webrtc/third_party/crc32c/src/ |
| D | .travis.yml | 2 # http://about.travis-ci.org/docs/user/build-configuration/ 3 # This file can be validated on: http://lint.travis-ci.org/ 9 compiler: 10 - gcc 11 - clang 13 - linux 14 - osx 17 - GLOG=1 SHARED_LIB=0 BUILD_TYPE=Debug 18 - GLOG=1 SHARED_LIB=0 BUILD_TYPE=RelWithDebInfo 19 - GLOG=0 SHARED_LIB=0 BUILD_TYPE=Debug [all …]
|
| /external/AFLplusplus/ |
| D | GNUmakefile.llvm | 1 # american fuzzy lop++ - LLVM instrumentation 2 # ----------------------------------------- 15 # https://www.apache.org/licenses/LICENSE-2.0 29 …ell date -u -d "@$(SOURCE_DATE_EPOCH)" "+%Y-%m-%d" 2>/dev/null || date -u -r "$(SOURCE_DATE_EPOCH)… 31 VERSION = $(shell grep '^$(HASH)define VERSION ' ./config.h | cut -d '"' -f2) 33 SYS = $(shell uname -s) 36 LLVM_CONFIG ?= $(BIN_PATH)/llvm-config 37 HAS_OPT = $(shell test -x $(BIN_PATH)/opt && echo 0 || echo 1) 39 …lvm_mode needs a complete llvm installation (versions 6.0 up to 13) -> e.g. "pkg_add llvm-7.0.1p9") 42 LLVM_CONFIG ?= llvm-config [all …]
|
| D | GNUmakefile.gcc_plugin | 2 # american fuzzy lop++ - GCC plugin instrumentation 3 # ----------------------------------------------- 14 # Copyright 2019-2024 AFLplusplus Project. All rights reserved. 20 # https://www.apache.org/licenses/LICENSE-2.0 29 VERSION = $(shell grep '^$(HASH)define VERSION ' ./config.h | cut -d '"' -f2) 31 CFLAGS ?= -O3 -g -funroll-loops 32 # -D_FORTIFY_SOURCE=1 33 CFLAGS_SAFE := -Wall -Iinclude -Wno-pointer-sign \ 34 -DAFL_PATH=\"$(HELPER_PATH)\" -DBIN_PATH=\"$(BIN_PATH)\" \ 35 -DGCC_VERSION=\"$(GCCVER)\" -DGCC_BINDIR=\"$(GCCBINDIR)\" \ [all …]
|
| /external/clang/tools/diag-build/ |
| D | diag-build.sh | 3 # diag-build: a tool showing enabled warnings in a project. 5 # diag-build acts as a wrapper for 'diagtool show-enabled', in the same way 6 # that scan-build acts as a wrapper for the static analyzer. The common case is 7 # simple: use 'diag-build make' or 'diag-build xcodebuild' to list the warnings 9 # you to manually specify "dry-run" and "use $CC and $CXX"; if there is a build 13 echo 'Usage: diag-build.sh [-v] xcodebuild [flags]' 14 echo ' diag-build.sh [-v] make [flags]' 15 echo ' diag-build.sh [-v] <other build command>' 19 echo 'the compiler used matches the CC environment variable.' 22 # Mac OS X's BSD sed uses -E for extended regular expressions, [all …]
|
| /external/jemalloc_new/m4/ |
| D | ax_cxx_compile_stdcxx.m4 | 2 # http://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx.html 11 # Check for baseline language coverage in the compiler for the specified 12 # version of the C++ standard. If necessary, add switches to CXX and 17 # extended mode (e.g. -std=gnu++11) or a strict conformance mode (e.g. 18 # -std=c++11). If neither is specified, you get whatever works, with 39 # and this notice are preserved. This file is offered as-is, without any 62 AC_CACHE_CHECK(whether $CXX supports C++$1 features by default, 73 for switch in -std=gnu++$1 -std=gnu++0x; do 75 AC_CACHE_CHECK(whether $CXX supports C++$1 features with $switch, 77 [ac_save_CXX="$CXX" [all …]
|
| /external/libffi/ |
| D | .travis.yml | 1 --- 6 # For qemu-powered targets, get the list of supported processors from 7 # travis by setting QEMU_CPU=help, then set -mcpu= for the compilers 12 - os: linux 13 env: HOST=or1k-elf RUNTESTFLAGS="--target_board or1k-sim" DEJAGNU="/opt/.travis/site.exp" 14 - os: linux 15 env: HOST=m32r-elf RUNTESTFLAGS="--target_board m32r-sim" DEJAGNU="/opt/.travis/site.exp" 16 - os: linux 17 env: HOST=bfin-elf RUNTESTFLAGS="--target_board bfin-sim" DEJAGNU="/opt/.travis/site.exp" 19 # - os: osx [all …]
|
| /external/libaom/build/cmake/ |
| D | compiler_flags.cmake | 32 if(${flag_pos} EQUAL -1) 42 if(${found} EQUAL -1) 47 # Checks C compiler for support of $c_flag. Adds $c_flag to all 66 # https://gitlab.kitware.com/cmake/cmake/-/issues/21207. 69 message("Checking C compiler flag support for: " ${c_flag}) 83 # Checks C++ compiler for support of $cxx_flag. Adds $cxx_flag to all 102 # https://gitlab.kitware.com/cmake/cmake/-/issues/21207. 105 message("Checking C++ compiler flag support for: " ${cxx_flag}) 119 # Convenience method for adding a flag to both the C and C++ compiler command 126 # Checks C compiler for support of $c_flag and terminates generation when [all …]
|
| /external/cronet/build/toolchain/cros/ |
| D | BUILD.gn | 2 # Use of this source code is governed by a BSD-style license that can be 5 import("//build/config/compiler/compiler.gni") 13 # environment. For example, cxx is a relative path picked up on $PATH in the 14 # chroot. But in Simple Chrome, cxx is a system-absolute path. 28 # it the gomacc path via cmd-line arg. Otherwise, for both CrOS's host 32 extra_cppflags += " --gomacc-path $goma_dir/gomacc" 35 extra_cppflags += "--rewrapper-path $rbe_cros_cc_wrapper --rewrapper-cfg ${rbe_cc_cfg_file}" 38 # Relativize path if compiler is specified such that not to lookup from 39 # $PATH and cc/cxx does not contain additional flags. 44 if (cxx != get_path_info(cxx, "file") && [all …]
|
| /external/angle/build/toolchain/cros/ |
| D | BUILD.gn | 2 # Use of this source code is governed by a BSD-style license that can be 5 import("//build/config/compiler/compiler.gni") 13 # environment. For example, cxx is a relative path picked up on $PATH in the 14 # chroot. But in Simple Chrome, cxx is a system-absolute path. 28 # pass it the rewrapper path via cmd-line arg. Otherwise, for both CrOS's 32 …extra_cppflags += "--rewrapper-path $reclient_cros_cc_wrapper --rewrapper-cfg ${reclient_cc_cfg_fi… 35 # Relativize path if compiler is specified such that not to lookup from 36 # $PATH and cc/cxx does not contain additional flags. 41 if (cxx != get_path_info(cxx, "file") && 42 string_replace(cxx, " ", "") == cxx) { [all …]
|
| /external/gemmlowp/scripts/ |
| D | test-android.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 16 if [ -z "$CXX" ] 18 …echo "please set the CXX environment variable to point to your native Android toolchain C++ compil… 22 default_cflags="-O3" 24 if [ "$#" -eq 0 ] 27 echo "All command-line parameters are passed along to the C++ compiler, so they can \ 28 be either source files, or compiler flags." 30 echo "Relies on the CXX environment variable to point to an Android C++ toolchain compiler." 34 EXE=gemmlowp-android-binary 36 if [[ $CXX =~ .*aarch64.* ]] [all …]
|
| /external/libgav1/cmake/ |
| D | libgav1_flags.cmake | 7 # http://www.apache.org/licenses/LICENSE-2.0 23 # Adds compiler flags specified by FLAGS to the sources specified by SOURCES: 32 cmake_parse_arguments(compiler "${optional_args}" "${single_value_args}" 53 # Tests compiler flags stored in list(s) specified by FLAG_LIST_VAR_NAMES, adds 83 message("CXX test: all flags: ${cxx_flags}") 96 message("--- Running combined CXX flags test, flags: ${all_cxx_flags}") 114 message("--- Passed combined CXX flags test") 116 message("--- Failed combined CXX flags test, testing flags individually.") 119 message("--- Testing flags from $cxx_flags: " "${cxx_flags}") 125 # https://gitlab.kitware.com/cmake/cmake/-/issues/21207. [all …]
|
12345678910>>...36