Searched +full:- +full:dcmake_cxx_compiler (Results 1 – 25 of 100) sorted by relevance
1234
/external/llvm-project/openmp/ |
D | README.rst | 5 and Clang need a more recent version which also applies for in-tree builds. For 15 - When calling CMake for the first time, all needed compiler options must be 20 - Example of configuring, building, reconfiguring, rebuilding: 22 .. code-block:: console 26 $ cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ .. # Initial configuration 30 $ cmake -DCMAKE_BUILD_TYPE=Debug .. # Second configuration 33 $ rm -rf * 34 $ cmake -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ .. # Third configuration 37 - Notice in the example how the compiler definitions are only specified for an 39 - The file ``CMakeCache.txt`` which is created after the first call to CMake is [all …]
|
/external/oss-fuzz/projects/graphicsfuzz-spirv/ |
D | build.sh | 1 #!/bin/bash -eu 8 # http://www.apache.org/licenses/LICENSE-2.0 22 cmake -G "Ninja" -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_C_COMPILER=$CC -DCMAKE_BUILD_TYPE=RelWithDebInfo… 27 mkdir SPIRV-Tools/build 28 pushd SPIRV-Tools/build 31 # Link failure without LDFLAGS="-lpthread" 32 …-lpthread" cmake -G "Ninja" -DSPIRV_SKIP_TESTS=ON -DCMAKE_CXX_COMPILER=$CXX -DCMAKE_C_COMPILER=$C… 34 cp tools/spirv-as tools/spirv-dis tools/spirv-val tools/spirv-opt $OUT/ 37 mkdir SPIRV-Cross/build 38 pushd SPIRV-Cross/build [all …]
|
/external/llvm-project/clang/tools/clang-fuzzer/ |
D | README.txt | 1 This directory contains three utilities for fuzzing Clang: clang-fuzzer, 2 clang-objc-fuzzer, and clang-proto-fuzzer. All use libFuzzer to generate inputs 3 to clang via coverage-guided mutation. 6 clang-fuzzer makes no attempt to generate valid C++ programs and is therefore 9 clang-objc-fuzzer is similar but for Objective-C: it makes no attempt to 10 generate a valid Objective-C program. 12 clang-proto-fuzzer uses a protobuf class to describe a subset of the C++ 13 language and then uses libprotobuf-mutator to mutate instantiations of that 15 clang-proto-fuzzer is better at stressing deeper layers of Clang and LLVM. 20 Building clang-fuzzer [all …]
|
/external/deqp/scripts/ |
D | run_internal_tests.py | 1 # -*- coding: utf-8 -*- 3 #------------------------------------------------------------------------- 5 # -------------------------------------- 13 # http://www.apache.org/licenses/LICENSE-2.0 21 #------------------------------------------------------------------------- 31 exit(-1) 46 … testBinaryName, executor = 'executor', execserver = 'execserver', junitTool = 'testlog-to-junit'): 77 execute(["cmake", "--build", "."] + config.buildParams, workDir = config.buildPath) 95 execute([config.testBinaryName, "--deqp-runmode=xml-caselist"], workDir = testWorkDir) 100 '--port=%d' % random.randint(50000, 60000), [all …]
|
/external/tensorflow/tensorflow/lite/g3doc/guide/ |
D | build_cmake_arm.md | 6 The following instructions have been tested on Ubuntu 16.04.3 64-bit PC (AMD64) 29 ldd --version 32 <pre class="tfo-notebook-code-cell-output"> 33 ldd (Debian GLIBC 2.28-10) 2.28 42 If your target is ARM 32-bit, there are two ABI available depending on VFP 55 <pre class="tfo-notebook-code-cell-output"> 71 [Ubuntu Server 20.04.01 LTS 64-bit](https://ubuntu.com/download/raspberry-pi) 76 These commands install gcc-arm-8.3-2019.03-x86_64-aarch64-linux-gnu toolchain 80 …-LO https://storage.googleapis.com/mirror.tensorflow.org/developer.arm.com/media/Files/downloads/g… 81 mkdir -p ${HOME}/toolchains [all …]
|
/external/oss-fuzz/projects/libheif/ |
D | build.sh | 1 #!/bin/bash -eu 8 # http://www.apache.org/licenses/LICENSE-2.0 20 mkdir -p $DEPS_PATH 23 cmake -G "Unix Makefiles" \ 24 -DCMAKE_C_COMPILER=$CC -DCMAKE_CXX_COMPILER=$CXX \ 25 -DCMAKE_C_FLAGS="$CFLAGS" -DCMAKE_CXX_FLAGS="$CXXFLAGS" \ 26 -DCMAKE_INSTALL_PREFIX="$DEPS_PATH" \ 27 -DENABLE_SHARED:bool=off \ 30 make -j$(nproc) x265-static 36 --prefix="$DEPS_PATH" \ [all …]
|
/external/tensorflow/tensorflow/lite/tools/pip_package/ |
D | build_pip_package_with_cmake.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 16 set -ex 19 PYTHON="${CI_BUILD_PYTHON:-python3}" 20 VERSION_SUFFIX=${VERSION_SUFFIX:-} 23 …ION = " "${TENSORFLOW_DIR}/tensorflow/tools/pip_package/setup.py" | cut -d= -f2 | sed "s/[ '-]//g") 27 PYTHON_INCLUDE=$(${PYTHON} -c "from sysconfig import get_paths as gp; print(gp()['include'])") 28 PYBIND11_INCLUDE=$(${PYTHON} -c "import pybind11; print (pybind11.get_include())") 31 if [ ! -z "${CI_BUILD_HOME}" ] && [ `pwd` = "/workspace" ]; then 32 …# Fix for curl build problem in 32-bit, see https://stackoverflow.com/questions/35181744/size-of-a… 34 …sudo sed -i 's/define CURL_SIZEOF_LONG 8/define CURL_SIZEOF_LONG 4/g' /usr/include/curl/curlbuild.h [all …]
|
/external/llvm-project/llvm/docs/ |
D | HowToBuildWithPGO.rst | 2 How To Build Clang and LLVM with Profile-Guided Optimizations 8 PGO (Profile-Guided Optimization) allows your compiler to better optimize code 15 If you want to build other software with PGO, see the `end-user documentation 16 for PGO <https://clang.llvm.org/docs/UsersManual.html#profile-guided-optimization>`_. 22 See https://llvm.org/docs/AdvancedBuilds.html#multi-stage-pgo 29 compiler-rt. Despite the name, it performs four clean builds of Clang, so it 30 can take a while to run to completion. Please see the script's ``--help`` for 32 If you want to get the most out of PGO for a particular use-case (e.g. compiling 39 This script also supports a ``--dry-run`` option, which causes it to print 52 - runs all of Clang and LLVM's lit tests, and [all …]
|
/external/fmtlib/test/ |
D | CMakeLists.txt | 1 #------------------------------------------------------------------------------ 4 # We compile Google Test ourselves instead of using pre-compiled libraries. 6 # pre-compiled copy of Google Test (for example, into /usr/local)?" 9 gmock-gtest-all.cc gmock/gmock.h gtest/gtest.h gtest/gtest-spi.h) 30 target_compile_options(gmock PUBLIC -Wno-deprecated-declarations) 43 #------------------------------------------------------------------------------ 46 set(TEST_MAIN_SRC test-main.cc gtest-extra.cc gtest-extra.h util.cc) 47 add_library(test-main STATIC ${TEST_MAIN_SRC}) 48 target_include_directories(test-main SYSTEM PUBLIC gtest gmock) 49 target_link_libraries(test-main gmock fmt) [all …]
|
/external/llvm-project/openmp/libomptarget/ |
D | README.txt | 7 In-tree build: 9 $ cd where-you-want-to-live 11 $ cd where-you-want-to-build 13 $ cmake path/to/llvm -DCMAKE_C_COMPILER=<C compiler> -DCMAKE_CXX_COMPILER=<C++ compiler> 16 Out-of-tree build: 18 $ cd where-you-want-to-live 20 $ cd where-you-want-to-live/openmp/libomptarget 22 $ cmake path/to/openmp -DCMAKE_C_COMPILER=<C compiler> -DCMAKE_CXX_COMPILER=<C++ compiler> 37 * Intel(R) 64 architecture (generic 64-bit plugin - mostly for testing purposes) 38 * IBM(R) Power architecture (big endian) (generic 64-bit plugin - mostly for testing purposes) [all …]
|
/external/llvm-project/llvm/cmake/modules/ |
D | LLVMExternalProjectUtils.cmake | 12 set(${out_var} "$(MAKE)" "-C" "${bin_dir}" "${target}" PARENT_SCOPE) 14 set(${out_var} ${CMAKE_COMMAND} --build ${bin_dir} --target ${target} 15 --config ${ARG_CONFIGURATION} PARENT_SCOPE) 21 # Use just-built tools (see TOOLCHAIN_TOOLS) 27 # Always clean the sub-project before building 50 if(arg MATCHES "^-DCMAKE_SYSTEM_NAME=") 51 string(REGEX REPLACE "^-DCMAKE_SYSTEM_NAME=(.*)$" "\\1" _cmake_system_name "${arg}") 63 # AIX 64-bit XCOFF and big AR format is not yet supported in some of these tools. 65 list(APPEND ARG_TOOLCHAIN_TOOLS lld llvm-ar llvm-ranlib llvm-nm llvm-objdump) 67 list(APPEND ARG_TOOLCHAIN_TOOLS llvm-libtool-darwin llvm-lipo) [all …]
|
/external/llvm-project/mlir/test/Examples/standalone/ |
D | test.toy | 1 …/standalone -DCMAKE_CXX_COMPILER=%host_cxx -DCMAKE_C_COMPILER=%host_cc -DMLIR_DIR=%llvm_lib_dir/cm…
|
/external/llvm-project/openmp/www/ |
D | README.txt | 9 should come with pre-built PDF documentation in doc/Reference.pdf. 26 In-tree build: 28 $ cd where-you-want-to-live 30 $ cd where-you-want-to-build 32 $ cmake path/to/llvm -DCMAKE_C_COMPILER=<C compiler> -DCMAKE_CXX_COMPILER=<C++ compiler> 35 Out-of-tree build: 37 $ cd where-you-want-to-live 39 $ cd where-you-want-to-live/openmp 41 $ cmake path/to/openmp -DCMAKE_C_COMPILER=<C compiler> -DCMAKE_CXX_COMPILER=<C++ compiler> 48 * IA-32 architecture [all …]
|
/external/llvm-project/openmp/runtime/ |
D | README.txt | 9 should come with pre-built PDF documentation in doc/Reference.pdf. 26 In-tree build: 28 $ cd where-you-want-to-live 30 $ cd where-you-want-to-build 32 $ cmake path/to/llvm -DCMAKE_C_COMPILER=<C compiler> -DCMAKE_CXX_COMPILER=<C++ compiler> 35 Out-of-tree build: 37 $ cd where-you-want-to-live 39 $ cd where-you-want-to-live/openmp/runtime 41 $ cmake path/to/openmp -DCMAKE_C_COMPILER=<C compiler> -DCMAKE_CXX_COMPILER=<C++ compiler> 48 * IA-32 architecture [all …]
|
/external/llvm-project/clang/cmake/modules/ |
D | ProtobufMutator.cmake | 4 set(PBM_LIB_PATH ${PBM_PATH}-build/src/libprotobuf-mutator.a) 5 set(PBM_FUZZ_LIB_PATH ${PBM_PATH}-build/src/libfuzzer/libprotobuf-mutator-libfuzzer.a) 9 GIT_REPOSITORY https://github.com/google/libprotobuf-mutator.git 11 CMAKE_ARGS -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} 12 CMAKE_CACHE_ARGS -DCMAKE_C_COMPILER:FILEPATH=${CMAKE_C_COMPILER} 13 -DCMAKE_CXX_COMPILER:FILEPATH=${CMAKE_CXX_COMPILER}
|
/external/cpu_features/scripts/ |
D | run_integration.sh | 3 readonly SCRIPT_FOLDER=$(cd -P -- "$(dirname -- "$0")" && pwd -P) 7 readonly DEFAULT_CMAKE_ARGS=" -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON" 21 mkdir -p "${ARCHIVE_FOLDER}" 26 if [[ ! -d "${DESTINATION}" ]] ; then 28 test -f "${ARCHIVE_NAME}" || wget -q "${URL}" 30 rm -f "${ARCHIVE_NAME}" 37 local TARGETS=${QEMU_TARGETS:=$(echo "$ARCHES" | sed 's#$# #;s#\([^ ]*\) #\1-linux-user #g')} 39 if echo "${VERSION} ${TARGETS}" | cmp --silent ${QEMU_INSTALL}/.build -; then 47 rm -rf ${QEMU_INSTALL} 49 # Checking for a tarball before downloading makes testing easier :-) [all …]
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/scripts/ |
D | build_symbolizer.sh | 1 #!/bin/bash -eu 7 # Script compiles self-contained object file with symbolization code and injects 17 # libraries to symbolize code/data in-process. 24 # want to be doing "ld -r" followed by "objcopy -G" to create a relocatable 28 set -x 29 set -e 30 set -u 33 SRC_DIR=$(readlink -f $SCRIPT_DIR/..) 34 TARGE_DIR=$(readlink -f $1) 35 COMPILER_RT_SRC=$(readlink -f ${SCRIPT_DIR}/../../../..) [all …]
|
/external/oss-fuzz/projects/serenity/ |
D | build.sh | 1 #!/bin/bash -eu 8 # http://www.apache.org/licenses/LICENSE-2.0 19 mkdir -p build 21 cmake -GNinja \ 22 -DBUILD_LAGOM=ON \ 23 -DENABLE_OSS_FUZZ=ON \ 24 -DCMAKE_C_COMPILER=$CC \ 25 -DCMAKE_CXX_COMPILER=$CXX \ 26 -DCMAKE_CXX_FLAGS="$CXXFLAGS -DOSS_FUZZ=ON" \ 27 -DLINKER_FLAGS="$LIB_FUZZING_ENGINE" \
|
/external/oss-fuzz/projects/iroha/ |
D | build.sh | 1 #!/bin/bash -eu 8 # http://www.apache.org/licenses/LICENSE-2.0 23 …-DCMAKE_TOOLCHAIN_FILE=/opt/dependencies/scripts/buildsystems/vcpkg.cmake -DCMAKE_C_COMPILER=$CC -…
|
/external/libcxx/utils/google-benchmark/ |
D | .travis-libcxx-setup.sh | 4 curl -sSL https://cmake.org/files/v3.6/cmake-3.6.1-Linux-x86_64.sh -o install-cmake.sh 5 chmod +x install-cmake.sh 6 sudo ./install-cmake.sh --prefix=/usr/local --skip-license 9 git clone --depth=1 https://github.com/llvm-mirror/llvm.git llvm-source 10 git clone --depth=1 https://github.com/llvm-mirror/libcxx.git llvm-source/projects/libcxx 11 git clone --depth=1 https://github.com/llvm-mirror/libcxxabi.git llvm-source/projects/libcxxabi 14 if [ -z "$BUILD_32_BITS" ]; then 19 mkdir llvm-build && cd llvm-build 20 cmake -DCMAKE_C_COMPILER=${C_COMPILER} -DCMAKE_CXX_COMPILER=${COMPILER} \ 21 -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/usr \ [all …]
|
/external/llvm-project/libcxx/utils/google-benchmark/ |
D | .travis-libcxx-setup.sh | 4 curl -sSL https://cmake.org/files/v3.6/cmake-3.6.1-Linux-x86_64.sh -o install-cmake.sh 5 chmod +x install-cmake.sh 6 sudo ./install-cmake.sh --prefix=/usr/local --skip-license 9 git clone --depth=1 https://github.com/llvm-mirror/llvm.git llvm-source 10 git clone --depth=1 https://github.com/llvm-mirror/libcxx.git llvm-source/projects/libcxx 11 git clone --depth=1 https://github.com/llvm-mirror/libcxxabi.git llvm-source/projects/libcxxabi 14 if [ -z "$BUILD_32_BITS" ]; then 19 mkdir llvm-build && cd llvm-build 20 cmake -DCMAKE_C_COMPILER=${C_COMPILER} -DCMAKE_CXX_COMPILER=${COMPILER} \ 21 -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/usr \ [all …]
|
/external/google-benchmark/ |
D | .travis-libcxx-setup.sh | 4 curl -sSL https://cmake.org/files/v3.6/cmake-3.6.1-Linux-x86_64.sh -o install-cmake.sh 5 chmod +x install-cmake.sh 6 sudo ./install-cmake.sh --prefix=/usr/local --skip-license 9 git clone --depth=1 https://github.com/llvm-mirror/llvm.git llvm-source 10 git clone --depth=1 https://github.com/llvm-mirror/libcxx.git llvm-source/projects/libcxx 11 git clone --depth=1 https://github.com/llvm-mirror/libcxxabi.git llvm-source/projects/libcxxabi 14 if [ -z "$BUILD_32_BITS" ]; then 19 mkdir llvm-build && cd llvm-build 20 cmake -DCMAKE_C_COMPILER=${C_COMPILER} -DCMAKE_CXX_COMPILER=${COMPILER} \ 21 -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/usr \ [all …]
|
/external/llvm-project/libcxx/benchmarks/ |
D | CMakeLists.txt | 9 -Wno-unused-command-line-argument 10 -nostdinc++ 11 -isystem ${LIBCXX_SOURCE_DIR}/include 12 -L${LIBCXX_LIBRARY_DIR} 13 -Wl,-rpath,${LIBCXX_LIBRARY_DIR} 18 -L${LIBCXX_CXX_ABI_LIBRARY_PATH} 19 -Wl,-rpath,${LIBCXX_CXX_ABI_LIBRARY_PATH}) 21 list(APPEND BENCHMARK_LIBCXX_COMPILE_FLAGS -include "${LIBCXX_BINARY_DIR}/__config_site") 24 ExternalProject_Add(google-benchmark-libcxx 26 DEPENDS cxx cxx-headers [all …]
|
/external/clang/docs/ |
D | HowToSetupToolingForLLVM.rst | 7 of specific tools using this infrastructure (e.g. ``clang-check``). This 18 using a command line parameter ``-p`` or let Clang Tooling find this 31 .. code-block:: console 35 $ cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON path/to/llvm/sources 38 ``-DCMAKE_C_COMPILER=/path/to/clang -DCMAKE_CXX_COMPILER=/path/to/clang++``. 46 .. code-block:: console 48 $ ln -s $PWD/compile_commands.json path/to/llvm/source/ 52 .. code-block:: console 54 $ make check-all 60 you have a recent clang installed, you should have ``clang-check`` in [all …]
|
/external/llvm-project/clang/docs/ |
D | HowToSetupToolingForLLVM.rst | 7 of specific tools using this infrastructure (e.g. ``clang-check``). This 18 using a command line parameter ``-p`` or let Clang Tooling find this 31 .. code-block:: console 35 $ cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON path/to/llvm/sources 38 ``-DCMAKE_C_COMPILER=/path/to/clang -DCMAKE_CXX_COMPILER=/path/to/clang++``. 46 .. code-block:: console 48 $ ln -s $PWD/compile_commands.json path/to/llvm/source/ 52 .. code-block:: console 54 $ make check-all 60 you have a recent clang installed, you should have ``clang-check`` in [all …]
|
1234