| /third_party/rust/crates/libc/ |
| D | Cargo.toml | 5 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/ci/docker/host-x86_64/dist-various-1/ |
| D | Dockerfile | 3 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/crates/libc/ci/ |
| D | build.sh | 8 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/compiler/rustc_target/src/spec/ |
| D | thumbv7neon_unknown_linux_musleabihf.rs | 3 // 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() 13 // doesn't support the "musleabihf" value. 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() [all …]
|
| D | arm_unknown_linux_musleabihf.rs | 3 pub fn target() -> Target { in target() 5 // It's important we use "gnueabihf" and not "musleabihf" here. LLVM in target() 7 // doesn't support the "musleabihf" value. 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()
|
| D | armv7_unknown_linux_musleabihf.rs | 3 // This target is for musl Linux on ARMv7 without thumb-mode or NEON. 5 pub fn target() -> Target { in target() 7 // It's important we use "gnueabihf" and not "musleabihf" here. LLVM in target() 9 // doesn't support the "musleabihf" value. in target() 10 llvm_target: "armv7-unknown-linux-gnueabihf".into(), in target() 12 data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".into(), in target() 13 arch: "arm".into(), in target() 19 features: "+v7,+vfp3,-d32,+thumb2,-neon".into(), in target()
|
| D | armv5te_unknown_linux_musleabi.rs | 3 pub fn target() -> Target { in target() 6 // It's important we use "gnueabihf" and not "musleabihf" here. LLVM in target() 8 // doesn't support the "musleabihf" value. in target() 9 llvm_target: "armv5te-unknown-linux-gnueabi".into(), in target() 11 data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".into(), in target() 12 arch: "arm".into(), in target() 15 features: "+soft-float,+strict-align".into(), in target() 16 // Atomic operations provided by compiler-builtins in target()
|
| 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/src/bootstrap/ |
| D | configure.py | 3 # 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/rust/tests/assembly/stack-protector/ |
| D | stack-protector-target-support.rs | 2 // 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/doc/rustc/src/ |
| 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/rust/src/ |
| D | stage0.json | 3 "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/ |
| D | main.rs | 16 "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/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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
| D | Triple.cpp | 1 //===--- Triple.cpp - Target triple helper class --------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 21 case UnknownArch: return "unknown"; in getArchTypeName() 30 case arm: return "arm"; in getArchTypeName() 90 case arm: in getArchTypePrefix() 93 case thumbeb: return "arm"; in getArchTypePrefix() 155 case UnknownVendor: return "unknown"; in getVendorTypeName() 180 case UnknownOS: return "unknown"; in getOSTypeName() 201 case Linux: return "linux"; in getOSTypeName() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
| D | Triple.h | 1 //===-- llvm/ADT/Triple.h - Target triple helper class ----------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 22 /// Triple - Helper class for working with autoconf configuration names. For 27 /// ARCHITECTURE-VENDOR-OPERATING_SYSTEM 29 /// ARCHITECTURE-VENDOR-OPERATING_SYSTEM-ENVIRONMENT 38 /// Clients that need to handle the non-canonical triples that users often 48 arm, // ARM (little endian): arm, armv.*, xscale enumerator 49 armeb, // ARM (big endian): armeb 55 bpfel, // eBPF or extended BPF or 64-bit BPF (little endian) [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 …]
|