Home
last modified time | relevance | path

Searched +full:arm +full:- +full:unknown +full:- +full:linux +full:- +full:gnueabihf (Results 1 – 25 of 78) sorted by relevance

1234

/third_party/rust/rust/src/ci/docker/host-x86_64/dist-various-1/
DDockerfile3 RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
10 libtool-bin \
14 xz-utils \
15 libncurses-dev \
18 ninja-build \
21 ca-certificates \
26 xz-utils \
27 zlib1g-dev \
28 g++-arm-linux-gnueabi \
29 g++-arm-linux-gnueabihf \
[all …]
/third_party/rust/rust/src/ci/docker/host-x86_64/dist-armhf-linux/
DDockerfile3 COPY scripts/cross-apt-packages.sh /scripts/
4 RUN sh /scripts/cross-apt-packages.sh
6 COPY scripts/crosstool-ng.sh /scripts/
7 RUN sh /scripts/crosstool-ng.sh
9 COPY scripts/rustbuild-setup.sh /scripts/
10 RUN sh /scripts/rustbuild-setup.sh
13 COPY scripts/crosstool-ng-build.sh /scripts/
14 COPY host-x86_64/dist-armhf-linux/arm-linux-gnueabihf.defconfig /tmp/crosstool.defconfig
15 RUN /scripts/crosstool-ng-build.sh
20 ENV PATH=$PATH:/x-tools/arm-unknown-linux-gnueabihf/bin
[all …]
/third_party/rust/rust/tests/run-make/atomic-lock-free/
DMakefile4 # guaranteed to be lock-free.
7 ifeq ($(UNAME),Linux)
9 $(RUSTC) --target=i686-unknown-linux-gnu atomic_lock_free.rs
10 nm "$(TMPDIR)/libatomic_lock_free.rlib" | $(CGREP) -v __atomic_fetch_add
11 $(RUSTC) --target=x86_64-unknown-linux-gnu atomic_lock_free.rs
12 nm "$(TMPDIR)/libatomic_lock_free.rlib" | $(CGREP) -v __atomic_fetch_add
14 ifeq ($(filter arm,$(LLVM_COMPONENTS)),arm)
15 $(RUSTC) --target=arm-unknown-linux-gnueabi atomic_lock_free.rs
16 nm "$(TMPDIR)/libatomic_lock_free.rlib" | $(CGREP) -v __atomic_fetch_add
17 $(RUSTC) --target=arm-unknown-linux-gnueabihf atomic_lock_free.rs
[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/rust/src/tools/rust-analyzer/.github/workflows/
Drelease.yaml4 - cron: "0 0 * * *" # midnight UTC
10 - release
11 - trigger-nightly
16 RUSTFLAGS: "-D warnings -W unreachable-pub"
20 CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
21 CARGO_TARGET_ARM_UNKNOWN_LINUX_GNUEABIHF_LINKER: arm-linux-gnueabihf-gcc
28 - os: windows-latest
29 target: x86_64-pc-windows-msvc
30 code-target: win32-x64
31 - os: windows-latest
[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/tests/run-make/print-cfg/
DMakefile1 # needs-llvm-components: x86 arm
6 $(RUSTC) --target x86_64-pc-windows-gnu --print cfg | $(CGREP) windows
7 $(RUSTC) --target x86_64-pc-windows-gnu --print cfg | $(CGREP) x86_64
8 $(RUSTC) --target i686-pc-windows-msvc --print cfg | $(CGREP) msvc
9 $(RUSTC) --target i686-apple-darwin --print cfg | $(CGREP) macos
10 $(RUSTC) --target i686-unknown-linux-gnu --print cfg | $(CGREP) gnu
11 $(RUSTC) --target arm-unknown-linux-gnueabihf --print cfg | $(CGREP) target_abi=
12 $(RUSTC) --target arm-unknown-linux-gnueabihf --print cfg | $(CGREP) eabihf
16 $(RUSTC) --print cfg | $(CGREP) windows
19 $(RUSTC) --print cfg | $(CGREP) unix
/third_party/rust/crates/libc/ci/
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/ci/docker/host-x86_64/armhf-gnu/
DDockerfile3 RUN apt-get update -y && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
6 ca-certificates \
12 g++-arm-linux-gnueabihf \
14 libc6-dev \
15 libc6-dev-armhf-cross \
17 ninja-build \
19 qemu-system-arm \
20 xz-utils
22 ENV ARCH=arm \
23 CROSS_COMPILE=arm-linux-gnueabihf-
[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/mesa3d/.gitlab-ci/container/
Dcreate-cross-file.sh4 cross_file="/cross_file-$arch.txt"
5 meson env2mfile --cross --debarch "$arch" -o "$cross_file"
8 sed -i "s|/usr/bin/\([^-]*\)-linux-gnu\([^-]*\)-g|/usr/lib/ccache/\\1-linux-gnu\\2-g|g" "$cross_fil…
10 # Rely on qemu-user being configured in binfmt_misc on the host
12 sed -i -e '/\[properties\]/a\' -e "needs_exe_wrapper = False" "$cross_file"
15 cc=$(sed -n "s|^c\s*=\s*\[?'\(.*\)'\]?|\1|p" < "$cross_file")
18 rust_target=aarch64-unknown-linux-gnu
20 rust_target=armv7-unknown-linux-gnueabihf
22 rust_target=i686-unknown-linux-gnu
24 rust_target=powerpc64le-unknown-linux-gnu
[all …]
Dbuild-rust.sh3 # Note that this script is not actually "building" rust, but build- is the
6 set -ex
13 mkdir -p "$HOME"/.cargo
14 ln -s /usr/local/bin "$HOME"/.cargo/bin
17 RUST_VERSION=1.78.0-2024-05-02
22 curl -L --retry 4 -f --retry-all-errors --retry-delay 60 \
23 --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- \
24 --default-toolchain $RUST_VERSION \
25 --profile minimal \
26 -y
[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 …]
/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/tests/ui/asm/
Dissue-85247.rs3 // [ropi] compile-flags: --target armv7-unknown-linux-gnueabihf -C relocation-model=ropi
4 // [rwpi] compile-flags: --target armv7-unknown-linux-gnueabihf -C relocation-model=rwpi
5 // [ropi] needs-llvm-components: arm
6 // [rwpi] needs-llvm-components: arm
7 // [ropi] build-pass
Dinline-syntax.rs1 // revisions: x86_64 arm
2 //[x86_64] compile-flags: --target x86_64-unknown-linux-gnu
3 //[x86_64] check-pass
4 //[x86_64] needs-llvm-components: x86
5 //[x86_64_allowed] compile-flags: --target x86_64-unknown-linux-gnu
6 //[x86_64_allowed] check-pass
7 //[x86_64_allowed] needs-llvm-components: x86
8 //[arm] compile-flags: --target armv7-unknown-linux-gnueabihf
9 //[arm] build-fail
10 //[arm] needs-llvm-components: arm
[all …]
/third_party/rust/crates/rust-openssl/.circleci/
Dconfig.yml6 key: registry-{{ .BuildNum }}
8 - /usr/local/cargo/registry/index
10 key: lib-{{ checksum "~/lib_key" }}-{{ checksum "test/build_openssl.sh" }}
18 - /openssl
20 key: deps-1.19.0-{{ checksum "Cargo.lock" }}-{{ checksum "~/lib_key" }}-2
28 - target
29 - /usr/local/cargo/registry/cache
34 - image: rust:1.19.0
36 - checkout
37 - run: apt-get update
[all …]
/third_party/rust/rust/src/ci/docker/
DREADME.md14 ./src/ci/docker/run.sh x86_64-gnu
21 DEPLOY=1 ./src/ci/docker/run.sh x86_64-gnu
24 **NOTE**: Re-using the same `obj` dir with different docker images with
25 the same target triple (e.g. `dist-x86_64-linux` and `dist-various-1`)
33 - Each host architecture has its own `host-{arch}` directory, and those
36 - `host-{arch}/disabled` contains images that are not built on CI.
37 - `scripts` contains files shared by multiple Docker images.
45 1. Stop the virtual machine from the terminal with `docker-machine stop`
58 * Read-only: ☐ *unchecked*
59 * Auto-mount: ☑ *checked*
[all …]
/third_party/rust/crates/minimal-lexical/.github/workflows/
DCross.yml11 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
23 # Linux
24 - aarch64-unknown-linux-gnu
25 - arm-unknown-linux-gnueabi
[all …]
/third_party/rust/crates/nix/
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/rust/tests/run-make/simd-ffi/
DMakefile4 ifeq ($(filter arm,$(LLVM_COMPONENTS)),arm)
7 TARGETS += arm-linux-androideabi arm-unknown-linux-gnueabihf arm-unknown-linux-gnueabi
17 LINUX=$(filter aarch64 mips,$(LLVM_COMPONENTS)) $(X86_ARCHS) macro
19 LINUX += mipsel
27 $(foreach arch,$(LINUX),$(eval TARGETS += $(arch)-unknown-linux-gnu))
28 $(foreach arch,$(WINDOWS),$(eval TARGETS += $(arch)-pc-windows-gnu))
29 #$(foreach arch,$(IOS),$(eval TARGETS += $(arch)-apple-ios))
30 $(foreach arch,$(DARWIN),$(eval TARGETS += $(arch)-apple-darwin))
39 # enabled by-default for i686 and ARM; these features will be invalid
43 $$(RUSTC) --target=$(1) --emit=llvm-ir,asm simd.rs \
[all …]
/third_party/rust/rust/compiler/rustc_target/src/spec/
Dthumbv7neon_unknown_linux_musleabihf.rs3 // This target is for musl Linux on ARMv7 with thumb mode enabled
4 // (for consistency with Android and Debian-based distributions)
6 // registers enabled as well. See section A2.6.2 on page A2-56 in
7 // https://static.docs.arm.com/ddi0406/cd/DDI0406C_d_armv7ar_arm.pdf
9 pub fn target() -> Target { in target()
11 // It's important we use "gnueabihf" and not "musleabihf" here. LLVM in target()
14 llvm_target: "armv7-unknown-linux-gnueabihf".into(), in target()
16 data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".into(), in target()
17 arch: "arm".into(), in target()
23 features: "+v7,+thumb-mode,+thumb2,+vfp3,+neon".into(), in target()
Darm_unknown_linux_musleabihf.rs3 pub fn target() -> Target { in target()
5 // It's important we use "gnueabihf" and not "musleabihf" here. LLVM in target()
8 llvm_target: "arm-unknown-linux-gnueabihf".into(), in target()
10 data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".into(), in target()
11 arch: "arm".into(), in target()
16 features: "+strict-align,+v6,+vfp2,-d32".into(), in target()
/third_party/rust/rust/tests/ui/abi/
Dunsupported.rs1 // revisions: x64 i686 aarch64 arm
3 // [x64] needs-llvm-components: x86
4 // [x64] compile-flags: --target=x86_64-unknown-linux-gnu --crate-type=rlib
5 // [i686] needs-llvm-components: x86
6 // [i686] compile-flags: --target=i686-unknown-linux-gnu --crate-type=rlib
7 // [aarch64] needs-llvm-components: aarch64
8 // [aarch64] compile-flags: --target=aarch64-unknown-linux-gnu --crate-type=rlib
9 // [arm] needs-llvm-components: arm
10 // [arm] compile-flags: --target=armv7-unknown-linux-gnueabihf --crate-type=rlib
26 extern "ptx-kernel" fn ptx() {} in ptx()
[all …]

1234