Home
last modified time | relevance | path

Searched +full:linux +full:- +full:s390x (Results 1 – 25 of 321) sorted by relevance

12345678910>>...13

/third_party/rust/crates/libc/ci/docker/s390x-unknown-linux-gnu/
DDockerfile3 RUN apt-get update && apt-get install -y --no-install-recommends \
4 curl ca-certificates \
5 gcc libc6-dev \
6 gcc-s390x-linux-gnu libc6-dev-s390x-cross \
7 qemu-system-s390x \
10 COPY linux-s390x.sh /
11 RUN bash /linux-s390x.sh
13 COPY test-runner-linux /
15 ENV CARGO_TARGET_S390X_UNKNOWN_LINUX_GNU_LINKER=s390x-linux-gnu-gcc \
16 CARGO_TARGET_S390X_UNKNOWN_LINUX_GNU_RUNNER="/test-runner-linux s390x" \
[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/libunwind/
D.travis.yml5 - HOST=x86_64-linux-gnu
6 - HOST=x86-linux-gnu
7 - HOST=arm-linux-gnueabihf
8 - HOST=aarch64-linux-gnu
9 - HOST=mipsel-linux-gnu
11 #- HOST=powerpc64-linux-gnu
13 linux-s390x: &linux-s390x
14 os: linux
15 arch: s390x
16 env: BUILD=s390x-linux-gnu HOST=s390x-linux-gnu
[all …]
/third_party/node/deps/openssl/config/
Dopensslconf_asm.h6 In node, we statically mapped --dest-os and --dest-cpu options in
9 according to its target by checking pre-defined compiler macros.
19 | --dest-os | --dest-cpu | OpenSSL target arch | CI |
20 | --------- | ---------- | -------------------- | --- |
21 | aix | ppc | aix-gcc | o |
22 | aix | ppc64 | aix64-gcc-as | o |
23 | linux | ia32 | linux-elf | o |
24 | linux | x32 | linux-x32 | - |
25 | linux | x64 | linux-x86_64 | o |
26 | linux | arm | linux-armv4 | o |
[all …]
DMakefile1 # This Makefile is confirmed to be run only on Linux (CentOS and
4 UNAME_S := $(shell uname -s)
5 ifneq ($(UNAME_S),Linux)
6 $(error This can be run only on Linux)
12 ASM_ARCHS = aix64-gcc-as BSD-x86 BSD-x86_64 \
13 darwin64-x86_64-cc darwin-i386-cc darwin64-arm64-cc linux-aarch64 \
14 linux-armv4 linux-elf linux-x86_64 \
15 linux-ppc64le linux32-s390x linux64-s390x linux64-mips64\
16 solaris-x86-gcc solaris64-x86_64-gcc VC-WIN64A VC-WIN32
18 NO_ASM_ARCHS = VC-WIN64-ARM linux64-riscv64 linux64-loongarch64
[all …]
/third_party/node/deps/v8/infra/mb/
Dmb_config.pyl2 # Use of this source code is governed by a BSD-style license that can be
6 # This is a map of buildbot master names -> buildbot builder names ->
43 's390x.debug': 'default_debug_s390x',
44 's390x.optdebug': 'default_optdebug_s390x',
45 's390x.release': 'default_release_s390x',
46 's390x.debug.sim': 'default_debug_s390x_sim',
47 's390x.optdebug.sim': 'default_optdebug_s390x_sim',
48 's390x.release.sim': 'default_release_s390x_sim',
55 'linux-v8-dr': 'release_x64',
58 # Linux.
[all …]
/third_party/rust/crates/libc/ci/docker/s390x-unknown-linux-musl/
DDockerfile3 RUN apt-get update && apt-get install -y --no-install-recommends \
4 curl ca-certificates \
6 gcc-s390x-linux-gnu \
7 qemu-user
9 COPY install-musl.sh /
10 RUN sh /install-musl.sh s390x
12 # FIXME: shouldn't need the `-lgcc` here, shouldn't that be in libstd?
13 ENV CARGO_TARGET_S390X_UNKNOWN_LINUX_GNU_LINKER=s390x-linux-gnu-gcc \
14 CARGO_TARGET_S390X_UNKNOWN_LINUX_GNU_RUNNER="qemu-s390x -L /musl-s390x" \
15 CC_s390x_unknown_linux_gnu=musl-gcc \
[all …]
/third_party/protobuf/kokoro/release/protoc/linux/
Dbuild.sh3 set -x
9 git submodule update --init --recursive
14 # Cross-build for aarch64, ppc64le and s390x. Note: we do these builds first to avoid
19 sudo apt install -y g++-aarch64-linux-gnu
20 protoc-artifacts/build-protoc.sh linux aarch_64 protoc
22 sudo apt install -y g++-powerpc64le-linux-gnu
23 protoc-artifacts/build-protoc.sh linux ppcle_64 protoc
25 sudo apt install -y g++-s390x-linux-gnu
26 protoc-artifacts/build-protoc.sh linux s390x protoc
28 # Use docker image to build linux artifacts.
[all …]
/third_party/libuv/.github/workflows/
DCI-unix.yml1 name: CI-unix
6 - '**'
7 - '!docs/**'
8 - '!src/win/**'
9 - '!.**'
10 - '.github/workflows/CI-unix.yml'
13 - v[0-9].*
14 - master
17 build-linux:
18 runs-on: ubuntu-latest
[all …]
/third_party/protobuf/protoc-artifacts/
Dbuild-protoc.sh4 # protoc plugins into target/<OS>/<ARCH>/protoc-gen-*.exe
6 # Usage: ./build-protoc.sh <OS> <ARCH> <TARGET>
8 # <TARGET> can be "protoc" or "protoc-gen-javalite". Supported <OS> <ARCH>
11 # cygwin windows x86_32 Requires: i686-w64-mingw32-gcc
12 # cygwin windows x86_64 Requires: x86_64-w64-mingw32-gcc
13 # linux linux aarch_64 Requires: g++-aarch64-linux-gnu
14 # linux linux x86_32
15 # linux linux x86_64
16 # linux windows x86_32 Requires: i686-w64-mingw32-gcc
17 # linux windows x86_64 Requires: x86_64-w64-mingw32-gcc
[all …]
Dbuild-zip.sh3 if [ $# -ne 2 ]; then
7 TARGET: protoc | protoc-gen-javalite
11 $ $0 protoc-gen-javalite 3.0.0
13 This script will download pre-built protoc or protoc plugin binaries from maven
15 release page. If the target is protoc, well-known type .proto files will also be
17 dist/<TARGET>-<VERSION_NUMBER>-win32.zip
18 dist/<TARGET>-<VERSION_NUMBER>-win64.zip
19 dist/<TARGET>-<VERSION_NUMBER>-osx-x86_64.zip
20 dist/<TARGET>-<VERSION_NUMBER>-linux-x86_32.zip
21 dist/<TARGET>-<VERSION_NUMBER>-linux-x86_64.zip
[all …]
/third_party/libunwind/libunwind/src/
DMakefile.am5 # Don't link with start-files since we don't use any constructors/destructors:
14 lib_LTLIBRARIES += libunwind-ptrace.la
17 lib_LTLIBRARIES += libunwind-coredump.la
25 pkgconfig_DATA = libunwind-generic.pc
32 pkgconfig_DATA += ptrace/libunwind-ptrace.pc
36 pkgconfig_DATA += setjmp/libunwind-setjmp.pc
40 pkgconfig_DATA += coredump/libunwind-coredump.pc
43 ### libunwind-ptrace:
54 ### libunwind-coredump:
71 -version-info $(COREDUMP_SO_VERSION)
[all …]
/third_party/rust/crates/libc/ci/
Dinstall-musl.sh3 # Install musl and musl-sanitized linux kernel headers
4 # to musl-{$1} directory
6 set -ex
9 MUSL="musl-${MUSL_VERSION}"
12 curl --retry 5 https://www.musl-libc.org/releases/${MUSL}.tar.gz | tar xzf -
19 CC=aarch64-linux-gnu-gcc \
20 ./configure --prefix="/musl-${musl_arch}" --enable-wrapper=yes
21 make install -j4
26 CC=arm-linux-gnueabihf-gcc CFLAGS="-march=armv6 -marm -mfpu=vfp" \
27 ./configure --prefix="/musl-${musl_arch}" --enable-wrapper=yes
[all …]
/third_party/node/deps/openssl/
DREADME.md1 This has a new binding scheme in building OpenSSL-3.0.0 library with
2 Node.js. OpenSSL-3.0.0 uses a new build system with `Perl` for various
4 `openssl/Configurations/README-design.md` in the OpenSSL source for
9 and header files ) are pre-generated and stored into the
12 - `config/Makefile` and `config/generate_gypi.pl`
21 to `nmake` command. `config/Makefile_VC-WIN32` and
22 `config/Makefile_VC-WIN64A` are made by hand for the use of GNU
26 - gyp and gypi files (`openssl*.{gyp,gypi}`)
28 `openssl.gyp` has two targets of openssl and openssl-cli referred
34 - header files (`config/*.{h,h.tmpl}`)
[all …]
Dopenssl-cl_asm.gypi4 'includes': ['config/archs/aix64-gcc-as/asm/openssl-cl.gypi'],
5 }, 'target_arch=="ppc64" and OS=="linux" and node_byteorder =="little"', {
6 'includes': ['config/archs/linux-ppc64le/asm/openssl-cl.gypi'],
7 }, 'target_arch=="s390x" and OS=="linux"', {
8 'includes': ['config/archs/linux64-s390x/asm/openssl-cl.gypi'],
9 }, 'target_arch=="arm" and OS=="linux"', {
10 'includes': ['config/archs/linux-armv4/asm/openssl-cl.gypi'],
11 }, 'target_arch=="arm64" and OS=="linux"', {
12 'includes': ['config/archs/linux-aarch64/asm/openssl-cl.gypi'],
14 'includes': ['config/archs/BSD-x86/asm/openssl-cl.gypi'],
[all …]
Dopenssl-cl_asm_avx2.gypi4 'includes': ['config/archs/aix64-gcc-as/asm_avx2/openssl-cl.gypi'],
5 }, 'target_arch=="ppc64" and OS=="linux" and node_byteorder =="little"', {
6 'includes': ['config/archs/linux-ppc64le/asm_avx2/openssl-cl.gypi'],
7 }, 'target_arch=="s390x" and OS=="linux"', {
8 'includes': ['config/archs/linux64-s390x/asm_avx2/openssl-cl.gypi'],
9 }, 'target_arch=="arm" and OS=="linux"', {
10 'includes': ['config/archs/linux-armv4/asm_avx2/openssl-cl.gypi'],
11 }, 'target_arch=="arm64" and OS=="linux"', {
12 'includes': ['config/archs/linux-aarch64/asm_avx2/openssl-cl.gypi'],
14 'includes': ['config/archs/BSD-x86/asm_avx2/openssl-cl.gypi'],
[all …]
Dopenssl_no_asm.gypi5 'includes': ['config/archs/aix64-gcc-as/no-asm/openssl.gypi'],
6 }, 'target_arch=="ppc64" and OS=="linux" and node_byteorder =="little"', {
7 'includes': ['config/archs/linux-ppc64le/no-asm/openssl.gypi'],
8 }, 'target_arch=="s390x" and OS=="linux"', {
9 'includes': ['config/archs/linux64-s390x/no-asm/openssl.gypi'],
10 }, 'target_arch=="arm" and OS in ("linux", "android")', {
11 'includes': ['config/archs/linux-armv4/no-asm/openssl.gypi'],
12 }, 'target_arch=="arm64" and OS in ("linux", "android")', {
13 'includes': ['config/archs/linux-aarch64/no-asm/openssl.gypi'],
15 'includes': ['config/archs/BSD-x86/no-asm/openssl.gypi'],
[all …]
Dopenssl_asm.gypi4 'includes': ['config/archs/aix64-gcc-as/asm/openssl.gypi'],
5 }, 'target_arch=="ppc64" and OS=="linux" and node_byteorder =="little"', {
6 'includes': ['config/archs/linux-ppc64le/asm/openssl.gypi'],
7 }, 'target_arch=="s390x" and OS=="linux"', {
8 'includes': ['config/archs/linux64-s390x/asm/openssl.gypi'],
9 }, 'target_arch=="arm" and OS=="linux"', {
10 'includes': ['config/archs/linux-armv4/asm/openssl.gypi'],
11 }, 'target_arch=="arm64" and OS=="linux"', {
12 'includes': ['config/archs/linux-aarch64/asm/openssl.gypi'],
14 'includes': ['config/archs/darwin64-arm64-cc/asm/openssl.gypi'],
[all …]
Dopenssl-fips_asm_avx2.gypi4 'includes': ['config/archs/aix64-gcc-as/asm_avx2/openssl-fips.gypi'],
5 }, 'target_arch=="ppc64" and OS=="linux" and node_byteorder =="little"', {
6 'includes': ['config/archs/linux-ppc64le/asm_avx2/openssl-fips.gypi'],
7 }, 'target_arch=="s390x" and OS=="linux"', {
8 'includes': ['config/archs/linux64-s390x/asm_avx2/openssl-fips.gypi'],
9 }, 'target_arch=="arm" and OS=="linux"', {
10 'includes': ['config/archs/linux-armv4/asm_avx2/openssl-fips.gypi'],
11 }, 'target_arch=="arm64" and OS=="linux"', {
12 'includes': ['config/archs/linux-aarch64/asm_avx2/openssl-fips.gypi'],
14 'includes': ['config/archs/BSD-x86/asm_avx2/openssl-fips.gypi'],
[all …]
Dopenssl_asm_avx2.gypi4 'includes': ['config/archs/aix64-gcc-as/asm_avx2/openssl.gypi'],
5 }, 'target_arch=="ppc64" and OS=="linux" and node_byteorder =="little"', {
6 'includes': ['config/archs/linux-ppc64le/asm_avx2/openssl.gypi'],
7 }, 'target_arch=="s390x" and OS=="linux"', {
8 'includes': ['config/archs/linux64-s390x/asm_avx2/openssl.gypi'],
9 }, 'target_arch=="arm" and OS=="linux"', {
10 'includes': ['config/archs/linux-armv4/asm_avx2/openssl.gypi'],
11 }, 'target_arch=="arm64" and OS=="linux"', {
12 'includes': ['config/archs/linux-aarch64/asm_avx2/openssl.gypi'],
14 'includes': ['config/archs/BSD-x86/asm_avx2/openssl.gypi'],
[all …]
Dopenssl-cl_no_asm.gypi4 'includes': ['config/archs/aix64-gcc-as/no-asm/openssl-cl.gypi'],
5 }, 'target_arch=="ppc64" and OS=="linux" and node_byteorder =="little"', {
6 'includes': ['config/archs/linux-ppc64le/no-asm/openssl-cl.gypi'],
7 }, 'target_arch=="s390x" and OS=="linux"', {
8 'includes': ['config/archs/linux64-s390x/no-asm/openssl-cl.gypi'],
9 }, 'target_arch=="arm" and OS in ("linux", "android")', {
10 'includes': ['config/archs/linux-armv4/no-asm/openssl-cl.gypi'],
11 }, 'target_arch=="arm64" and OS in ("linux", "android")', {
12 'includes': ['config/archs/linux-aarch64/no-asm/openssl-cl.gypi'],
14 'includes': ['config/archs/VC-WIN64-ARM/no-asm/openssl-cl.gypi'],
[all …]
Dopenssl-fips_no_asm.gypi5 'includes': ['config/archs/aix64-gcc-as/no-asm/openssl-fips.gypi'],
6 }, 'target_arch=="ppc64" and OS=="linux" and node_byteorder =="little"', {
7 'includes': ['config/archs/linux-ppc64le/no-asm/openssl-fips.gypi'],
8 }, 'target_arch=="s390x" and OS=="linux"', {
9 'includes': ['config/archs/linux64-s390x/no-asm/openssl-fips.gypi'],
10 }, 'target_arch=="arm" and OS in ("linux", "android")', {
11 'includes': ['config/archs/linux-armv4/no-asm/openssl-fips.gypi'],
12 }, 'target_arch=="arm64" and OS in ("linux", "android")', {
13 'includes': ['config/archs/linux-aarch64/no-asm/openssl-fips.gypi'],
15 'includes': ['config/archs/BSD-x86/no-asm/openssl-fips.gypi'],
[all …]
Dopenssl-fips_asm.gypi4 'includes': ['config/archs/aix64-gcc-as/asm/openssl-fips.gypi'],
5 }, 'target_arch=="ppc64" and OS=="linux" and node_byteorder =="little"', {
6 'includes': ['config/archs/linux-ppc64le/asm/openssl-fips.gypi'],
7 }, 'target_arch=="s390x" and OS=="linux"', {
8 'includes': ['config/archs/linux64-s390x/asm/openssl-fips.gypi'],
9 }, 'target_arch=="arm" and OS=="linux"', {
10 'includes': ['config/archs/linux-armv4/asm/openssl-fips.gypi'],
11 }, 'target_arch=="arm64" and OS=="linux"', {
12 'includes': ['config/archs/linux-aarch64/asm/openssl-fips.gypi'],
14 'includes': ['config/archs/darwin64-arm64-cc/asm/openssl-fips.gypi'],
[all …]
/third_party/rust/crates/nix/src/sys/
Dstatfs.rs1 //! Get filesystem statistics, non-portably
4 #[cfg(not(any(target_os = "linux", target_os = "android")))]
23 #[cfg(target_os = "linux")]
37 if #[cfg(any(target_os = "android", target_os = "fuchsia", target_os = "linux"))] {
40 (fd: libc::c_int, buf: *mut type_of_statfs) -> libc::c_int
43 (path: *const libc::c_char, buf: *mut type_of_statfs) -> libc::c_int
48 (fd: libc::c_int, buf: *mut type_of_statfs) -> libc::c_int
51 (path: *const libc::c_char, buf: *mut type_of_statfs) -> libc::c_int
65 #[cfg(all(target_os = "linux", target_arch = "s390x"))]
67 #[cfg(all(target_os = "linux", any(target_env = "musl", target_env = "ohos")))]
[all …]
/third_party/mesa3d/.gitlab-ci/container/
Dcreate-cross-file.sh4 cross_file="/cross_file-$arch.txt"
5 /usr/share/meson/debcrossgen --arch $arch -o "$cross_file"
7 sed -i "s|/usr/bin/\([^-]*\)-linux-gnu\([^-]*\)-g|/usr/lib/ccache/\\1-linux-gnu\\2-g|g" "$cross_fil…
10 sed -i "s|cpu_family = 'i686'|cpu_family = 'x86'|g" "$cross_file"
12 # Rely on qemu-user being configured in binfmt_misc on the host
13 sed -i -e '/\[properties\]/a\' -e "needs_exe_wrapper = False" "$cross_file"
16 cc=`sed -n 's|c = .\(.*\).|\1|p' < $cross_file`
18 rust_target=aarch64-unknown-linux-gnu
20 rust_target=armv7-unknown-linux-gnueabihf
22 rust_target=i686-unknown-linux-gnu
[all …]

12345678910>>...13