Home
last modified time | relevance | path

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

1234

/third_party/rust/crates/nix/
Dbors.toml2 "Android aarch64",
3 "Android arm",
4 "Android armv7",
5 "Android i686",
6 "Android x86_64",
8 "FreeBSD 12 amd64 & i686",
9 "FreeBSD 14 amd64 & i686",
11 "Linux MIPS",
12 "Linux MIPS64 el",
13 "Linux MIPS64",
[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/rust/crates/libc/ci/docker/i686-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=i686
[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/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/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/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/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/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-i686-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_ndk android-ndk-r15c-linux-x86_64.zip && \
13 RUN chmod 777 /android/ndk && \
14 ln -s /android/ndk/x86-21 /android/ndk/x86
16 ENV PATH=$PATH:/android/ndk/x86-14/bin
18 ENV DEP_Z_ROOT=/android/ndk/x86-14/sysroot/usr/
20 ENV HOSTS=i686-linux-android
[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/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/
Dstage0.json3 "dist_server": "https://static.rust-lang.org",
4 "artifacts_server": "https://ci-artifacts.rust-lang.org/rustc-builds",
5 "artifacts_with_llvm_assertions_server": "https://ci-artifacts.rust-lang.org/rustc-builds-alt",
6 "git_merge_commit_email": "bors@rust-lang.org",
13 "The section below is generated by `./x.py run src/tools/bump-stage0`,",
20 "date": "2023-07-13",
25 …"dist/2023-07-13/cargo-1.71.0-aarch64-apple-darwin.tar.gz": "e6c678fa6caaea333b3d05e3dc41842d8a37c…
26 …"dist/2023-07-13/cargo-1.71.0-aarch64-apple-darwin.tar.xz": "7637bc54d15cec656d7abb32417316546c7a7…
27 …"dist/2023-07-13/cargo-1.71.0-aarch64-pc-windows-msvc.tar.gz": "989cddc598aa72ef7574a0eb82c2119909…
28 …"dist/2023-07-13/cargo-1.71.0-aarch64-pc-windows-msvc.tar.xz": "f6df21c5f76c928d1c8fc721ea320846e6…
[all …]
/third_party/rust/rust/src/tools/build-manifest/src/
Dmain.rs16 "aarch64-apple-darwin",
17 "aarch64-pc-windows-msvc",
18 "aarch64-unknown-linux-gnu",
19 "aarch64-unknown-linux-musl",
20 "arm-unknown-linux-gnueabi",
21 "arm-unknown-linux-gnueabihf",
22 "armv7-unknown-linux-gnueabihf",
23 "i686-apple-darwin",
24 "i686-pc-windows-gnu",
25 "i686-pc-windows-msvc",
[all …]
/third_party/rust/rust/src/doc/rustc/src/platform-support/
Dandroid.md1 # *-linux-android and *-linux-androideabi
5 [Android] is a mobile operating system built on top of the Linux kernel.
7 [Android]: https://source.android.com/
11 - Chris Wailes ([@chriswailes](https://github.com/chriswailes))
12 - Matthew Maurer ([@maurer](https://github.com/maurer))
13 - Martin Geisler ([@mgeisler](https://github.com/mgeisler))
17 This target is cross-compiled from a host environment. Development may be done
18 from the [source tree] or using the Android NDK.
20 [source tree]: https://source.android.com/docs/setup/build/downloading
22 Android targets support std. Generated binaries use the ELF file format.
[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/rust/crates/libc/.github/workflows/
Dbors.yml6 - auto-libc
7 - try
13 … actions: write # to cancel workflows (rust-lang/simpleinfra/github-actions/cancel-outdated-builds)
16 name: Docker Linux Tier1
17 runs-on: ubuntu-22.04
19 fail-fast: true
22 i686-unknown-linux-gnu,
23 x86_64-unknown-linux-gnu,
26 - uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
29 - uses: actions/checkout@v3
[all …]
/third_party/mesa3d/.gitlab-ci/container/
Dcreate-android-ndk-pc.sh4 # Makes a .pc file in the Android NDK for meson to find its libraries.
6 set -ex
15 sysroot=$ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot
18 x86_64-linux-android \
19 i686-linux-android \
20 aarch64-linux-android \
21 arm-linux-androideabi; do
23 mkdir -p $pcdir
37 Libs: -L$sysroot/usr/lib/$arch/$sdk_version $libs
38 Cflags: -I$sysroot/usr/include $cflags
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/android/include/llvm/Config/
Dllvm-config.h1 /*===------- llvm/Config/llvm-config.h - llvm configuration -------*- C -*-===*/
6 /* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */
8 /*===----------------------------------------------------------------------===*/
12 This is a C header that can be included in the llvm-c headers. */
32 #define LLVM_DEFAULT_TARGET_TRIPLE "x86_64-linux-android"
34 #define LLVM_DEFAULT_TARGET_TRIPLE "i686-linux-android"
36 #define LLVM_DEFAULT_TARGET_TRIPLE "armv7-linux-androideabi"
38 #define LLVM_DEFAULT_TARGET_TRIPLE "aarch64-linux-android"
51 #define LLVM_HOST_TRIPLE "x86_64-linux-android"
53 #define LLVM_HOST_TRIPLE "i686-linux-android"
[all …]
/third_party/skia/gn/
Dplatform.gni6 # http://www.apache.org/licenses/LICENSE-2.0
22 if (host_os == "linux") {
23 ndk_host = "linux-x86_64"
25 ndk_host = "darwin-x86_64"
27 ndk_host = "windows-x86_64"
31 ndk_target = "aarch64-linux-android"
32 ndk_gdbserver = "prebuilt/android-arm64/gdbserver/gdbserver"
34 ndk_target = "armv7a-linux-androideabi"
35 ndk_gdbserver = "prebuilt/android-arm/gdbserver/gdbserver"
37 ndk_target = "x86_64-linux-android"
[all …]
/third_party/skia/m133/gn/
Dplatform.gni6 # http://www.apache.org/licenses/LICENSE-2.0
22 if (host_os == "linux") {
23 ndk_host = "linux-x86_64"
25 ndk_host = "darwin-x86_64"
27 ndk_host = "windows-x86_64"
31 ndk_target = "aarch64-linux-android"
32 ndk_gdbserver = "prebuilt/android-arm64/gdbserver/gdbserver"
34 ndk_target = "armv7a-linux-androideabi"
35 ndk_gdbserver = "prebuilt/android-arm/gdbserver/gdbserver"
37 ndk_target = "x86_64-linux-android"
[all …]
/third_party/rust/rust/tests/assembly/stack-protector/
Dstack-protector-target-support.rs2 // targets, with the exception of nvptx64-nvidia-cuda
8 // assembly-output: emit-asm
9 // [r1] compile-flags: --target aarch64-unknown-linux-gnu
10 // [r1] needs-llvm-components: aarch64
11 // [r2] compile-flags: --target i686-pc-windows-gnu
12 // [r2] needs-llvm-components: x86
13 // [r3] compile-flags: --target i686-pc-windows-msvc
14 // [r3] needs-llvm-components: x86
15 // [r4] compile-flags: --target i686-unknown-linux-gnu
16 // [r4] needs-llvm-components: x86
[all …]

1234