Home
last modified time | relevance | path

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

12345678910>>...29

/external/libwebsockets/READMEs/
DREADME.build.md4 You can download and install lws using the [vcpkg](https://github.com/Microsoft/vcpkg/) dependency …
8 ./bootstrap-vcpkg.sh
9 ./vcpkg integrate install
10 vcpkg install libwebsockets
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
[all …]
DREADME.build-android.md12 There's probably a more direct way but the official way is install the whole
13 Android Studio and then run `sdkmanager` to install a recent NDK.
16 `./contrib/cross-aarch64-android.cmake` toolchain file is shipped. You can
19 ## Fetching lws (needed first for cross toolchain file)
25 - /home/someone
26 - /home/someone/libwebsockets
27 - /home/someone/mbedtls
30 The reason is that building mbedtls need the cross toolchain file from
45 $ rm -f CMakeCache.txt && \
46 cmake .. -DCMAKE_TOOLCHAIN_FILE=../libwebsockets/contrib/cross-aarch64-android.cmake \
[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
12 3.81 or newer is required. `INSTALL.UNIX' contains hints how to
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
[all …]
/external/mesa3d/docs/
Dmeson.rst5 ---------------
19 <https://mesonbuild.com/Getting-meson.html>`__ to install the
25 Unix-like OSes
29 install it with your package installer. For example:
31 .. code-block:: console
33 sudo apt-get install meson # Ubuntu
37 .. code-block:: console
39 sudo dnf install meson # Fedora
44 You'll also need `Ninja <https://ninja-build.org/>`__. If it's not
45 already installed, use apt-get or dnf to install the *ninja-build*
[all …]
/external/capstone/
Dmake.sh4 # 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 ] && \
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
32 CROSS=aarch64-linux-android
[all …]
DCOMPILE.TXT1 This documentation explains how to compile, install & run Capstone on MacOSX,
2 Linux, *BSD & Solaris. We also show steps to cross-compile for Microsoft Windows.
12 *-*-*-*-*-*
14 Capstone requires no prerequisite packages, so it is easy to compile & install.
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.
[all …]
/external/rust/crates/libz-sys/.github/workflows/
Dci.yml6 # This job downloads and stores `cross` as an artifact, so that it can be
10 install-cross:
11 runs-on: ubuntu-latest
13 - uses: XAMPPRocky/get-github-release@v1
14 id: cross
16 owner: rust-embedded
17 repo: cross
20 - uses: actions/upload-artifact@v2
22 name: cross-${{ matrix.platform }}
23 path: ${{ steps.cross.outputs.install_path }}
[all …]
/external/rust/crates/bytes/.github/workflows/
Dci.yml6 - master
9 - master
12 RUSTFLAGS: -Dwarnings
14 nightly: nightly-2021-04-13
24 runs-on: ubuntu-latest
26 - uses: actions/checkout@v2
27 - name: Install Rust
29 - name: Check formatting
30 run: cargo fmt --all -- --check
36 # runs-on: ubuntu-latest
[all …]
/external/tensorflow/tensorflow/lite/tools/pip_package/
DREADME.md11 sudo apt install swig libjpeg-dev zlib1g-dev python3-dev python3-numpy
12 pip install numpy pybind11
16 That will print out some output and a .whl file. You can then install that
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
[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/ltp/
Dbuild.sh2 # Copyright (c) 2017-2021 Petr Vorel <pvorel@suse.cz>
8 # https://github.com/travis-ci/travis-ci/issues/6054
10 set -e
12 CFLAGS="${CFLAGS:--Wformat -Werror=format-security -Werror=implicit-function-declaration -Werror=re…
13 CC="${CC:-gcc}"
15 DEFAULT_PREFIX="$HOME/ltp-install"
18 CONFIGURE_OPTS_IN_TREE="--with-open-posix-testsuite --with-realtime-testsuite $CONFIGURE_OPT_EXTRA"
19 # TODO: open posix testsuite is currently broken in out-tree-build. Enable it once it's fixed.
20 CONFIGURE_OPTS_OUT_TREE="--with-realtime-testsuite $CONFIGURE_OPT_EXTRA"
21 MAKE_OPTS="-j$(getconf _NPROCESSORS_ONLN)"
[all …]
D.travis.yml1 # Copyright (c) 2017-2021 Petr Vorel <pvorel@suse.cz>
7 - docker
12 - os: linux
16 # cross compilation builds
17 - os: linux
18 env: DISTRO=debian:stable VARIANT=cross-compile ARCH=ppc64el TREE=out MAKE_INSTALL=1
19 compiler: powerpc64le-linux-gnu-gcc
21 - os: linux
22 env: DISTRO=debian:stable VARIANT=cross-compile ARCH=arm64 TREE=out
23 compiler: aarch64-linux-gnu-gcc
[all …]
/external/toybox/scripts/
Dhelp.txt1 toybox - Build toybox.
2 COMMANDNAME - Build individual toybox command as a standalone binary.
3 list - List COMMANDNAMEs you can build standalone.
4 list_pending - List unfinished COMMANDNAMEs out of toys/pending.
5 change - Build each command standalone under change/.
6 baseline - Create toybox_old for use by bloatcheck.
7 bloatcheck - Report size differences between old and current versions
8 test_COMMAND - Run tests for COMMAND (test_ps, test_cat, etc.)
9 tests - Run test suite against all compiled commands.
12 clean - Delete temporary files.
[all …]
/external/mesa3d/.gitlab-ci/
Dprepare-artifacts.sh3 set -e
4 set -o xtrace
6 CROSS_FILE=/cross_file-"$CROSS".txt
9 rm -rf install/bin install/include
12 if [ -n "$CROSS" ]; then
13 STRIP=`sed -n -E "s/strip\s*=\s*'(.*)'/\1/p" "$CROSS_FILE"`
14 if [ -z "$STRIP" ]; then
15 echo "Failed to find strip command in cross file"
21 find install -name \*.so -exec $STRIP {} \;
25 echo "$(cat VERSION) (git-$(git rev-parse HEAD | cut -b -10))" >> install/VERSION
[all …]
Dmeson-build.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/rust/crates/chrono/.github/workflows/
Dtest.yml9 - '**.rs'
10 - .github/**
11 - Cargo.toml
17 os: [ubuntu-16.04, ubuntu-latest, macos-latest, windows-latest]
22 # check all tzs on most-recent OS's
23 - os: ubuntu-latest
26 - os: windows-latest
29 - os: macos-latest
33 - os: ubuntu-latest
37 - os: ubuntu-latest
[all …]
/external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/
Dcmake.yml4 ci-cmake:
6 runs-on: ${{ matrix.os }}
8 fail-fast: false
11 - name: Ubuntu 16.04 GCC
12 os: ubuntu-16.04
15 - name: Ubuntu GCC
16 os: ubuntu-latest
18 cmake-args: -DWITH_SANITIZER=Address
21 - name: Ubuntu GCC OSB -O1 No Unaligned64
22 os: ubuntu-latest
[all …]
/external/curl/scripts/
DMakefile.am8 # Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
31 all-local: $(ZSH_COMPLETION_FUNCTION_FILENAME) $(FISH_COMPLETION_FUNCTION_FILENAME)
35 @echo "NOTICE: we can't generate zsh completion when cross-compiling!"
36 else # if not cross-compiling:
37 @if ! test -x "$(PERL)"; then echo "No perl: can't install completion.pl"; exit 0; fi
38 $(PERL) $(srcdir)/completion.pl --curl $(top_builddir)/src/curl$(EXEEXT) --shell zsh > $@
43 @echo "NOTICE: we can't generate fish completion when cross-compiling!"
44 else # if not cross-compiling:
45 @if ! test -x "$(PERL)"; then echo "No perl: can't install completion.pl"; exit 0; fi
46 $(PERL) $(srcdir)/completion.pl --curl $(top_builddir)/src/curl$(EXEEXT) --shell fish > $@
[all …]
/external/rust/crates/grpcio-sys/grpc/tools/distrib/
Dbuild_ruby_environment_macos.sh8 # http://www.apache.org/licenses/LICENSE-2.0
16 set -ex
18 rm -rf ~/.rake-compiler
22 curl https://raw.githubusercontent.com/rake-compiler/rake-compiler/v1.1.1/tasks/bin/cross-ruby.rake…
26 --- cross-ruby.rake 2021-03-05 12:04:09.898286632 -0800
27 +++ patched 2021-03-05 12:05:35.594318962 -0800
28 @@ -111,10 +111,11 @@
29 "--host=#{MINGW_HOST}",
30 "--target=#{MINGW_TARGET}",
31 "--build=#{RUBY_BUILD}",
[all …]
/external/rust/crates/byteorder/.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/rust/crates/libz-sys/src/zlib-ng/test/
Dpkgcheck.sh5 Usage: sh test/pkgcheck.sh [--zlib-compat]
8 If --zlib-compat, tests with zlib compatible builds.
12 $ sudo apt install ninja-build diffoscope gcc-multilib
13 $ export CMAKE_ARGS="-DCMAKE_C_FLAGS=-m32" CFLAGS=-m32 LDFLAGS=-m32
16 To cross-build, install the appropriate qemu and gcc packages,
21 $ sudo apt install ninja-build diffoscope qemu gcc-arm-linux-gnueabihf libc6-dev-armhf-cross
22 $ export CHOST=arm-linux-gnueabihf
23 $ export CMAKE_ARGS="-DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-arm.cmake -DCMAKE_C_COMPILER_TARGET=${C…
26 $ sudo apt install ninja-build diffoscope qemu gcc-aarch64-linux-gnu libc6-dev-arm64-cross
27 $ export CHOST=aarch64-linux-gnu
[all …]
/external/rust/crates/regex-automata/.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 - stable-thumb
[all …]
/external/lz4/.circleci/images/primary/
DDockerfile1 FROM circleci/buildpack-deps:bionic
3 RUN sudo apt-get -y -qq update
4 RUN sudo apt-get -y install software-properties-common
5 RUN sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
6 RUN sudo apt-get -y install cmake
7 RUN sudo apt-get -y install qemu-system-ppc qemu-user-static qemu-system-arm
8 RUN sudo apt-get -y install libc6-dev-armel-cross libc6-dev-arm64-cross libc6-dev-i386
9 RUN sudo apt-get -y install clang clang-tools
10 RUN sudo apt-get -y install gcc-5 gcc-5-multilib gcc-6
11 RUN sudo apt-get -y install valgrind
[all …]
/external/armnn/
DBuildGuideCrossCompilation.md1 # How to Cross-Compile ArmNN on x86_64 for arm64
4 * [Cross-compiling ToolChain](#installCCT)
5 * [Build and install Google's Protobuf library](#buildProtobuf)
15 These are the step by step instructions on Cross-Compiling ArmNN under an x86_64 system to target a…
18 #### <a name="installCCT">Cross-compiling ToolChain</a>
19 * Install the standard cross-compilation libraries for arm64:
21 sudo apt install crossbuild-essential-arm64
24 #### <a name="buildProtobuf">Build and install Google's Protobuf library</a>
29 git clone -b v3.12.0 https://github.com/google/protobuf.git protobuf
31 git submodule update --init --recursive
[all …]

12345678910>>...29