| /third_party/rust/rust/src/ci/docker/host-x86_64/dist-x86_64-netbsd/ |
| D | build-netbsd-toolchain.sh | 2 # ignore-tidy-linelength 4 set -ex 14 bash -c "while true; do sleep 30; echo \$(date) - building ...; done" & 18 trap - ERR 20 set -x 23 mkdir netbsd 24 cd netbsd 26 mkdir -p /x-tools/x86_64-unknown-netbsd/sysroot 28 # URL=https://ci-mirrors.rust-lang.org/rustc 30 SOURCE_URL=https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.0/source/sets [all …]
|
| D | Dockerfile | 3 COPY scripts/cross-apt-packages.sh /scripts/ 4 RUN sh /scripts/cross-apt-packages.sh 5 RUN DEBIAN_FRONTEND=noninteractive apt-get install -y zlib1g-dev 7 COPY host-x86_64/dist-x86_64-netbsd/build-netbsd-toolchain.sh /tmp/ 8 RUN /tmp/build-netbsd-toolchain.sh 13 ENV PATH=$PATH:/x-tools/x86_64-unknown-netbsd/bin 16 AR_x86_64_unknown_netbsd=x86_64--netbsd-ar \ 17 CC_x86_64_unknown_netbsd=x86_64--netbsd-gcc-sysroot \ 18 CXX_x86_64_unknown_netbsd=x86_64--netbsd-g++-sysroot 20 ENV HOSTS=x86_64-unknown-netbsd [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 …]
|
| 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 …]
|
| /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/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 …]
|
| D | semver.sh | 5 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 25 aarch64-fuchsia \ 26 aarch64-linux-android \ 27 aarch64-unknown-linux-gnu \ 28 aarch64-unknown-linux-musl \ 29 armv7-linux-androideabi \ 30 armv7-unknown-linux-gnueabihf \ [all …]
|
| /third_party/rust/rust/src/tools/compiletest/src/ |
| D | util.rs | 13 "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/rust/rust/src/doc/rustc/src/platform-support/ |
| D | netbsd.md | 1 # \*-unknown-netbsd 5 [NetBSD] multi-platform 4.4BSD-based UNIX-like operating system. 7 [NetBSD]: https://www.NetBSD.org/ 9 The target names follow this format: `$ARCH-unknown-netbsd{-$SUFFIX}`, 11 `-$SUFFIX` (optional) might indicate the ABI. The following targets 12 are currently defined running NetBSD: 14 | Target name | NetBSD Platform | 15 |--------------------------------|-----------------| 16 | `amd64-unknown-netbsd` | [amd64 / x86_64 systems](https://wiki.netbsd.org/ports/amd64/) | 17 | `armv7-unknown-netbsd-eabihf` | [32-bit ARMv7 systems with hard-float](https://wiki.netbsd.org/p… [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 | Cargo.toml | 6 rust-version = "1.56" 7 authors = ["The nix-rust Project Developers"] 8 repository = "https://github.com/nix-rust/nix" 10 categories = ["os::unix-apis"] 14 rustdoc-args = ["--cfg", "docsrs"] 16 "x86_64-unknown-linux-gnu", 17 "aarch64-linux-android", 18 "x86_64-apple-darwin", 19 "aarch64-apple-ios", 20 "x86_64-unknown-freebsd", [all …]
|
| D | README.md | 3 [](https://cirrus-ci.com/g… 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 50 * aarch64-apple-darwin [all …]
|
| /third_party/rust/crates/minimal-lexical/.github/workflows/ |
| D | Cross.yml | 11 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 24 - aarch64-unknown-linux-gnu 25 - arm-unknown-linux-gnueabi 26 - armv7-unknown-linux-gnueabihf [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/crates/libloading/.github/workflows/ |
| D | libloading.yml | 2 group: ${{ github.workflow }}-${{ github.ref }} 3 cancel-in-progress: true 8 paths-ignore: ['*.mkd', 'LICENSE'] 13 native-test: 14 runs-on: ${{ matrix.os }} 16 fail-fast: false 19 os: [ubuntu-latest, windows-latest, macOS-latest] 20 timeout-minutes: 20 22 - uses: actions/checkout@v2 23 - run: rustup install ${{ matrix.rust_toolchain }} --profile=minimal [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/rust/src/bootstrap/ |
| D | llvm.rs | 8 //! LLVM and compiler-rt are essentially just wired up to everything else to 30 /// Path to llvm-config binary. 31 /// NB: This is always the host llvm-config! 69 /// It's used to avoid busting caches during x.py check -- if we've already built 72 /// This will return the llvm-config if it can get it (but it will not build it 77 ) -> Result<LlvmResult, Meta> { in prebuilt_llvm_config() 96 let root = "src/llvm-project/llvm"; in prebuilt_llvm_config() 104 let build_llvm_config = llvm_config_ret_dir.join(exe("llvm-config", builder.config.build)); in prebuilt_llvm_config() 108 let stamp = out_dir.join("llvm-finished-building"); in prebuilt_llvm_config() 129 pub(crate) fn detect_llvm_sha(config: &Config, is_git: bool) -> String { in detect_llvm_sha() [all …]
|
| /third_party/rust/rust/src/tools/compiletest/src/header/ |
| D | tests.rs | 13 ) -> test::TestDesc { in make_test_description() 26 let mut s = "normalize-stderr-32bit: \"something (32 bits)\" -> \"something ($WORD bits)\"."; in test_parse_normalization_string() 29 assert_eq!(s, " -> \"something ($WORD bits)\"."); in test_parse_normalization_string() 32 let mut s = "normalize-stderr-32bit: something (32 bits) -> something ($WORD bits)."; in test_parse_normalization_string() 35 assert_eq!(s, r#"normalize-stderr-32bit: something (32 bits) -> something ($WORD bits)."#); in test_parse_normalization_string() 38 let mut s = "normalize-stderr-32bit: \"something (32 bits) -> something ($WORD bits)."; in test_parse_normalization_string() 41 assert_eq!(s, "normalize-stderr-32bit: \"something (32 bits) -> something ($WORD bits)."); in test_parse_normalization_string() 44 let mut s = "normalize-stderr-32bit: \"something (32 bits)\" -> \"something ($WORD bits)."; in test_parse_normalization_string() 47 assert_eq!(s, " -> \"something ($WORD bits)."); in test_parse_normalization_string() 49 // Nothing to normalize (No quotes, 16-bit) in test_parse_normalization_string() [all …]
|
| /third_party/rust/rust/compiler/rustc_target/src/spec/ |
| D | x86_64_unknown_netbsd.rs | 3 pub fn target() -> Target { in target() 5 base.cpu = "x86-64".into(); in target() 8 base.add_pre_link_args(LinkerFlavor::Gnu(Cc::Yes, Lld::No), &["-m64"]); in target() 18 llvm_target: "x86_64-unknown-netbsd".into(), in target() 20 data_layout: "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" in target() 22 arch: "x86_64".into(), in target()
|
| /third_party/skia/third_party/externals/libpng/ |
| D | config.guess | 3 # Copyright 1992-2018 Free Software Foundation, Inc. 5 timestamp='2018-03-08' 32 # Please send patches to <config-patches@gnu.org>. 35 me=`echo "$0" | sed -e 's,.*/,,'` 43 -h, --help print this help, then exit 44 -t, --time-stamp print date of last modification, then exit 45 -v, --version print version number, then exit 47 Report bugs and patches to <config-patches@gnu.org>." 53 Copyright 1992-2018 Free Software Foundation, Inc. 59 Try \`$me --help' for more information." [all …]
|
| /third_party/skia/third_party/externals/icu/source/ |
| D | config.guess | 3 # Copyright 1992-2017 Free Software Foundation, Inc. 5 timestamp='2017-11-07' 32 # Please send patches to <config-patches@gnu.org>. 35 me=`echo "$0" | sed -e 's,.*/,,'` 43 -h, --help print this help, then exit 44 -t, --time-stamp print date of last modification, then exit 45 -v, --version print version number, then exit 47 Report bugs and patches to <config-patches@gnu.org>." 53 Copyright 1992-2017 Free Software Foundation, Inc. 59 Try \`$me --help' for more information." [all …]
|
| /third_party/skia/m133/third_party/externals/icu/source/ |
| D | config.guess | 3 # Copyright 1992-2017 Free Software Foundation, Inc. 5 timestamp='2017-11-07' 32 # Please send patches to <config-patches@gnu.org>. 35 me=`echo "$0" | sed -e 's,.*/,,'` 43 -h, --help print this help, then exit 44 -t, --time-stamp print date of last modification, then exit 45 -v, --version print version number, then exit 47 Report bugs and patches to <config-patches@gnu.org>." 53 Copyright 1992-2017 Free Software Foundation, Inc. 59 Try \`$me --help' for more information." [all …]
|
| /third_party/skia/third_party/externals/microhttpd/ |
| D | config.guess | 3 # Copyright 1992-2014 Free Software Foundation, Inc. 5 timestamp='2014-03-23' 32 # Please send patches with a ChangeLog entry to config-patches@gnu.org. 35 me=`echo "$0" | sed -e 's,.*/,,'` 43 -h, --help print this help, then exit 44 -t, --time-stamp print date of last modification, then exit 45 -v, --version print version number, then exit 47 Report bugs and patches to <config-patches@gnu.org>." 53 Copyright 1992-2014 Free Software Foundation, Inc. 59 Try \`$me --help' for more information." [all …]
|
| /third_party/lame/ |
| D | config.guess | 3 # Copyright 1992-2018 Free Software Foundation, Inc. 5 timestamp='2018-08-29' 32 # Please send patches to <config-patches@gnu.org>. 35 me=`echo "$0" | sed -e 's,.*/,,'` 43 -h, --help print this help, then exit 44 -t, --time-stamp print date of last modification, then exit 45 -v, --version print version number, then exit 47 Report bugs and patches to <config-patches@gnu.org>." 53 Copyright 1992-2018 Free Software Foundation, Inc. 59 Try \`$me --help' for more information." [all …]
|
| /third_party/icu/icu4c/source/ |
| D | config.guess | 3 # Copyright 1992-2022 Free Software Foundation, Inc. 7 timestamp='2022-01-09' 34 # Please send patches to <config-patches@gnu.org>. 40 # variety of pre-POSIX systems that do not have POSIX shells at all, and 41 # even some reasonably current systems (Solaris 10 as case-in-point) still 42 # have a pre-POSIX /bin/sh. 45 me=`echo "$0" | sed -e 's,.*/,,'` 53 -h, --help print this help, then exit 54 -t, --time-stamp print date of last modification, then exit 55 -v, --version print version number, then exit [all …]
|