Home
last modified time | relevance | path

Searched +full:- +full:x86_64 +full:- +full:unknown +full:- +full:linux +full:- +full:gnu (Results 1 – 25 of 242) sorted by relevance

12345678910

/third_party/rust/crates/libc/
DCargo.toml5 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/
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 …]
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 …]
/third_party/rust/crates/nix/
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 …]
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 …]
DCargo.toml6 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 …]
/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/minimal-lexical/.github/workflows/
DCross.yml11 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
23 # Linux
24 - aarch64-unknown-linux-gnu
25 - arm-unknown-linux-gnueabi
[all …]
/third_party/libabigail/tests/data/test-read-dwarf/
Dtest22-pr19097-libstdc++.so.6.0.17.so.abi1 <abi-corpus version='2.2' soname='libstdc++.so.6'>
2 <elf-needed>
5 <dependency name='ld-linux-x86-64.so.2'/>
7 </elf-needed>
8 <elf-function-symbols>
9-symbol name='_ZN10__cxxabiv116__enum_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes'…
10-symbol name='_ZN10__cxxabiv116__enum_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes'…
11-symbol name='_ZN10__cxxabiv116__enum_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes'…
12-symbol name='_ZN10__cxxabiv117__array_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes…
13-symbol name='_ZN10__cxxabiv117__array_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes…
[all …]
/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/.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 …]
Dmain.yml8 - master
15 name: Docker Linux Tier1
16 runs-on: ubuntu-22.04
18 fail-fast: true
21 i686-unknown-linux-gnu,
22 x86_64-unknown-linux-gnu,
25 - uses: actions/checkout@v3
26 - name: Setup Rust toolchain
27 run: TARGET=${{ matrix.target }} sh ./ci/install-rust.sh
28 - name: Execute run-docker.sh
[all …]
/third_party/rust/crates/humantime/
Dvagga.yaml47 - !Ubuntu xenial
48 - !UbuntuUniverse
49 - !Install [ca-certificates, build-essential, vim]
51 - !TarInstall
52 url: "https://static.rust-lang.org/dist/rust-1.31.0-x86_64-unknown-linux-gnu.tar.gz"
53 script: "./install.sh --prefix=/usr \
54 --components=rustc,rust-std-x86_64-unknown-linux-gnu,cargo"
55 - &bulk !Tar
56 url: "https://github.com/tailhook/bulk/releases/download/v0.4.10/bulk-v0.4.10.tar.gz"
66 - !UbuntuRelease
[all …]
/third_party/rust/crates/autocfg/src/
Dtests.rs6 fn core_std(&self, path: &str) -> String { in core_std()
19 fn for_test() -> Result<Self, super::error::Error> { in for_test()
139 &Some("x86_64-unknown-linux-gnu".into()), in dir_does_not_contain_target()
140 Path::new("/project/target/debug/build/project-ea75983148559682/out"), in dir_does_not_contain_target()
148 &Some("x86_64-unknown-linux-gnu".into()), in dir_does_contain_target()
150 "/project/target/x86_64-unknown-linux-gnu/debug/build/project-0147aca016480b9d/out" in dir_does_contain_target()
159 &Some("x86_64-unknown-linux-gnu".into()), in dir_does_not_contain_target_with_custom_target_dir()
160 Path::new("/project/custom/debug/build/project-ea75983148559682/out"), in dir_does_not_contain_target_with_custom_target_dir()
168 &Some("x86_64-unknown-linux-gnu".into()), in dir_does_contain_target_with_custom_target_dir()
170 "/project/custom/x86_64-unknown-linux-gnu/debug/build/project-0147aca016480b9d/out" in dir_does_contain_target_with_custom_target_dir()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/linux/include/llvm/Config/
Dllvm-config.h1 /*===------- llvm/Config/llvm-config.h - llvm configuration -------*- C -*-===*/
6 /* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */
8 /*===----------------------------------------------------------------------===*/
12 This is a C header that can be included in the llvm-c headers. */
32 #define LLVM_DEFAULT_TARGET_TRIPLE "x86_64-unknown-linux-gnu"
34 #define LLVM_DEFAULT_TARGET_TRIPLE "i686-pc-linux-gnu"
36 #define LLVM_DEFAULT_TARGET_TRIPLE "armv7-linux-gnueabihf"
38 #define LLVM_DEFAULT_TARGET_TRIPLE "aarch64-linux-gnu"
40 #define LLVM_DEFAULT_TARGET_TRIPLE "mipsel-linux-gnu"
42 #define LLVM_DEFAULT_TARGET_TRIPLE "mips64el-linux-gnuabi64"
[all …]
/third_party/rust/crates/rust-openssl/.circleci/
Dconfig.yml6 key: registry-{{ .BuildNum }}
8 - /usr/local/cargo/registry/index
10 key: lib-{{ checksum "~/lib_key" }}-{{ checksum "test/build_openssl.sh" }}
18 - /openssl
20 key: deps-1.19.0-{{ checksum "Cargo.lock" }}-{{ checksum "~/lib_key" }}-2
28 - target
29 - /usr/local/cargo/registry/cache
34 - image: rust:1.19.0
36 - checkout
37 - run: apt-get update
[all …]
/third_party/elfutils/tests/
Drun-get-files.sh7 # it under the terms of the GNU General Public License as published by
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 . $srcdir/test-subr.sh
23 testrun_compare ${abs_builddir}/get-files testfile testfile2 <<\EOF
25 dirs[0] = "/home/drepper/gnu/new-bu/build/ttt"
27 file[1] = "/home/drepper/gnu/new-bu/build/ttt/m.c"
29 dirs[0] = "/home/drepper/gnu/new-bu/build/ttt"
31 file[1] = "/home/drepper/gnu/new-bu/build/ttt/b.c"
[all …]
Drun-next-files.sh2 # Variant of run-get-files that uses dwarf_next_lines.
7 # it under the terms of the GNU General Public License as published by
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 . $srcdir/test-subr.sh
23 testrun_compare ${abs_builddir}/next-files testfile testfile2 <<\EOF
25 dirs[0] = "/home/drepper/gnu/new-bu/build/ttt"
27 file[1] = "/home/drepper/gnu/new-bu/build/ttt/m.c"
29 dirs[0] = "/home/drepper/gnu/new-bu/build/ttt"
[all …]
/third_party/protobuf/third_party/googletest/googletest/build-aux/
Dconfig.guess3 # Copyright 1992-2018 Free Software Foundation, Inc.
5 timestamp='2018-02-24'
8 # under the terms of the GNU General Public License as published by
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <https://www.gnu.org/licenses/>.
20 # As a special exception to the GNU General Public License, if you
25 # of the GNU General Public License, version 3 ("GPLv3").
30 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
32 # Please send patches to <config-patches@gnu.org>.
[all …]
/third_party/protobuf/
Dconfig.guess3 # Copyright 1992-2018 Free Software Foundation, Inc.
5 timestamp='2018-02-24'
8 # under the terms of the GNU General Public License as published by
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <https://www.gnu.org/licenses/>.
20 # As a special exception to the GNU General Public License, if you
25 # of the GNU General Public License, version 3 ("GPLv3").
30 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
32 # Please send patches to <config-patches@gnu.org>.
[all …]
/third_party/protobuf/third_party/googletest/googlemock/build-aux/
Dconfig.guess3 # Copyright 1992-2018 Free Software Foundation, Inc.
5 timestamp='2018-02-24'
8 # under the terms of the GNU General Public License as published by
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <https://www.gnu.org/licenses/>.
20 # As a special exception to the GNU General Public License, if you
25 # of the GNU General Public License, version 3 ("GPLv3").
30 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
32 # Please send patches to <config-patches@gnu.org>.
[all …]
/third_party/skia/third_party/externals/libpng/
Dconfig.guess3 # Copyright 1992-2018 Free Software Foundation, Inc.
5 timestamp='2018-03-08'
8 # under the terms of the GNU General Public License as published by
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <https://www.gnu.org/licenses/>.
20 # As a special exception to the GNU General Public License, if you
25 # of the GNU General Public License, version 3 ("GPLv3").
30 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
32 # Please send patches to <config-patches@gnu.org>.
[all …]
/third_party/skia/third_party/externals/icu/source/
Dconfig.guess3 # Copyright 1992-2017 Free Software Foundation, Inc.
5 timestamp='2017-11-07'
8 # under the terms of the GNU General Public License as published by
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <https://www.gnu.org/licenses/>.
20 # As a special exception to the GNU General Public License, if you
25 # of the GNU General Public License, version 3 ("GPLv3").
30 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
32 # Please send patches to <config-patches@gnu.org>.
[all …]
/third_party/skia/third_party/externals/microhttpd/
Dconfig.guess3 # Copyright 1992-2014 Free Software Foundation, Inc.
5 timestamp='2014-03-23'
8 # under the terms of the GNU General Public License as published by
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <http://www.gnu.org/licenses/>.
20 # As a special exception to the GNU General Public License, if you
25 # of the GNU General Public License, version 3 ("GPLv3").
30 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
32 # Please send patches with a ChangeLog entry to config-patches@gnu.org.
[all …]
/third_party/lame/
Dconfig.guess3 # Copyright 1992-2018 Free Software Foundation, Inc.
5 timestamp='2018-08-29'
8 # under the terms of the GNU General Public License as published by
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <https://www.gnu.org/licenses/>.
20 # As a special exception to the GNU General Public License, if you
25 # of the GNU General Public License, version 3 ("GPLv3").
30 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
32 # Please send patches to <config-patches@gnu.org>.
[all …]

12345678910