Home
last modified time | relevance | path

Searched +full:use +full:- +full:cross (Results 1 – 25 of 1228) sorted by relevance

12345678910>>...50

/external/llvm/include/llvm/IR/
DTypeBuilder.h1 //===---- llvm/TypeBuilder.h - Builder for LLVM types -----------*- C++ -*-===//
8 //===----------------------------------------------------------------------===//
13 //===----------------------------------------------------------------------===//
24 /// TypeBuilder - This provides a uniform API for looking up types
25 /// known at compile time. To support cross-compilation, we define a
31 /// to guarantee that its result is suitable for cross-compilation.
33 /// 5 arguments here, but to use this class with your own types,
48 /// You'll want to use
87 // Types for use with cross-compilable TypeBuilders. These correspond
88 // exactly with an LLVM-native type.
[all …]
/external/toybox/mkroot/
DREADME1 mkroot - simple linux system builder
3 Compiles a toybox-based root filesystem and kernel that can boot under qemu.
6 launched via ./run-qemu.sh (which assumes you have QEMU installed, KVM
12 --- Quick Start
15 and one or more musl cross compiler toolchain(s) in the "ccc" directory:
19 $ wget https://landley.net/bin/toolchains/latest/i686-linux-musl-cross.tar.xz
21 $ tar xvJCf ccc i686-linux-musl-cross.tar.xz
25 $ mkroot/mkroot.sh CROSS=i686 LINUX=linux
26 $ root/i686/run-qemu.sh
31 --- Building without a cross compiler (warning: glibc sucks)
[all …]
Dmkroot.sh3 # ------------------------------ Part 1: Setup -------------------------------
6 [ -z "$NOCLEAR" ] && exec env -i NOCLEAR=1 HOME="$HOME" PATH="$PATH" \
7 LINUX="$LINUX" CROSS="$CROSS" CROSS_COMPILE="$CROSS_COMPILE" "$0" "$@"
9 ! [ -d mkroot ] && echo "Run mkroot/mkroot.sh from toybox source dir." && exit 1
13 [ "${i/=/}" != "$i" ] && export "$i" || { [ "$i" != -- ] && PKG="$PKG $i"; }
20 announce() { printf "\033]2;$CROSS $*\007" 2>/dev/null >/dev/tty; printf "\n=== $*\n";}
23 # ----- Are we cross compiling (via CROSS_COMPILE= or CROSS=)
25 if [ -n "$CROSS_COMPILE" ]; then
27 [ -z "${X:=$(command -v "$CROSS_COMPILE"cc)}" ] && die "no ${CROSS_COMPILE}cc"
28 CROSS_COMPILE="$(realpath -s "${X%cc}")"
[all …]
/external/libwebsockets/READMEs/
DREADME.build.md8 ./bootstrap-vcpkg.sh
16 CMake is a multi-platform build tool that can generate build files for many
19 CMake also allows/recommends you to do "out of source"-builds, that is,
27 - Windows (Visual Studio)
28 - Windows (MinGW)
29 - Linux (x86 and ARM)
30 - OSX
31 - NetBSD
67 project file. All examples in this file assumes you use ".."
71 as --prefix= with autotools. It defaults to /usr/local.
[all …]
/external/freetype/docs/
DINSTALL.CROSS1 This document contains instructions on how to cross-build the FreeType
4 file `INSTALL.UNIX' for required tools and the basic self-building
9 -----------------
11 For self-building the FreeType library on a Unix system, GNU Make
15 The GNU C compiler to cross-build the target system is required.
16 Currently, using a non-GNU cross compiler is untested. The cross
19 system is Linux/MIPS, the cross compiler should be installed with
20 the name `mips-ip22-linuxelf-gcc'.
22 A C compiler for a self-build is required also, to build a tool
23 (`apinames') that is executed during the build procedure. Non-GNU
[all …]
/external/capstone/
DCOMPILE.TXT2 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 …]
/external/mesa3d/.gitlab-ci/meson/
Dbuild.sh5 section_switch meson-cross-file "meson: cross file generate"
7 set -e
8 set -o xtrace
10 CROSS_FILE=/cross_file-"$CROSS".txt
12 export PATH=$PATH:$PWD/.gitlab-ci/build
17 "c = 'compiler-wrapper-${CC:-gcc}.sh'" \
18 "cpp = 'compiler-wrapper-${CXX:-g++}.sh'"
20 # We need to control the version of llvm-config we're using, so we'll
21 # tweak the cross file or generate a native file to do so.
22 if test -n "$LLVM_VERSION"; then
[all …]
/external/clang/docs/
DCrossCompilation.rst2 Cross-compilation using Clang
9 for cross-compiling your code to a different architecture. It assumes you
17 `instructions for cross-compiling LLVM itself
21 related to cross-compilation, and what main compiler options Clang provides
22 for performing cross-compilation.
24 Cross compilation issues
33 On the other hand, Clang/LLVM is natively a cross-compiler, meaning that
34 one set of programs can compile to all targets by setting the ``-target``
40 But, as is true to any cross-compiler, and given the complexity of
47 ``compiler-rt``, ``libcxx``, ``libgcc``, ``libm``, etc), so you'll have to
[all …]
/external/tensorflow/tensorflow/lite/tools/pip_package/
DREADME.md3 Many users would like to deploy TensorFlow lite interpreter and use it from
11 sudo apt install swig libjpeg-dev zlib1g-dev python3-dev python3-numpy
19 pip install --upgrade <wheel>
23 the following command will cross-compile tflite-runtime package for python2.7
27 make BASE_IMAGE=debian:buster PYTHON=python TENSORFLOW_TARGET=rpi docker-build
28 make BASE_IMAGE=debian:buster PYTHON=python3 TENSORFLOW_TARGET=rpi docker-build
31 Another option is to cross-compile for python3.5 (from Debian Stretch) on ARM64
35 make BASE_IMAGE=debian:stretch PYTHON=python3 TENSORFLOW_TARGET=aarch64 docker-build
42 make BASE_IMAGE=ubuntu:18.04 PYTHON=python3 TENSORFLOW_TARGET=native docker-build
49 make BASE_IMAGE=debian:buster PYTHON=python3 TENSORFLOW_TARGET=rpi BUILD_DEB=y docker-build
[all …]
/external/mesa3d/docs/
Dmeson.rst5 ---------------
16 <https://mesonbuild.com/Getting-meson.html>`__ to install the
22 Unix-like OSes
28 .. code-block:: sh
30 sudo apt-get install meson # Ubuntu
34 .. code-block:: sh
41 You'll also need `Ninja <https://ninja-build.org/>`__. If it's not
42 already installed, use apt-get or dnf to install the *ninja-build*
49 is because we use Python for generating code, and rely on external
50 modules (Mako). You also need pkg-config (a hard dependency of Meson),
[all …]
/external/llvm/docs/
DHowToCrossCompileLLVM.rst2 How To Cross-Compile Clang/LLVM using Clang/LLVM
11 For more information on how to use Clang as a cross-compiler,
16 Cross-Compiling from x86_64 to ARM
19 In this use case, we'll be using CMake and Ninja, on a Debian-based Linux
20 system, cross-compiling from an x86_64 host (most Intel and AMD chips
21 nowadays) to a hard-float ARM target (most ARM targets nowadays).
26 * ``ninja-build`` (from backports in Ubuntu)
27 * ``gcc-4.7-arm-linux-gnueabihf``
28 * ``gcc-4.7-multilib-arm-linux-gnueabihf``
29 * ``binutils-arm-linux-gnueabihf``
[all …]
/external/protobuf/kokoro/release/ruby/macos/ruby/
Druby_build_environment.sh3 set -ex
6 sudo chown -R $(whoami) $HOME/.rvm/
7 sudo chown -R $(whoami) /Library/Ruby/
11 curl -sSL https://rvm.io/mpapis.asc | gpg --import -
12 curl -sSL https://rvm.io/pkuczynski.asc | gpg --import -
17 curl -sSL https://raw.githubusercontent.com/rvm/rvm/master/binscripts/rvm-installer | bash -s maste…
20 set -e # rvm commands are very verbose
22 rvm use 2.5.0
23 gem install rake-compiler --no-document
24 gem install bundler --no-document
[all …]
/external/cronet/third_party/protobuf/kokoro/release/ruby/macos/ruby/
Druby_build_environment.sh3 set -ex
6 sudo chown -R $(whoami) $HOME/.rvm/
7 sudo chown -R $(whoami) /Library/Ruby/
11 curl -sSL https://rvm.io/mpapis.asc | gpg --import -
12 curl -sSL https://rvm.io/pkuczynski.asc | gpg --import -
17 curl -sSL https://raw.githubusercontent.com/rvm/rvm/master/binscripts/rvm-installer | bash -s maste…
20 set -e # rvm commands are very verbose
22 rvm use 2.5.0
23 gem install rake-compiler --no-document
24 gem install bundler --no-document
[all …]
/external/bazelbuild-rules_rust/crate_universe/tools/cross_installer/src/
Dmain.rs1 //! A utility for cross compiling binaries using Cross
3 use std::path::{Path, PathBuf};
4 use std::process::{self, Command};
5 use std::{env, fs};
7 use clap::Parser;
22 /// https://github.com/rust-embedded/cross/pull/597
25 let dest = workspace_root.join("Cross.toml"); in prepare_workspace()
26 println!("{src:?} -> {dest:?}"); in prepare_workspace()
29 // Unfortunately, cross runs into issues when cross compiling incramentally. in prepare_workspace()
41 let cross = env::current_dir().unwrap().join(env!("CROSS_BIN")); in execute_cross() localVariable
[all …]
/external/rust/crates/minimal-lexical/.github/workflows/
DCross.yml1 name: Cross
9 cross:
11 runs-on: ubuntu-latest
13 fail-fast: false
17 - aarch64-linux-android
18 - arm-linux-androideabi
19 - armv7-linux-androideabi
20 - i686-linux-android
21 - x86_64-linux-android
24 - aarch64-unknown-linux-gnu
[all …]
DOSX.yml9 cross:
11 runs-on: macos-latest
13 fail-fast: false
16 # iOS targets don't work, since rust-embedded doesn't provide images.
17 - x86_64-apple-darwin
20 - uses: actions/checkout@v2
21 - uses: actions-rs/toolchain@v1
26 - uses: actions-rs/cargo@v1
28 use-cross: true
30 args: --target ${{matrix.target}}
[all …]
/external/virglrenderer/.gitlab-ci/meson/
Dbuild.sh3 set -e
4 set -o xtrace
6 CROSS_FILE=/cross_file-"$CROSS".txt
8 # We need to control the version of llvm-config we're using, so we'll
9 # tweak the cross file or generate a native file to do so.
10 if test -n "$LLVM_VERSION"; then
11 LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
12 echo -e "[binaries]\nllvm-config = '`which $LLVM_CONFIG`'" > native.file
13 if [ -n "$CROSS" ]; then
14 sed -i -e '/\[binaries\]/a\' -e "llvm-config = '`which $LLVM_CONFIG`'" $CROSS_FILE
[all …]
/external/rust/crates/aho-corasick/.github/workflows/
Dci.yml6 - master
8 - cron: '00 01 * * *'
13 # For some builds, we use cross to test on 32-bit and big-endian
16 # When CARGO is set to CROSS, TARGET is set to `--target matrix.target`.
18 runs-on: ${{ matrix.os }}
22 - pinned
23 - stable
24 - stable-32
25 - stable-mips
26 - beta
[all …]
/external/googleapis/google/ads/searchads360/v0/common/
Dmetrics.proto4 // you may not use this file except in compliance with the License.
7 // http://www.apache.org/licenses/LICENSE-2.0
125 // https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
128 // Average cost-per-thousand impressions (CPM).
131 // https://developers.google.com/search-ads/reporting/query/query-structure#parameters_clause
166 // you use conversion-based bidding, your bid strategies will optimize for
181 // include_in_conversions_metric attribute is set to true. If you use
182 // conversion-based bidding, your bid strategies will optimize for these
189 // you use conversion-based bidding, your bid strategies will optimize for
198 // The sum of your cost-per-click (CPC) and cost-per-thousand impressions
[all …]
/external/glide/library/src/main/java/com/bumptech/glide/
DDrawableOptions.java8 * Applies a cross fade transformation that fades from the placeholder to the loaded
19 * Applies a cross fade transformation that fades from the placeholder to the loaded
25 * @param duration The duration of the cross fade and initial fade in.
32 * Applies a cross fade transformation that des from the placeholder to the loaded
42 …* views animating repeatedly. Use {@link #crossFade(int, int)}} instead, or be sure to call this m…
43 …* per call to {@link com.bumptech.glide.GenericRequestBuilder#load(Object)} to avoid re-using anim…
45 * @param animation The Animation to use if no placeholder is set.
46 * @param duration The duration of the cross fade animation.
53 * Applies a cross fade transformation that des from the placeholder to the loaded
60 * @param animationId The id of the Animation to use if no placeholder is set.
[all …]
/external/rust/crates/plotters/src/element/
Dpoints.rs1 use super::*;
2 use super::{Drawable, PointCollection};
3 use crate::style::{Color, ShapeStyle, SizeDesc};
4 use plotters_backend::{BackendCoord, DrawingBackend, DrawingErrorKind};
7 A common trait for elements that can be interpreted as points: A cross, a circle, a triangle marker…
19 fn make_point(pos: Coord, size: Size, style: ShapeStyle) -> Self; in make_point()
23 A cross marker for visualizing data series.
27 pub struct Cross<Coord, Size: SizeDesc> { struct
33 impl<Coord, Size: SizeDesc> Cross<Coord, Size> { implementation
35 Creates a cross marker.
[all …]
/external/webrtc/modules/audio_coding/codecs/ilbc/
Ddo_plc.c4 * Use of this source code is governed by a BSD-style license
13 iLBC Speech Coder ANSI-C Source Code
26 /*----------------------------------------------------------------*
29 *---------------------------------------------------------------*/
35 0 - no PL, 1 = PL */ in WebRtcIlbcfix_DoThePlc()
43 int32_t cross, ener, cross_comp, ener_comp = 0; in WebRtcIlbcfix_DoThePlc() local
73 if (iLBCdec_inst->prevPLI != 1) { in WebRtcIlbcfix_DoThePlc()
78 iLBCdec_inst->blockl); in WebRtcIlbcfix_DoThePlc()
79 scale3 = (WebRtcSpl_GetSizeInBits(max)<<1) - 25; in WebRtcIlbcfix_DoThePlc()
84 /* Store scale for use when interpolating between the in WebRtcIlbcfix_DoThePlc()
[all …]
/external/ComputeLibrary/docs/user_guide/
Dhow_to_build_and_run_examples.dox2 /// Copyright (c) 2017-2023 Arm Limited.
4 /// SPDX-License-Identifier: MIT
9 /// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
21 /// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 To see the build options available simply run ```scons -h```
41 - gcc-linaro-6.3.1-2017.05-x86_64_arm-linux-gnueabihf
42 - gcc-linaro-6.3.1-2017.05-x86_64_aarch64-linux-gnu
44 To cross-compile the library in debug mode, with Arm® Neon™ only support, for Linux 32bit:
46 scons Werror=1 -j8 debug=1 neon=1 opencl=0 os=linux arch=armv7a
48 To cross-compile the library in asserts mode, with OpenCL only support, for Linux 64bit:
[all …]
/external/tensorflow/tensorflow/python/distribute/
Ddistribution_strategy_context.py4 # you may not use this file except in compliance with the License.
7 # http://www.apache.org/licenses/LICENSE-2.0
32 # ------------------------------------------------------------------------------
34 # replica or cross-replica context for a particular tf.distribute.Strategy.
39 def __init__(self, dist, cross, replica): argument
41 self.cross_replica_context = cross
58 …et_default_graph()._distribution_strategy_stack.append(context) # pylint: disable=protected-access
62 ops.get_default_graph()._distribution_strategy_stack.pop(-1) # pylint: disable=protected-access
68 Used when the thread-local stack is empty.
78 …return ops.get_default_graph()._distribution_strategy_stack[-1] # pylint: disable=protected-access
[all …]
/external/libwebm/build/
Dx86_64-mingw-gcc.cmake3 # Use of this source code is governed by a BSD-style license
14 if("${CROSS}" STREQUAL "")
15 set(CROSS x86_64-w64-mingw32-) variable
18 set(CMAKE_C_COMPILER ${CROSS}gcc)
19 set(CMAKE_CXX_COMPILER ${CROSS}g++)
21 # Disable googletest CMake usage for mingw cross compiles.

12345678910>>...50