Searched +full:cmake +full:- +full:toolchains (Results 1 – 25 of 34) sorted by relevance
12
| /third_party/skia/third_party/externals/tint/ |
| D | README.md | 9 * CMake (3.10.2 or later) 15 * `TINT_BUILD_SPV_READER` : enable the SPIR-V input reader (off by default) 17 * `TINT_BUILD_SPV_WRITER` : enable the SPIR-V output writer (on by default) 25 [depot_tools]: http://commondatastorage.googleapis.com/chrome-infra-docs/flat/depot_tools/docs/html… 37 # Fetch external dependencies and toolchains with gclient 41 ### Compiling using CMake + Ninja 43 mkdir -p out/Debug 45 cmake -GNinja ../.. 49 ### Compiling using CMake + make 51 mkdir -p out/Debug [all …]
|
| /third_party/glfw/docs/ |
| D | compile.md | 11 ## Using CMake {#compile_cmake} 13 GLFW behaves like most other libraries that use CMake so this guide mostly 16 compile_deps and @ref compile_options sections for GLFW-specific information. 18 GLFW uses [CMake](https://cmake.org/) to generate project files or makefiles 20 files with CMake and then use them to compile the GLFW library. 23 CMake](https://cmake.org/download/) from their site. 25 If you are on a Unix-like system such as Linux, FreeBSD or Cygwin or have 26 a package system like Fink, MacPorts or Homebrew, you can install its CMake 29 CMake is a complex tool and this guide will only show a few of the possible ways 30 to set up and compile GLFW. The CMake project has their own much more detailed [all …]
|
| /third_party/vk-gl-cts/external/amber/src/kokoro/scripts/linux/ |
| D | build_dawn-docker.sh | 9 # http://www.apache.org/licenses/LICENSE-2.0 17 set -e # fail on error 19 . /bin/using.sh # Declare the bash `using` function for configuring toolchains. 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 44 mkdir -p $ROOT_DIR/build/out/dawn-deps && cd $ROOT_DIR/build/out/dawn-deps [all …]
|
| D | build-docker.sh | 9 # http://www.apache.org/licenses/LICENSE-2.0 17 set -e # fail on error 19 . /bin/using.sh # Declare the bash `using` function for configuring toolchains. 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" [all …]
|
| /third_party/libwebsockets/READMEs/ |
| D | README.build-android.md | 3 If you have the ndk and prebuilt toolchains with that, you can simply build 4 lws library for your android app from one cmake and one make command. 7 to that first. But if it's a cmake project like mbedtls, that also is just a 8 matter of one cmake and one make. 16 `./contrib/cross-aarch64-android.cmake` toolchain file is shipped. You can 25 - /home/someone 26 - /home/someone/libwebsockets 27 - /home/someone/mbedtls 45 $ rm -f CMakeCache.txt && \ 46 cmake .. -DCMAKE_TOOLCHAIN_FILE=../libwebsockets/contrib/cross-aarch64-android.cmake \ [all …]
|
| /third_party/libwebsockets/contrib/ |
| D | cross-aarch64-android.cmake | 2 # CMake Toolchain file for crosscompiling Android / aarch64 4 # This can be used when running cmake in the following way: 6 # cmake .. -DCMAKE_TOOLCHAIN_FILE=contrib/cross-aarch64-android.cmake 14 set(CROSS_SYSROOT "${NDK}/platforms/android-${ANDROID_API_VER}/arch-${ABARCH1}") 15 set(BUILD_ARCH linux-x86_64) 20 set(TC_PATH ${NDK}/toolchains/llvm/prebuilt/${BUILD_ARCH}) 21 set(TC_BASE ${TC_PATH}/bin/${CMAKE_SYSTEM_PROCESSOR}-linux-android) 24 set(CMAKE_C_COMPILER "${TC_BASE}${ANDROID_API_VER}-clang") 25 set(CMAKE_CXX_COMPILER "${TC_BASE}${ANDROID_API_VER}-clang++") 30 # things according to their local policy, eg, Fedora is -O2 and Ubuntu is -O3 [all …]
|
| /third_party/libwebsockets/test-apps/android/app/src/main/jni/ |
| D | NativeLibs.mk | 28 # zlib-1.2.8.tar.gz 29 # openssl-1.0.2g.tar.gz 39 # At least on Debian, building openssl requires package xutils-dev 41 # installed, but xutils-dev is not that obvious in this case... 50 -include Application.mk 56 NDK_ROOT := /opt/Android/SDK/ndk-bundle 68 NDK_APP_ABI = armeabi armeabi-v7a arm64-v8a mips mips64 x86 x86_64 78 APP_PLATFORM = android-21 97 ZLIB_TGZ_SOURCE := zlib-$(ZLIB_VERSION).tar.gz 100 OPENSSL_TGZ_SOURCE := openssl-$(OPENSSL_VERSION).tar.gz [all …]
|
| /third_party/skia/third_party/externals/tint/kokoro/linux/ |
| D | docker.sh | 9 # https://www.apache.org/licenses/LICENSE-2.0 17 set -e # Fail on any error. 19 function show_cmds { set -x; } 26 if [ ! -z "${TASK_NAME}" ]; then 47 if [[ $ATTEMPT -ge $MAX_ATTEMPTS ]]; then 59 . /bin/using.sh # Declare the bash `using` function for configuring toolchains. 62 using go-1.14.4 # Speeds up ./tools/lint 63 using doxygen-1.8.18 67 mkdir -p ${SRC_DIR} 79 if [ "$BUILD_SYSTEM" == "cmake" ]; then [all …]
|
| /third_party/glslang/kokoro/linux-gcc-cmake/ |
| D | build-docker.sh | 36 set -e # Fail on any error. 38 . /bin/using.sh # Declare the bash `using` function for configuring toolchains. 40 set -x # Display commands being run. 42 using cmake-3.17.2 43 using gcc-9 44 using ninja-1.10.0 49 cmake "$ROOT_DIR" -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="$(pwd)/install" -DBUIL…
|
| /third_party/glslang/kokoro/linux-clang-cmake/ |
| D | build-docker.sh | 36 set -e # Fail on any error. 38 . /bin/using.sh # Declare the bash `using` function for configuring toolchains. 40 set -x # Display commands being run. 42 using cmake-3.17.2 43 using clang-10.0.0 44 using ninja-1.10.0 49 cmake "$ROOT_DIR" -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="$(pwd)/install" -DBUIL…
|
| /third_party/skia/third_party/externals/swiftshader/third_party/marl/kokoro/ubuntu/ |
| D | docker.sh | 9 # https://www.apache.org/licenses/LICENSE-2.0 17 set -e # Fail on any error. 19 function show_cmds { set -x; } 29 . /bin/using.sh # Declare the bash `using` function for configuring toolchains. 32 git submodule update --init 35 using gcc-9 # Always update gcc so we get a newer standard library. 37 if [ "$BUILD_SYSTEM" == "cmake" ]; then 38 using cmake-3.17.2 41 BUILD_DIR=/tmp/marl-build 45 COMMON_CMAKE_FLAGS+=" -DCMAKE_BUILD_TYPE=${BUILD_TYPE}" [all …]
|
| /third_party/libuv/.github/workflows/ |
| D | CI-win.yml | 1 name: CI-win 6 - '**' 7 - '!docs/**' 8 - '!src/unix/**' 9 - '!.**' 10 - '.github/workflows/CI-win.yml' 13 - v[0-9].* 14 - master 17 build-windows: 18 runs-on: windows-${{ matrix.config.server }} [all …]
|
| /third_party/spirv-tools/kokoro/scripts/linux/ |
| D | build-docker.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 19 set -e 21 set -x 26 git config --global --add safe.directory $ROOT_DIR 28 . /bin/using.sh # Declare the bash `using` function for configuring toolchains. 31 using clang-10.0.0 33 using gcc-9 40 if [[ -d "$dir" ]]; then 41 rm -fr "$dir" 46 if [ $TOOL != "cmake-smoketest" ]; then [all …]
|
| /third_party/skia/third_party/externals/spirv-tools/kokoro/scripts/linux/ |
| D | build-docker.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 19 set -e 21 set -x 23 . /bin/using.sh # Declare the bash `using` function for configuring toolchains. 26 using clang-10.0.0 28 using gcc-9 36 if [[ ! -d "$dir" ]]; then 43 if [[ -d "$dir" ]]; then 44 rm -fr "$dir" 49 clone_if_missing https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers --depth=1 [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/scripts/linux/ |
| D | build-docker.sh | 8 # http://www.apache.org/licenses/LICENSE-2.0 19 set -e 21 set -x 23 . /bin/using.sh # Declare the bash `using` function for configuring toolchains. 26 using clang-10.0.0 28 using gcc-9 36 if [[ ! -d "$dir" ]]; then 43 if [[ -d "$dir" ]]; then 44 rm -fr "$dir" 49 clone_if_missing https://github.com/KhronosGroup/SPIRV-Headers external/spirv-headers --depth=1 [all …]
|
| /third_party/skia/third_party/externals/dawn/src/dawn_node/ |
| D | README.md | 3 Note: This code is currently WIP. There are a number of [known issues](#known-issues). 9 - [CMake 3.10](https://cmake.org/download/) or greater 10 - [Go 1.13](https://golang.org/dl/) or greater 16 [install depot_tools]: http://commondatastorage.googleapis.com/chrome-infra-docs/flat/depot_tools/d… 27 cp scripts/standalone-with-node.gclient .gclient 29 # Fetch external dependencies and toolchains with gclient 35 Currently, the node bindings can only be built with CMake: 38 mkdir <build-output-path> 39 cd <build-output-path> 40 cmake <dawn-root-path> -GNinja -DDAWN_BUILD_NODE_BINDINGS=1 -DDAWN_ENABLE_PIC=1 [all …]
|
| /third_party/mindspore/mindspore-src/source/mindspore/lite/ |
| D | build_lite.sh | 2 # Copyright 2021-2022 Huawei Technologies Co., Ltd 8 # http://www.apache.org/licenses/LICENSE-2.0 17 set -e 21 echo -e "\e[31mANDROID_NDK=$ANDROID_NDK \e[0m" 23 …echo -e "\e[31mplease set ANDROID_NDK in environment variable for example: export ANDROID_NDK=/roo… 33 cp -r ${HI35XX_SDK_PATH}/third_patry ${BASEPATH}/mindspore/lite/providers/nnie 42 # ${CPACK_PACKAGE_DIR}/${pkg_name} is the output of package_lite.cmake(make package) 46 local ms_pack="mindspore-lite-${VERSION_STR}" 49 local linux_x86_path="${cpack_dir}/Linux/TGZ/${ms_pack}/linux-x64" 50 local linux_cortex_path="${cpack_dir}/Linux/TGZ/${ms_pack}/none-cortex-m7" [all …]
|
| /third_party/skia/infra/bots/recipe_modules/build/ |
| D | default.py | 2 # Use of this source code is governed by a BSD-style license that can be 13 '--chrome-dir', chrome_dir, 14 '--output-dir', out, 15 '--extra-gn-args', 'mac_sdk_min="10.13"', 16 '--no-sync', '--no-hooks', '--make-output-dir']) 20 """Build SwiftShader with CMake. 31 '-DSWIFTSHADER_BUILD_TESTS=OFF', 32 '-DSWIFTSHADER_WARNINGS_AS_ERRORS=OFF', 33 '-DREACTOR_ENABLE_MEMORY_SANITIZER_INSTRUMENTATION=OFF', # Way too slow. 43 # CMakeLists.txt at a harmless non-existent path. [all …]
|
| /third_party/mbedtls/ |
| D | README.md | 6 Mbed TLS includes a reference implementation of the [PSA Cryptography API](#psa-cryptography-api). … 9 ------------- 11 … more programmatic way using the Python 3 script `scripts/config.py` (use `--help` for usage instr… 13 …l environment variables such as `CC` and `CFLAGS` when using the Make and CMake build system (see … 15 We provide some non-standard configurations focused on specific use cases in the `configs/` directo… 18 ------------- 20 The main Mbed TLS documentation is available via [ReadTheDocs](https://mbed-tls.readthedocs.io/). 22 …or the PSA Cryptography API is available [on GitHub](https://arm-software.github.io/psa-api/crypto… 24 To generate a local copy of the library documentation in HTML format, tailored to your compile-time… 33 --------- [all …]
|
| /third_party/skia/third_party/externals/libjpeg-turbo/ |
| D | BUILDING.md | 1 Building libjpeg-turbo 6 ------------------ 11 - [CMake](http://www.cmake.org) v2.8.12 or later 13 - [NASM](http://www.nasm.us) or [YASM](http://yasm.tortall.net) 14 (if building x86 or x86-64 SIMD extensions) 19 - NOTE: Currently, if it is desirable to hide the SIMD function symbols in 21 libjpeg-turbo, then NASM 2.14 or later or YASM must be used when 22 building libjpeg-turbo. 36 ARCH=`uname -m` 37 rpmbuild --rebuild nasm-{version}.src.rpm [all …]
|
| D | ChangeLog.md | 7 non-GCC-compatible compilers for Un*x/Arm platforms. 9 2. Fixed a regression introduced by 2.1 beta1[13] that prevented the Arm 32-bit 11 included `-mfloat-abi=softfp` or `-mfloat-abi=hard`. 15 Android systems when running AArch32/Thumb builds of libjpeg-turbo built with 18 4. Added a command-line argument (`-copy icc`) to jpegtran that causes it to 22 5. libjpeg-turbo should now build and run on CHERI-enabled architectures, which 26 64-bit SSE2 Huffman encoder when attempting to losslessly transform a 27 specially-crafted malformed JPEG image. 40 decompress a specially-crafted malformed progressive JPEG image caused the 47 4. Fixed a floating point exception (CVE-2021-20205) that occurred when [all …]
|
| /third_party/unity/ |
| D | README.md | 3 __Copyright (c) 2007 - 2023 Unity Project by Mike Karlesky, Mark VanderVoord, and Greg Williams__ 6 …ity Test is a unit testing framework built for C, with a focus on working with embedded toolchains. 10 You may use any compiler you wish, and may use most existing build systems including Make, CMake, e… 138 The bit is specified 0-31 for a 32-bit integer. 143 The bit is specified 0-31 for a 32-bit integer. 182 Compare two null-terminate strings. 192 Compare two null-terminate strings.
|
| /third_party/skia/third_party/externals/libpng/ |
| D | CMakeLists.txt | 3 # Copyright (c) 2018-2019 Cosmin Truta 4 # Copyright (c) 2007,2009-2018 Glenn Randers-Pehrson 6 # Revised by Roger Lowman, 2009-2010 7 # Revised by Clifford Yapp, 2011-2012,2017 38 # Useful if zlib is being built alongside this as a sub-project. 79 if(index EQUAL -1) 90 add_definitions(-DPNG_ARM_NEON_OPT=2) 92 add_definitions(-DPNG_ARM_NEON_CHECK_SUPPORTED) 95 add_definitions(-DPNG_ARM_NEON_OPT=0) 108 if(index EQUAL -1) [all …]
|
| /third_party/libpng/ |
| D | huawei_libpng_CMakeList.patch | 1 diff --git a/CMakeLists.txt b/CMakeLists.txt 3 --- a/CMakeLists.txt 5 @@ -1,1040 +1,26 @@ 6 -# CMakeLists.txt 7 - 8 -# Copyright (c) 2018-2022 Cosmin Truta 9 -# Copyright (c) 2007,2009-2018 Glenn Randers-Pehrson 10 -# Written by Christian Ehrlicher, 2007 11 -# Revised by Roger Lowman, 2009-2010 12 -# Revised by Clifford Yapp, 2011-2012,2017 [all …]
|
| /third_party/curl/ |
| D | CHANGES | 13 - RELEASE-NOTES: synced 17 - THANKS: new contributors from 8.5.0 21 - cd2nroff: use perl 'strict' and 'warnings' 23 - Use strict and warnings pragmas. 25 - If open() fails then show the reason. 27 - Set STDIN io layer :crlf so that input is properly read on Windows. 29 - When STDIN is used as input, the filename $f is now set to "STDIN". 38 - cd2nroff: fix duplicate output issue 40 Assisted-by: Jay Satiro 41 Fixes https://github.com/curl/curl-www/issues/321 [all …]
|
12