Home
last modified time | relevance | path

Searched +full:x86_64 +full:- +full:unknown +full:- +full:linux +full:- +full:gnux32 (Results 1 – 14 of 14) sorted by relevance

/third_party/rust/crates/linux-raw-sys/.github/workflows/
Dmain.yml6 - 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/
Dsemver.sh5 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 …]
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/crates/nix/
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 …]
D.cirrus.yml8 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/
Dbors.yml6 - 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/
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/rust/crates/linux-raw-sys/gen/src/
Dmain.rs1 //! 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/
DTriple.cpp1 //===--- 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/
DTriple.h1 //===-- 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/ltp/tools/sparse/sparse-src/
Dcgcc1 #!/usr/bin/perl -w
2 # -----------------------------------------------------------------------------
26 $nargs--;
32 $do_check = 1 if /^[^-].*\.c$/;
35 $do_check = 1 if $_ eq '-';
37 if (/^-(o|MF|MT|MQ)$/) {
40 # (non-existant) source file or as an option.
45 # Ignore the extension if '-x c' is given.
46 if ($_ eq '-x') {
53 $m32 = 1 if /^-m32$/;
[all …]
/third_party/python/
Dconfigure.ac2 dnl * Please run autoreconf -if to test your changes! *
5 dnl Python's configure script requires autoconf 2.69 and autoconf-archive.
18 [AC_MSG_ERROR([Please install autoconf-archive package and re-run autoreconf])]
22 if test "$srcdir" != . -a "$srcdir" != "$(pwd)"; then
23 # If we're building out-of-tree, we need to make sure the following
25 # Objects/ -> typeslots.inc
26 # Include/ -> Python.h
27 # Python/ -> importlib.h
29 # regenerated when building out-of-tree, regardless of whether or not
30 # the $srcdir counterpart is up-to-date. This is an acceptable trade
[all …]
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
13 ## -------------------- ##
15 ## -------------------- ##
19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
24 alias -g '${1+"$@"}'='"$@"'
27 case `(set -o) 2>/dev/null` in #(
29 set -o posix ;; #(
45 if test -z "$BASH_VERSION$ZSH_VERSION" \
[all …]
/third_party/rust/crates/libc/libc-test/
Dbuild.rs26 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 …]