Home
last modified time | relevance | path

Searched +full:aarch64 +full:- +full:linux +full:- +full:android (Results 1 – 25 of 205) sorted by relevance

123456789

/third_party/skia/m133/toolchain/android_trampolines/gen_trampolines/
Dgen_trampolines.go6 // This program is meant to be run by hand when making changes to the hermetic Android NDK
7 // toolchain, e.g. when upgrading to a new Android NDK version.
10 // built-in Bazel function expects tool paths to point to files under the directory in which it is
12 // to use trampoline scripts that pass through any command-line arguments to the NDK binaries under
28 // Paths relative to the Android NDK root directory. These paths can be determined by inspecting
29 // the Android NDK ZIP file downloaded by the `download_toolchains` macro defined in
32 "toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-ar",
33 "toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-dwp",
34 "toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-ld",
35 "toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-nm",
[all …]
/third_party/rust/rust/src/tools/compiletest/src/
Dutil.rs13 "aarch64-apple-darwin",
14 "aarch64-apple-ios",
15 "aarch64-apple-ios-sim",
16 "aarch64-unknown-fuchsia",
17 "aarch64-linux-android",
18 "aarch64-unknown-linux-gnu",
19 "arm-linux-androideabi",
20 "armv7-linux-androideabi",
21 "i686-linux-android",
22 "i686-unknown-linux-gnu",
[all …]
/third_party/skia/m133/toolchain/
Dndk_linux_arm64_toolchain_config.bzl8 built-in `android_ndk_repository` Bazel rule[1], which was used to build the SkCMS repository up
11 The paths in this file point to locations inside the expanded Android NDK ZIP file (found at
12 external/ndk_linux_amd64), and must be updated every time we upgrade to a new Android NDK version.
14 …e83a0144d707f140/src/main/java/com/google/devtools/build/lib/bazel/rules/android/AndroidNdkReposit…
30 _ARMEABI_V7A = "armeabi-v7a"
31 _ARM64_V8A = "arm64-v8a"
55 "-D__ANDROID_API__=29",
56 "-isystem",
57 NDK_PATH + "/sysroot/usr/include/arm-linux-androideabi",
58 "-target",
[all …]
DBUILD.bazel20 "@platforms//os:linux",
23 # we want the toolchain to run on any Linux x64 machine (and it certainly can).
27 "@platforms//os:linux",
36 …tps://github.com/bazelbuild/rules_cc/blob/8bb0eb5c5ccd96b91753bb112096bb6993d16d13/cc/BUILD#L32-L36
54 …tps://github.com/bazelbuild/rules_cc/blob/8bb0eb5c5ccd96b91753bb112096bb6993d16d13/cc/BUILD#L32-L36
70 …tps://github.com/bazelbuild/rules_cc/blob/8bb0eb5c5ccd96b91753bb112096bb6993d16d13/cc/BUILD#L32-L36
87 …tps://github.com/bazelbuild/rules_cc/blob/8bb0eb5c5ccd96b91753bb112096bb6993d16d13/cc/BUILD#L32-L36
104 …tps://github.com/bazelbuild/rules_cc/blob/8bb0eb5c5ccd96b91753bb112096bb6993d16d13/cc/BUILD#L32-L36
119 …tps://github.com/bazelbuild/rules_cc/blob/8bb0eb5c5ccd96b91753bb112096bb6993d16d13/cc/BUILD#L32-L36
128 "@platforms//os:linux",
[all …]
/third_party/rust/rust/src/doc/rustc/src/
Dplatform-support.md5 white-space: nowrap;
11 for targets at each tier, see the [Target Tier Policy](target-tier-policy.md).
16 Component availability is tracked [here](https://rust-lang.github.io/rustup-components-history/).
28 see [Tier 1 with Host Tools](target-tier-policy.md#tier-1-with-host-tools) in
34 -------|-------
35 `aarch64-unknown-linux-gnu` | ARM64 Linux (kernel 4.1, glibc 2.17+) [^missing-stack-probes]
36 `i686-pc-windows-gnu` | 32-bit MinGW (Windows 7+) [^windows-support]
37 `i686-pc-windows-msvc` | 32-bit MSVC (Windows 7+) [^windows-support]
38 `i686-unknown-linux-gnu` | 32-bit Linux (kernel 3.2+, glibc 2.17+)
39 `x86_64-apple-darwin` | 64-bit macOS (10.7+, Lion+)
[all …]
/third_party/rust/crates/nix/
Dbors.toml2 "Android aarch64",
3 "Android arm",
4 "Android armv7",
5 "Android i686",
6 "Android x86_64",
11 "Linux MIPS",
12 "Linux MIPS64 el",
13 "Linux MIPS64",
14 "Linux aarch64",
15 "Linux arm gnueabi",
[all …]
D.cirrus.yml8 CLIPPYFLAGS: -D warnings -A unknown-lints
9 RUSTFLAGS: -D warnings
10 RUSTDOCFLAGS: -D warnings
18 - . $HOME/.cargo/env || true
19 - $TOOL -Vv
20 - rustc -Vv
21 - $TOOL $BUILD $ZFLAGS --target $TARGET --all-targets
22 - $TOOL doc $ZFLAGS --no-deps --target $TARGET
23 - $TOOL clippy $ZFLAGS --target $TARGET --all-targets -- $CLIPPYFLAGS
24 - if [ -z "$NOHACK" ]; then mkdir -p $HOME/.cargo/bin; export PATH=$HOME/.cargo/bin:$PATH; fi
[all …]
DREADME.md3 [![Cirrus Build Status](https://api.cirrus-ci.com/github/nix-rust/nix.svg)](https://cirrus-ci.com/g…
8 Nix seeks to provide friendly bindings to various *nix platform APIs (Linux, Darwin,
13 exposed by the [libc crate](https://github.com/rust-lang/libc). This is done by
20 [gethostname](https://man7.org/linux/man-pages/man2/gethostname.2.html) system
25 pub unsafe extern fn gethostname(name: *mut c_char, len: size_t) -> c_int;
28 pub fn gethostname() -> Result<OsString>;
34 platforms supported by [libc](https://github.com/rust-lang/libc), only some
38 * Tier 1 - Builds and tests for this target are run in CI. Failures of either
40 * Tier 2 - Builds for this target are run in CI. Failures during the build
43 * Tier 3 - Builds for this target are run in CI. Failures during the build
[all …]
/third_party/libuv/.github/workflows/
DCI-unix.yml1 name: CI-unix
6 - '**'
7 - '!docs/**'
8 - '!src/win/**'
9 - '!.**'
10 - '.github/workflows/CI-unix.yml'
13 - v[0-9].*
14 - master
17 build-linux:
18 runs-on: ubuntu-latest
[all …]
/third_party/rust/crates/libc/ci/docker/aarch64-linux-android/
DDockerfile3 RUN dpkg --add-architecture i386
4 RUN apt-get update
5 RUN apt-get install -y --no-install-recommends libc6-dev gcc
6 RUN apt-get install -y --no-install-recommends \
9 ca-certificates \
11 python3-distutils \
14 openjdk-8-jre \
18 WORKDIR /android/
19 COPY android* /android/
21 ENV ANDROID_ARCH=aarch64
[all …]
/third_party/mesa3d/.gitlab-ci/container/debian/
Dandroid_build.sh5 # .gitlab-ci/image-tags.yml tags:
8 set -e
10 . .gitlab-ci/setup-test-env.sh
12 set -x
20 apt-get install -y --no-remove "${EPHEMERAL[@]}"
23 ndk="android-ndk-${ANDROID_NDK_VERSION}"
24 curl -L --retry 4 -f --retry-all-errors --retry-delay 60 \
25 -o $ndk.zip https://dl.google.com/android/repository/$ndk-linux.zip
26 unzip -d / $ndk.zip "$ndk/source.properties" "$ndk/build/cmake/*" "$ndk/toolchains/llvm/*"
30 rdfind -makehardlinks true -makeresultsfile false /${ndk}/
[all …]
/third_party/rust/crates/libc/
DCargo.toml5 license = "MIT OR Apache-2.0"
7 repository = "https://github.com/rust-lang/libc"
8 homepage = "https://github.com/rust-lang/libc"
11 categories = ["external-ffi-bindings", "no-std", "os"]
19 features = ["const-extern-fn", "extra_traits"]
20 default-target = "x86_64-unknown-linux-gnu"
22 "aarch64-apple-darwin",
23 "aarch64-apple-ios",
24 "aarch64-linux-android",
25 "aarch64-pc-windows-msvc",
[all …]
/third_party/mindspore/mindspore-src/source/scripts/
Dlite_release_package.sh2 # Copyright 2020-2021 Huawei Technologies Co., Ltd
8 # http://www.apache.org/licenses/LICENSE-2.0
17 set -e
23 pkg_name="mindspore-lite-${version}-android-${arch}"
25 [ -n "${pkg_name}" ] && rm -rf ${pkg_name}
26 tar -xzf ${input_path}/android_${arch}/${device}/${pkg_name}.tar.gz
27 # Copy java runtime to Android package
28 cp ${input_path}/aar/mindspore-lite-*.aar ${pkg_name}
30 mkdir -p ${output_path}/release/android/${device}/
31 tar -czf ${output_path}/release/android/${device}/${pkg_name}.tar.gz ${pkg_name}
[all …]
/third_party/skia/m133/third_party/externals/libyuv/docs/
Dgetting_started.md5 ## 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
34 ### Android subsection
35 For Android add `;target_os=['android'];` to your Linux .gclient
47 target_os = ["android", "linux"];
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
[all …]
/third_party/mesa3d/docs/
Dandroid.rst1 Android title
4 Mesa hardware drivers can be built for Android one of two ways: built
5 into the Android OS using the ndk-build build system on older versions
6 of Android, or out-of-tree using the Meson build system and the
7 Android NDK.
9 The ndk-build build system has proven to be hard to maintain, as one
10 needs a built Android tree to build against, and it has never been
12 Chrome OS developers for building and testing Android drivers.
14 When building llvmpipe or lavapipe for Android the ndk-build workflow
16 to the Android OS image.
[all …]
/third_party/rust/rust/src/ci/docker/host-x86_64/dist-android/
DDockerfile3 COPY scripts/android-base-apt-get.sh /scripts/
4 RUN sh /scripts/android-base-apt-get.sh
7 COPY scripts/android-ndk.sh /scripts/
8 RUN . /scripts/android-ndk.sh && \
9 download_ndk android-ndk-r25b-linux.zip
12 ENV TARGETS=arm-linux-androideabi
13 ENV TARGETS=$TARGETS,armv7-linux-androideabi
14 ENV TARGETS=$TARGETS,thumbv7neon-linux-androideabi
15 ENV TARGETS=$TARGETS,i686-linux-android
16 ENV TARGETS=$TARGETS,aarch64-linux-android
[all …]
/third_party/rust/crates/libc/ci/
Dsemver.sh5 set -ex
11 if ! rustc --version | grep -E "nightly" ; then
16 rustup component add rustc-dev llvm-tools-preview
19 cargo install semverver --version=0.1.50
23 *linux*)
25 aarch64-fuchsia \
26 aarch64-linux-android \
27 aarch64-unknown-linux-gnu \
28 aarch64-unknown-linux-musl \
29 armv7-linux-androideabi \
[all …]
Dbuild.sh8 set -ex
18 rustup component add rust-src
32 until [ $n -ge $N ]
34 if rustup target add "${TARGET}" --toolchain "${RUST}" ; then
44 cargo "+${RUST}" "${BUILD_CMD}" -vv --no-default-features --target "${TARGET}"
46 # FIXME: With `build-std` feature, `compiler_builtins` emits a lof of lint warnings.
47 RUSTFLAGS="-A improper_ctypes_definitions" cargo "+${RUST}" "${BUILD_CMD}" \
48 -Z build-std=core,alloc -vv --no-default-features --target "${TARGET}"
53 cargo "+${RUST}" "${BUILD_CMD}" -vv --target "${TARGET}"
55 RUSTFLAGS="-A improper_ctypes_definitions" cargo "+${RUST}" "${BUILD_CMD}" \
[all …]
/third_party/rust/crates/rustix/.github/workflows/
Dmain.yml6 - main
13 runs-on: ubuntu-latest
15 - uses: actions/checkout@v3
18 - uses: ./.github/actions/install-rust
21 - run: cargo fmt --all -- --check
25 runs-on: ${{ matrix.os }}
30 - build: stable
31 os: ubuntu-latest
33 - build: nightly
34 os: ubuntu-latest
[all …]
/third_party/rust/rust/src/ci/docker/host-x86_64/disabled/dist-aarch64-android/
DDockerfile3 COPY scripts/android-base-apt-get.sh /scripts/
4 RUN sh /scripts/android-base-apt-get.sh
6 COPY scripts/android-ndk.sh /scripts/
7 RUN . /scripts/android-ndk.sh && \
8 download_and_make_toolchain android-ndk-r15c-linux-x86_64.zip arm64 21
10 ENV PATH=$PATH:/android/ndk/arm64-21/bin
12 ENV DEP_Z_ROOT=/android/ndk/arm64-21/sysroot/usr/
14 ENV HOSTS=aarch64-linux-android
17 --aarch64-linux-android-ndk=/android/ndk/arm64-21 \
18 --disable-rpath \
[all …]
/third_party/libwebsockets/contrib/
Dcross-aarch64-android.cmake2 # CMake Toolchain file for crosscompiling Android / aarch64
6 # cmake .. -DCMAKE_TOOLCHAIN_FILE=contrib/cross-aarch64-android.cmake
12 set(CMAKE_SYSTEM_PROCESSOR aarch64)
13 set(NDK /opt/android/ndk/21.1.6352462/)
14 set(CROSS_SYSROOT "${NDK}/platforms/android-${ANDROID_API_VER}/arch-${ABARCH1}")
15 set(BUILD_ARCH linux-x86_64)
21 set(TC_BASE ${TC_PATH}/bin/${CMAKE_SYSTEM_PROCESSOR}-linux-android)
22 set(PLATFORM android)
23 set(CMAKE_SYSTEM_NAME Linux)
24 set(CMAKE_C_COMPILER "${TC_BASE}${ANDROID_API_VER}-clang")
[all …]
/third_party/rust/crates/minimal-lexical/.github/workflows/
DCross.yml11 runs-on: ubuntu-latest
13 fail-fast: false
16 # Android
17 - aarch64-linux-android
18 - arm-linux-androideabi
19 - armv7-linux-androideabi
20 - i686-linux-android
21 - x86_64-linux-android
23 # Linux
24 - aarch64-unknown-linux-gnu
[all …]
/third_party/protobuf/
DCargo.bazel.lock4 "aho-corasick 1.1.2": {
5 "name": "aho-corasick",
7 "package_url": "https://github.com/BurntSushi/aho-corasick",
10 "url": "https://static.crates.io/crates/aho-corasick/1.1.2/download",
36 "perf-literal",
58 "license_file": "LICENSE-MIT"
92 "license": "Apache-2.0 OR MIT",
94 "Apache-2.0",
97 "license_file": "LICENSE-APACHE"
99 "direct-cargo-bazel-deps 0.0.1": {
[all …]
/third_party/rust/rust/src/bootstrap/
Dconfigure.py3 # ignore-tidy-linelength
36 o("compiler-docs", "build.compiler-docs", "build compiler documentation")
37 o("optimize-tests", "rust.optimize-tests", "build tests with optimizations")
38 o("verbose-tests", "rust.verbose-tests", "enable verbose output when running tests")
41 o("local-rust", None, "use an installed rustc rather than downloading a snapshot")
42 v("local-rust-root", None, "set prefix for local rust binary")
43 …"local-rebuild", "build.local-rebuild", "assume local-rust matches the current version, for rebuil…
44 o("llvm-static-stdcpp", "llvm.static-libstdcpp", "statically link to libstdc++ for LLVM")
45 o("llvm-link-shared", "llvm.link-shared", "prefer shared linking to LLVM (llvm-config --link-shared…
47 o("codegen-tests", "rust.codegen-tests", "run the tests/codegen tests")
[all …]
/third_party/skia/m133/toolchain/android_trampolines/
Daarch64-linux-android-objcopy.sh4 # Use of this source code is governed by a BSD-style license that can be
7 external/ndk_linux_amd64/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-lin…

123456789