Searched +full:armv7 +full:- +full:unknown +full:- +full:linux +full:- +full:uclibceabihf (Results 1 – 8 of 8) sorted by relevance
| /third_party/rust/rust/src/doc/rustc/src/platform-support/ |
| D | armv7-unknown-linux-uclibceabihf.md | 1 # armv7-unknown-linux-uclibceabihf chapter 5 This tier supports the ARMv7 processor running a Linux kernel and uClibc-ng standard library. It p… 13 This target is cross compiled, and requires a cross toolchain. You can find suitable pre-built too… 19 Compiling rust for this target has been tested on `x86_64` linux hosts. Other host types have not … 21 ….bootlin.com/downloads/releases/toolchains/armv7-eabihf/tarballs/armv7-eabihf--uclibc--bleeding-ed… 29 target = ["armv7-unknown-linux-uclibceabihf"] 32 [target.armv7-unknown-linux-uclibceabihf] 34 cc = "/TOOLCHAIN_PATH/bin/arm-buildroot-linux-uclibcgnueabihf-gcc" 41 ./x.py build --stage 2 46 To test cross-compiled binaries on a `x86_64` system, you can use the `qemu-arm` [userspace emulati… [all …]
|
| /third_party/rust/rust/src/doc/rustc/src/ |
| D | SUMMARY.md | 3 - [What is rustc?](what-is-rustc.md) 4 - [Command-line Arguments](command-line-arguments.md) 5 - [Codegen Options](codegen-options/index.md) 6 - [Lints](lints/index.md) 7 - [Lint Levels](lints/levels.md) 8 - [Lint Groups](lints/groups.md) 9 - [Lint Listing](lints/listing/index.md) 10 - [Allowed-by-default Lints](lints/listing/allowed-by-default.md) 11 - [Warn-by-default Lints](lints/listing/warn-by-default.md) 12 - [Deny-by-default Lints](lints/listing/deny-by-default.md) [all …]
|
| D | platform-support.md | 5 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/ |
| D | .cirrus.yml | 8 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 …]
|
| D | README.md | 3 [](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/.github/workflows/ |
| D | bors.yml | 6 - 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/rust/rust/compiler/rustc_target/src/spec/ |
| D | mod.rs | 1 //! [Flexible target specification.](https://github.com/rust-lang/rfcs/pull/131) 11 //! A target triple, as passed via `rustc --target=TRIPLE`, will first be 12 //! compared against the list of built-in targets. This is to ease distributing 13 //! rustc (no need for configuration files) and also to hold these built-in 14 //! targets as immutable and sacred. If `TRIPLE` is not one of the built-in 23 //! `--target=path/to/my-awesome-platform.json` instead of adding to 30 //! underscore in the field names should be replaced with a hyphen (`-`) in the 32 //! `llvm-target`, `target-endian`, `target-pointer-width`, `data-layout`, 33 //! `arch`, and `os`. In general, options passed to rustc with `-C` override 34 //! the target's settings, though `target-feature` and `link-args` will *add* [all …]
|
| /third_party/rust/rust/ |
| D | RELEASES.md | 1 Version 1.77.2 (2024-04-09) 6 - [CVE-2024-24576: fix escaping of Windows batch file arguments in `std::process::Command`](https:/… 7 - Fix `Command`'s batch files argument escaping not working when file name has trailing whitespace … 9 Version 1.72.0 (2023-08-24) 12 <a id="1.72.0-Language"></a> 15 -------- 17 - [Replace const eval limit by a lint and add an exponential backoff warning](https://github.com/ru… 18 - [expand: Change how `#![cfg(FALSE)]` behaves on crate root](https://github.com/rust-lang/rust/pul… 19 - [Stabilize inline asm for LoongArch64](https://github.com/rust-lang/rust/pull/111235/) 20 - [Uplift `clippy::undropped_manually_drops` lint](https://github.com/rust-lang/rust/pull/111530/) [all …]
|