Searched +full:x86_64 +full:- +full:unknown +full:- +full:linux +full:- +full:gnux32 (Results 1 – 13 of 13) sorted by relevance
| /third_party/rust/crates/linux-raw-sys/.github/workflows/ |
| D | main.yml | 6 - main 12 runs-on: ubuntu-latest 18 RUSTFLAGS: -D warnings 20 - uses: actions/checkout@v3 21 - run: | 26 cargo check --features "netlink" 27 cargo check --no-default-features --features "std netlink" 28 cargo check --no-default-features --features "no_std netlink" 29 cargo check --no-default-features --features "no_std general errno" 33 runs-on: ubuntu-latest [all …]
|
| /third_party/rust/crates/libc/ci/ |
| 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 23 *linux*) 25 aarch64-fuchsia \ 26 aarch64-linux-android \ 27 aarch64-unknown-linux-gnu \ 28 aarch64-unknown-linux-musl \ 29 armv7-linux-androideabi \ [all …]
|
| 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/crates/nix/ |
| 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 …]
|
| D | .cirrus.yml | 8 RUSTFLAGS: -D warnings 9 RUSTDOCFLAGS: -D warnings 18 - . $HOME/.cargo/env || true 19 - $TOOL +$TOOLCHAIN -Vv 20 - rustc +$TOOLCHAIN -Vv 21 - $TOOL +$TOOLCHAIN $BUILD $ZFLAGS --target $TARGET --all-targets 22 - $TOOL +$TOOLCHAIN doc $ZFLAGS --no-deps --target $TARGET 23 - $TOOL +$TOOLCHAIN clippy $ZFLAGS --target $TARGET --all-targets -- -D warnings 24 - if [ -z "$NOHACK" ]; then mkdir -p $HOME/.cargo/bin; export PATH=$HOME/.cargo/bin:$PATH; fi 25 …- if [ -z "$NOHACK" ]; then curl -LsSf https://github.com/taiki-e/cargo-hack/releases/latest/downl… [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/crates/rustix/.github/workflows/ |
| D | main.yml | 6 - 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/crates/linux-raw-sys/gen/src/ |
| D | main.rs | 1 //! A program which generates a linux-headers installation and runs bindgen 29 let out = tempdir::TempDir::new("linux-raw-sys").unwrap(); in main() 31 let linux_headers = out_dir.join("linux-headers"); in main() 50 .find("// The rest of this file is auto-generated!\n") in main() 59 .write_all("// The rest of this file is auto-generated!\n".as_bytes()) in main() 69 .find("# The rest of this file is auto-generated!\n") in main() 79 .write_all("# The rest of this file is auto-generated!\n".as_bytes()) in main() 86 // Checkout a specific version of Linux. in main() 89 let mut linux_archs = fs::read_dir(&format!("linux/arch")) in main() 93 // Sort archs list as filesystem iteration order is non-deterministic in main() [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() 72 case x86_64: return "x86_64"; in getArchTypeName() 121 case x86_64: return "x86"; in getArchTypePrefix() 155 case UnknownVendor: return "unknown"; in getVendorTypeName() 180 case UnknownOS: return "unknown"; in getOSTypeName() 201 case Linux: return "linux"; in getOSTypeName() 224 case UnknownEnvironment: return "unknown"; in getEnvironmentTypeName() [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 55 bpfel, // eBPF or extended BPF or 64-bit BPF (little endian) 56 bpfeb, // eBPF or extended BPF or 64-bit BPF (big endian) 66 r600, // R600: AMD GPUs HD2XXX - HD6XXX [all …]
|
| /third_party/python/ |
| D | configure.ac | 2 dnl * Please run autoreconf -if to test your changes! * 5 dnl Python's configure.ac file requires autoconf 2.69 and autoconf-archive. 18 [AC_MSG_ERROR([Please install autoconf-archive package and re-run autoreconf])] 23 [AC_MSG_ERROR([Please install pkgconf's m4 macro package and re-run autoreconf])] 27 dnl - _SAVE_VAR([VAR]) Helper for SAVE_ENV; stores VAR as save_VAR 28 dnl - _RESTORE_VAR([VAR]) Helper for RESTORE_ENV; restores VAR from save_VAR 29 dnl - SAVE_ENV Saves CFLAGS, LDFLAGS, LIBS, and CPPFLAGS 30 dnl - RESTORE_ENV Restores CFLAGS, LDFLAGS, LIBS, and CPPFLAGS 31 dnl - WITH_SAVE_ENV([SCRIPT]) Runs SCRIPT wrapped with SAVE_ENV/RESTORE_ENV 52 dnl PY_CHECK_FUNC(FUNCTION, [INCLUDES], [AC_DEFINE-VAR]) [all …]
|
| D | configure | 2 # Guess values for system-dependent variables and create Makefiles. 8 # Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation, 14 ## -------------------- ## 16 ## -------------------- ## 25 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 27 alias -g '${1+"$@"}'='"$@"' 30 case `(set -o) 2>/dev/null` in #( 32 set -o posix ;; #( 46 # Quoting is to prevent editors from complaining about space-tab. 56 # Ensure predictable behavior from utilities with locale-dependent output. [all …]
|
| /third_party/rust/crates/libc/libc-test/ |
| D | build.rs | 26 if target.contains("linux") in do_cc() 35 if target.contains("android") || target.contains("linux") { in do_cc() 38 if target.contains("linux") in do_cc() 55 t if t.contains("linux") => return test_linux(t), in do_ctest() 64 t if t.contains("nto-qnx") => return test_neutrino(t), in do_ctest() 65 t => panic!("unknown target {}", t), in do_ctest() 69 fn ctest_cfg() -> ctest::TestGenerator { in ctest_cfg() 97 // `libc-test/semver` dir. in do_semver() 103 // NOTE: Android doesn't include the unix file (or the Linux file) because in do_semver() 111 let os_arch = format!("{}-{}", os, arch); in do_semver() [all …]
|