/external/capstone/ |
D | COMPILE.TXT | 2 Linux, *BSD & Solaris. We also show steps to cross-compile for Microsoft Windows. 12 *-*-*-*-*-* 30 - CAPSTONE_ARCHS: specify list of architectures to compiled in. 31 - CAPSTONE_USE_SYS_DYN_MEM: change this if you have your own dynamic memory management. 32 - CAPSTONE_DIET: use this to make the output binaries more compact. 33 - CAPSTONE_X86_REDUCE: another option to make X86 binary smaller. 34 - CAPSTONE_X86_ATT_DISABLE: disables AT&T syntax on x86. 35 - CAPSTONE_STATIC: build static library. 36 - CAPSTONE_SHARED: build dynamic (shared) library. 56 - To compile for current platform, run: [all …]
|
D | make.sh | 4 # By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 6 # Note: to cross-compile "nix32" on Linux, package gcc-multilib is required. 9 [ ${MAKE_JOBS} -lt 1 ] && \ 12 # build Android lib for only one supported architecture 14 if [ -z "$NDK" ]; then 19 HOSTOS=$(uname -s | tr 'LD' 'ld') 20 HOSTARCH=$(uname -m) 27 [ -n "$APILEVEL" ] || APILEVEL="android-14" # default to ICS 28 CROSS=arm-linux-androideabi 31 [ -n "$APILEVEL" ] || APILEVEL="android-21" # first with arm64 [all …]
|
/external/skia/site/docs/user/ |
D | build.md | 1 --- 2 title: 'How to build Skia' 3 linkTitle: 'How to build Skia' 6 --- 14 - [`is_official_build` and Third-party Dependencies](#third-party) 15 - [Supported and Preferred Compilers](#compilers) 16 - [Quickstart](#quick) 17 - [Android](#android) 18 - [ChromeOS](#cros) 19 - [Mac](#macos) [all …]
|
/external/skqp/site/user/ |
D | build.md | 1 How to build Skia 10 `is_official_build` and Third-party Dependencies 11 ------------------------------------------------ 16 This mode configures Skia in a way that's suitable to ship: an optimized build 17 with no debug symbols, dynamically linked against its third-party dependencies 20 In contrast, the developer-oriented default is an unoptimized build with full 21 debug symbols and all third-party dependencies built from source and embedded 24 Skia offers several features that make use of third-party libraries, like 25 libpng, libwebp, or libjpeg-turbo to decode images, or ICU and sftnly to subset 26 fonts. All these third-party dependencies are optional and can be controlled [all …]
|
/external/rust/crates/libloading/.github/workflows/ |
D | libloading.yml | 5 paths-ignore: 6 - '*.mkd' 7 - 'LICENSE' 12 native-test: 13 runs-on: ${{ matrix.os }} 15 fail-fast: false 18 os: [ubuntu-latest, windows-latest, macOS-latest] 19 timeout-minutes: 20 21 - uses: actions/checkout@v2 22 - name: Install Rust ${{ matrix.rust_toolchain }} [all …]
|
/external/tflite-support/ |
D | .bazelrc | 6 build --apple_platform_type=macos 8 # Enable using platform specific build settings 9 build --enable_platform_specific_config 12 common --experimental_repo_remote_exec 15 build --java_toolchain=//third_party/toolchains/java:tf_java_toolchain 16 build --host_java_toolchain=//third_party/toolchains/java:tf_java_toolchain 18 # Suppress C++ compiler warnings, otherwise build logs become 10s of MBs. 19 build:android --copt=-w 20 build:linux --copt=-w 21 build:macos --copt=-w [all …]
|
D | README.md | 4 models onto mobile devices. It works cross-Platform and is supported on Java, 8 * **TFLite Support Library**: a cross-platform library that helps to 15 * **TFLite Support Task Library**: a flexible and ready-to-use library for 17 client can also build their own native/Android/iOS inference API on Task 24 * **Provide ready-to-use APIs for users to interact with the model**. \ 26 model interface (contains ready-to-use APIs) simply by passing the model to 36 * **Provide the flexibility to customize model interface and build inference 47 ## Build Instructions 49 We use Bazel to build the project. When you're building the Java (Android) 61 [new Github issue](https://github.com/tensorflow/tflite-support/issues/new), or [all …]
|
/external/llvm-project/lldb/docs/use/ |
D | remote.rst | 9 To enable remote debugging, LLDB employs a client-server architecture. The 11 client and server communicate using the gdb-remote protocol, usually 13 the LLDB-specific extensions are documented in docs/lldb-gdb-remote.txt file 14 inside LLDB source repository. Besides the gdb-remote stub, the server part of 30 --------------------------------- 42 lldb-server binary. This binary combines the functionality of the platform and 43 gdb-remote stub. A single binary facilitates deployment and reduces code size, 44 since the two functions share a lot of code. The lldb-server binary is also 47 lldb. On macOS and iOS, the remote-gdb functionality is implemented by the 48 debugserver binary, which you will need to deploy alongside lldb-server. [all …]
|
/external/deqp/framework/delibs/cmake/ |
D | toolchain-ios.cmake | 3 # It has been altered for iOS development 9 # OS - the default, used to build for iPhone and iPad physical devices, which have an arm arch. 10 # SIMULATOR - used to build for the Simulator platforms, which have an x86 arch. 18 # In this case it will always be the most up-to-date SDK found in the CMAKE_IOS_DEVELOPER_ROOT pa… 26 set (IOS True) variable 29 set (CMAKE_OSX_DEPLOYMENT_TARGET "" CACHE STRING "Force unset of the deployment target for iOS" FOR… 31 # Determine the cmake host system version so we know where to find the iOS SDKs 34 exec_program(uname ARGS -r OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_VERSION) 35 …string (REGEX REPLACE "^([0-9]+)\\.([0-9]+).*$" "\\1" DARWIN_MAJOR_VERSION "${CMAKE_HOST_SYSTEM_VE… 38 # Force the compilers to gcc for iOS [all …]
|
/external/libaom/libaom/ |
D | README.md | 4 1. [Building the lib and applications](#building-the-library-and-applications) 5 - [Prerequisites](#prerequisites) 6 - [Get the code](#get-the-code) 7 - [Basics](#basic-build) 8 - [Configuration options](#configuration-options) 9 - [Dylib builds](#dylib-builds) 10 - [Debugging](#debugging) 11 - [Cross compiling](#cross-compiling) 12 - [Sanitizer support](#sanitizers) 13 - [MSVC builds](#microsoft-visual-studio-builds) [all …]
|
/external/llvm-project/llvm/docs/ |
D | TestSuiteGuide.md | 1 test-suite Guide 5 ---------- 8 from an LLVM build: 11 % <path to llvm build>/bin/llvm-lit --version 22 % pip install svn+https://llvm.org/svn/llvm-project/llvm/trunk/utils/lit 23 % lit --version 27 2. Check out the `test-suite` module with: 30 % git clone https://github.com/llvm/llvm-test-suite.git test-suite 33 3. Create a build directory and use CMake to configure the suite. Use the 35 to choose a typical build configuration: [all …]
|
/external/libffi/.travis/ |
D | build.sh | 3 set -x 5 if [ -z ${QEMU_CPU+x} ]; then 8 export SET_QEMU_CPU="-e QEMU_CPU=${QEMU_CPU}" 13 if test -z "$DOCKER"; then 24 …curl -u ${CFARM_AUTH} https://cfarm-test-libffi-libffi.apps.home.labdroid.net/test?host=${HOST}\&c… 26 echo $(tail build.log | grep '^==LOGFILE==') 27 echo $(tail build.log | grep '^==LOGFILE==' | cut -b13-) 29 curl -u ${CFARM_AUTH} "$(tail build.log | grep '^==LOGFILE==' | cut -b13-)" > libffi.log 33 ./rlgl e --id=$ID --policy=https://github.com/libffi/rlgl-policy.git libffi.log 40 ./configure ${HOST+--host=$HOST} ${CONFIGURE_OPTIONS} [all …]
|
/external/freetype/builds/cmake/ |
D | iOS.cmake | 1 # iOS.cmake 3 # Copyright (C) 2014-2020 by 17 # altered for iOS development. 21 # ------- 28 # OS - the default, used to build for iPhone and iPad physical devices, 30 # SIMULATOR - used to build for the Simulator platforms, which have an 44 # up-to-date SDK found in the CMAKE_IOS_DEVELOPER_ROOT path. If you 50 # ------ 63 # iOS environment. Thanks to the `android-cmake' project for providing 72 set(IOS True) variable [all …]
|
/external/libyuv/files/docs/ |
D | getting_started.md | 3 How to get and build the libyuv code. 5 ## Pre-requisites 7 …need to have depot tools installed: https://www.chromium.org/developers/how-tos/install-depot-tools 14 gclient config --name src https://chromium.googlesource.com/libyuv/libyuv 30 For iOS add `;target_os=['ios'];` to your OSX .gclient and run `gclient sync.` 62 call gn gen out\Release "--args=is_debug=false target_cpu=\"x64\"" 63 call gn gen out\Debug "--args=is_debug=true target_cpu=\"x64\"" 64 ninja -v -C out\Release 65 ninja -v -C out\Debug 67 call gn gen out\Release "--args=is_debug=false target_cpu=\"x86\"" [all …]
|
/external/tensorflow/tensorflow/lite/g3doc/ |
D | _book.yaml | 2 - name: "Install" 5 - include: /install/_toc.yaml 7 - name: "Learn" 11 - include: /learn/_menu_toc.yaml 15 - name: "Tutorials" 17 - title: "TensorFlow Lite Tutorials" 20 - heading: "Vision" 21 - title: "Recognize handwritten digits" 22 path: https://codelabs.developers.google.com/codelabs/digit-classifier-tflite/ 24 - title: "Recognize flowers on Android" [all …]
|
/external/curl/docs/ |
D | INSTALL.md | 7 package. This document describes how to compile, build and install curl and 16 ./bootstrap-vcpkg.sh 25 the `GIT-INFO` file in the root directory for specific instructions on how to 42 ./configure --help 47 ./configure --prefix=/path/to/curl/tree 53 ./configure --prefix=$HOME 62 ./configure --with-ssl 65 you have pkg-config installed, set the pkg-config path first, like this: 67 env PKG_CONFIG_PATH=/opt/OpenSSL/lib/pkgconfig ./configure --with-ssl 69 Without pkg-config installed, use this: [all …]
|
/external/tensorflow/ |
D | .bazelrc | 2 # This file tries to group and simplify build options for TensorFlow 4 # ----CONFIG OPTIONS---- 12 # iOS options: 13 # ios: 25 # c++17: Build with C++17 options (links with libc++) 26 # c++1z: Build with C++17 options (links with libc++) 27 # c++17_gcc: Build with C++17 options (links with stdlibc++) 28 # c++1z_gcc: Build with C++17 options (links with stdlibc++) 29 # avx_linux: Build with avx instruction set on linux. 30 # avx2_linux: Build with avx2 instruction set on linux. [all …]
|
/external/boringssl/src/ |
D | BUILDING.md | 3 ## Build Prerequisites 5 The standalone CMake build is primarily intended for developers. If embedding 6 BoringSSL into another project with a pre-existing build system, see 9 Unless otherwise noted, build tools must at most five years old, matching 19 to `PATH`, which can confuse some build tools when identifying the compiler 24 * Building with [Ninja](https://ninja-build.org/) instead of Make is 35 Recent versions of GCC (4.8+) and Clang should work on non-Windows 50 mkdir build 51 cd build 52 cmake -GNinja .. [all …]
|
/external/tensorflow/tensorflow/lite/g3doc/guide/ |
D | roadmap.md | 20 * Pre-built libraries available via Bintray (Android) and Cocoapods (iOS) 24 * **Pre-and-post processing support libraries and codegen tool** 25 * Ready-to-use API building blocks for common ML tasks 26 * Support more models (e.g. NLP) and more platforms (e.g. iOS) 30 * **Control Flow & Training on-device** 31 * Support for training on-device, focused on personalization and transfer 36 * Support more tasks, including object detection and BERT-based NLP tasks 42 prebuilt binaries and creating user-friendly workflows for users who 43 want to build from source code. 46 * Improve cross-platform support and enable more tasks for iOS. [all …]
|
/external/tensorflow/tensorflow/lite/g3doc/inference_with_metadata/task_library/ |
D | overview.md | 3 TensorFlow Lite Task Library contains a set of powerful and easy-to-use 4 task-specific libraries for app developers to create ML experiences with TFLite. 5 It provides optimized out-of-box model interfaces for popular machine learning 8 performance and usability. Task Library works cross-platform and is supported on 13 * **Clean and well-defined APIs usable by non-ML-experts** \ 15 easy-to-use APIs in the Task library as building blocks to help you easily 29 easily build your own Android/iOS inference APIs. 50 * Extend Task API infrastructure and build
|
/external/libchrome/base/files/ |
D | file_path_watcher.cc | 2 // Use of this source code is governed by a BSD-style license that can be 5 // Cross platform methods for FilePathWatcher. See the various platform 11 #include "build/build_config.h" 17 impl_->Cancel(); in ~FilePathWatcher() 26 // FSEvents isn't available on iOS. in RecursiveWatchAvailable() 43 return impl_->Watch(path, recursive, callback); in Watch()
|
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/ |
D | configure.ac | 3 AC_INIT([c-ares], [1.15.0], 4 [c-ares mailing list: http://cool.haxx.se/mailman/listinfo/c-ares]) 30 if test -z "$SED" || test "$SED" = "not_found"; then 39 if test -z "$GREP" || test "$GREP" = "not_found"; then 46 if echo a | ($GREP -E '(a|b)') >/dev/null 2>&1; then 48 EGREP="$GREP -E" 54 if test -z "$EGREP" || test "$EGREP" = "not_found"; then 61 if test -z "$AR"; then 65 if test -z "$AR" || test "$AR" = "not_found"; then 73 dnl Remove non-configure distributed ares_build.h [all …]
|
/external/rust/crates/grpcio-sys/ |
D | build.rs | 1 // Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0. 16 fn probe_library(library: &str, cargo_metadata: bool) -> Library { in probe_library() 23 Err(e) => panic!("can't find library {} via pkg-config: {:?}", library, e), in probe_library() 32 "grpc/third_party/abseil-cpp", in prepare_grpc() 40 update --init --recursive` first to build the project.", in prepare_grpc() 47 fn is_directory_empty<P: AsRef<Path>>(p: P) -> Result<bool, io::Error> { in is_directory_empty() 52 fn trim_start<'a>(s: &'a str, prefix: &str) -> Option<&'a str> { in trim_start() 63 let build_dir = format!("{}/build", env::var("OUT_DIR").unwrap()); in clean_up_stale_cache() 80 // See https://gitlab.kitware.com/cmake/cmake/-/issues/18959. in clean_up_stale_cache() 86 fn build_grpc(cc: &mut cc::Build, library: &str) { in build_grpc() argument [all …]
|
/external/rust/crates/quiche/ |
D | README.md | 5 …img.shields.io/github/license/cloudflare/quiche.svg)](https://opensource.org/licenses/BSD-2-Clause) 6 [![build](https://travis-ci.com/cloudflare/quiche.svg?branch=master)](https://travis-ci.com/cloudfl… 22 [post]: https://blog.cloudflare.com/enjoy-a-slice-of-quic-and-rust/ 25 ---------------- 29 quiche powers Cloudflare edge network's [HTTP/3 support][cloudflare-http3]. 33 quiche can be [integrated into curl][curl-http3] to provide support for HTTP/3. 37 quiche can be [integrated into NGINX][nginx-http3] using an unofficial patch to 40 [cloudflare-http3]: https://blog.cloudflare.com/http3-the-past-present-and-future/ 41 [curl-http3]: https://github.com/curl/curl/blob/master/docs/HTTP3.md#quiche-version 42 [nginx-http3]: https://github.com/cloudflare/quiche/tree/master/extras/nginx [all …]
|
/external/rust/crates/nix/ |
D | Cargo.toml.orig | 6 authors = ["The nix-rust Project Developers"] 7 repository = "https://github.com/nix-rust/nix" 9 categories = ["os::unix-apis"] 14 "/Cross.toml", 21 "x86_64-unknown-linux-gnu", 22 "aarch64-linux-android", 23 "x86_64-apple-darwin", 24 "aarch64-apple-ios", 25 "x86_64-unknown-freebsd", 26 "x86_64-unknown-openbsd", [all …]
|