Home
last modified time | relevance | path

Searched +full:gcc +full:- +full:aarch64 +full:- +full:linux +full:- +full:gnu (Results 1 – 25 of 138) sorted by relevance

123456

/third_party/rust/crates/rustix/.github/workflows/
Dtest-users.yml10 runs-on: ${{ matrix.os }}
15 …build: [ubuntu, i686-linux, aarch64-linux, powerpc64le-linux, riscv64-linux, mipsel-linux, mips64e…
17 - build: ubuntu
18 os: ubuntu-latest
20 - build: i686-linux
21 os: ubuntu-latest
23 target: i686-unknown-linux-gnu
24 gcc_package: gcc-i686-linux-gnu
25 gcc: i686-linux-gnu-gcc
26 libc_package: libc-dev-i386-cross
[all …]
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/liburing/.github/workflows/
Dbuild.yml10 runs-on: ubuntu-22.04
13 fail-fast: false
16 # x86-64 gcc
17 - arch: x86_64
18 cc_pkg: gcc-x86-64-linux-gnu
19 cxx_pkg: g++-x86-64-linux-gnu
20 cc: x86_64-linux-gnu-gcc
21 cxx: x86_64-linux-gnu-g++
23 # x86-64 clang
24 - arch: x86_64
[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/rust/crates/linux-raw-sys/gen/ioctl/
Dgenerate.sh2 set -ueo pipefail
4 # Linux's ioctl codes using function-style macros in their definition which
15 cflags="-Wall"
20 i686-linux-gnu-gcc -Iinclude -c list.c $cflags
21 i686-linux-gnu-gcc main.c list.o -o main.exe $cflags
23 x86_64-linux-gnu-gcc -Iinclude -c list.c $cflags
24 x86_64-linux-gnu-gcc main.c list.o -o main.exe $cflags
26 aarch64-linux-gnu-gcc -Iinclude -c list.c $cflags
27 aarch64-linux-gnu-gcc main.c list.o -o main.exe $cflags
28 qemu-aarch64 -L /usr/aarch64-linux-gnu ./main.exe >> "$out"
[all …]
/third_party/rust/rust/src/ci/docker/host-x86_64/dist-various-1/
DDockerfile3 RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
10 libtool-bin \
14 xz-utils \
15 libncurses-dev \
18 ninja-build \
21 ca-certificates \
26 xz-utils \
27 zlib1g-dev \
28 g++-arm-linux-gnueabi \
29 g++-arm-linux-gnueabihf \
[all …]
/third_party/protobuf/toolchain/
DBUILD.bazel14 "osx-x86_64": "cc-compiler-osx-x86_64",
15 "osx-aarch_64": "cc-compiler-osx-aarch_64",
16 "linux-aarch_64": "cc-compiler-linux-aarch_64",
17 "linux-ppcle_64": "cc-compiler-linux-ppcle_64",
18 "linux-s390_64": "cc-compiler-linux-s390_64",
19 "linux-x86_32": "cc-compiler-linux-x86_32",
20 "linux-x86_64": "cc-compiler-linux-x86_64",
21 "win32": "cc-compiler-windows-x86_32",
22 "win64": "cc-compiler-windows-x86_64",
23 "k8": "cc-compiler-k8",
[all …]
/third_party/rust/crates/libc/ci/docker/aarch64-unknown-linux-gnu/
DDockerfile2 RUN apt-get update && apt-get install -y --no-install-recommends \
3 gcc libc6-dev ca-certificates \
4 gcc-aarch64-linux-gnu libc6-dev-arm64-cross qemu-user
5 ENV CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc \
6 CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUNNER="qemu-aarch64 -L /usr/aarch64-linux-gnu" \
/third_party/skia/m133/third_party/externals/libwebp/infra/
Dcompile.sh32 set -xe
34 WORKSPACE=${WORKSPACE:-"$(mktemp -d -t webp.XXX)"}
43 BUILD_TYPE supported build type: (shared, static, static-debug)
45 aarch64-linux-clang
46 aarch64-linux-gnu
47 arm-linux-gnueabi
48 arm-neon-linux-gnueabi
50 cmake-aarch64
51 cmake-arm
52 cmake-clang
[all …]
/third_party/rust/rust/compiler/rustc_codegen_gcc/
Dconfig.sh1 set -e
5 if [ -f ./gcc_path ]; then
13 if [[ "$unamestr" == 'Linux' ]]; then
22 HOST_TRIPLE=$(rustc -vV | grep host | cut -d: -f2 | tr -d " ")
24 #TARGET_TRIPLE="m68k-unknown-linux-gnu"
29 if [[ "$TARGET_TRIPLE" == "m68k-unknown-linux-gnu" ]]; then
30 TARGET_TRIPLE="mips-unknown-linux-gnu"
31 linker='-Clinker=m68k-linux-gcc'
32 elif [[ "$TARGET_TRIPLE" == "aarch64-unknown-linux-gnu" ]]; then
33 # We are cross-compiling for aarch64. Use the correct linker and run tests in qemu.
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/lite/tools/kernel_builder/ascend/tbe_and_aicpu/cpukernel/
Dtoolchain.cmake3 set(CMAKE_SYSTEM_NAME Linux)
10 set(CMAKE_CXX_COMPILER ${TOOLCHAIN_DIR}-g++)
11 set(CMAKE_C_COMPILER ${TOOLCHAIN_DIR}-gcc)
20 set(CMAKE_C_COMPILER ${TOOLCHAIN_DIR}/bin/aarch64-linux-gnu-gcc)
21 set(CMAKE_CXX_COMPILER ${TOOLCHAIN_DIR}/bin/aarch64-linux-gnu-g++)
23 set(CMAKE_C_COMPILER ${TOOLCHAIN_DIR}/bin/aarch64-target-linux-gnu-gcc)
24 set(CMAKE_CXX_COMPILER ${TOOLCHAIN_DIR}/bin/aarch64-target-linux-gnu-g++)
/third_party/rust/rust/src/tools/rust-analyzer/.github/workflows/
Drelease.yaml4 - cron: "0 0 * * *" # midnight UTC
10 - release
11 - trigger-nightly
16 RUSTFLAGS: "-D warnings -W unreachable-pub"
20 CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
21 CARGO_TARGET_ARM_UNKNOWN_LINUX_GNUEABIHF_LINKER: arm-linux-gnueabihf-gcc
28 - os: windows-latest
29 target: x86_64-pc-windows-msvc
30 code-target: win32-x64
31 - os: windows-latest
[all …]
/third_party/rust/rust/src/ci/docker/host-x86_64/dist-aarch64-linux/
DDockerfile3 COPY scripts/cross-apt-packages.sh /scripts/
4 RUN sh /scripts/cross-apt-packages.sh
6 COPY scripts/crosstool-ng.sh /scripts/
7 RUN sh /scripts/crosstool-ng.sh
9 COPY scripts/rustbuild-setup.sh /scripts/
10 RUN sh /scripts/rustbuild-setup.sh
13 COPY scripts/crosstool-ng-build.sh /scripts/
14 COPY host-x86_64/dist-aarch64-linux/aarch64-linux-gnu.defconfig /tmp/crosstool.defconfig
15 RUN /scripts/crosstool-ng-build.sh
20 ENV PATH=$PATH:/x-tools/aarch64-unknown-linux-gnu/bin
[all …]
/third_party/rust/rust/src/ci/docker/host-x86_64/dist-various-2/
DDockerfile3 COPY scripts/cross-apt-packages.sh /scripts/
4 RUN sh /scripts/cross-apt-packages.sh
7 RUN sed -i 's/^# deb-src/deb-src/' /etc/apt/sources.list
9 RUN apt-get update && apt-get build-dep -y clang llvm && apt-get install -y --no-install-recommends…
10 build-essential \
11 # gcc-multilib can not be installed together with gcc-arm-linux-gnueabi
12 g++-8-multilib \
13 libedit-dev \
14 libgmp-dev \
15 libisl-dev \
[all …]
/third_party/libunwind/
D.travis.yml3 compiler: gcc
5 - 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
16 env: BUILD=s390x-linux-gnu HOST=s390x-linux-gnu
[all …]
DREADME3 …I - Unix](https://github.com/libunwind/libunwind/actions/workflows/CI-unix.yml/badge.svg)](https:/…
4- Windows](https://github.com/libunwind/libunwind/actions/workflows/CI-win.yml/badge.svg)](https:…
6 This library supports several architecture/operating-system combinations:
9 | :------ | :----------- | :----- |
10 | Linux | x86-64 | ✓ |
11 | Linux | x86 | ✓ |
12 | Linux | ARM | ✓ |
13 | Linux | AArch64 | ✓ |
14 | Linux | PPC32 | ✓ |
15 | Linux | PPC64 | ✓ |
[all …]
/third_party/elfutils/tests/
Drun-readelf-n.sh5 # it under the terms of the GNU General Public License as published by
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 . $srcdir/test-subr.sh
19 # - testfile-gnu-property-note.c
26 # gcc -fcf-protection -c testfile-gnu-property-note.c
27 # gcc -o testfile-gnu-property-note testfile-gnu-property-note.o
28 # eu-strip --strip-sections testfile-gnu-property-note
30 testfiles testfile-gnu-property-note.o testfile-gnu-property-note
[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 -
16 aarch64)
17 musl_arch=aarch64
19 CC=aarch64-linux-gnu-gcc \
20 ./configure --prefix="/musl-${musl_arch}" --enable-wrapper=yes
21 make install -j4
[all …]
/third_party/rust/rust/compiler/rustc_codegen_cranelift/.github/workflows/
Dmain.yml4 - push
5 - pull_request
9 runs-on: ubuntu-latest
10 timeout-minutes: 10
13 - uses: actions/checkout@v3
15 - name: Install rustfmt
19 - name: Rustfmt
21 cargo fmt --check
22 rustfmt --check build_system/main.rs
23 rustfmt --check example/*
[all …]
/third_party/lz4/.circleci/
Dconfig.yml17 shell: /bin/bash --login
19 …t or see https://circleci.com/docs/2.0/env-vars/#interpolating-environment-variables-to-set-other-
21 CIRCLE_ARTIFACTS: /tmp/circleci-artifacts
22 CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
23 …# In CircleCI 1.0 we used a pre-configured image with a large number of languages and other packag…
24 # In CircleCI 2.0 you can now specify your own image, or use one of our pre-configured images.
26 # We have selected a pre-built image that mirrors the build environment we use on
29 # VM instead of a container) see https://circleci.com/docs/2.0/executor-types/
30 # To see the list of pre-built images that CircleCI provides for most common languages see
31 # https://circleci.com/docs/2.0/circleci-images/
[all …]
/third_party/lz4/.circleci/images/primary/
DDockerfile1 FROM circleci/buildpack-deps:bionic
3 RUN sudo apt-get -y -qq update
4 RUN sudo apt-get -y install software-properties-common
5 RUN sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
6 RUN sudo apt-get -y install cmake
7 RUN sudo apt-get -y install qemu-system-ppc qemu-user-static qemu-system-arm
8 RUN sudo apt-get -y install libc6-dev-armel-cross libc6-dev-arm64-cross libc6-dev-i386
9 RUN sudo apt-get -y install clang clang-tools
10 RUN sudo apt-get -y install gcc-5 gcc-5-multilib gcc-6
11 RUN sudo apt-get -y install valgrind
[all …]
/third_party/f2fs-tools/.github/workflows/
Dci.yml1 # See also https://docs.github.com/en/actions/learn-github-actions/expressions
2 # See also https://github.com/marketplace/actions/setup-android-ndk
10 runs-on: ubuntu-latest
12 fail-fast: false
15 - android
16 - linux-gcc
17 - linux-clang
18 - linux-x86-gcc
19 - linux-powerpc64-gcc
20 - linux-mingw64-gcc
[all …]
/third_party/rust/crates/libc/ci/docker/aarch64-unknown-linux-musl/
DDockerfile3 RUN apt-get update && apt-get install -y --no-install-recommends \
4 gcc make libc6-dev git curl ca-certificates \
5 gcc-aarch64-linux-gnu qemu-user
7 COPY install-musl.sh /
8 RUN sh /install-musl.sh aarch64
10 # FIXME: shouldn't need the `-lgcc` here, shouldn't that be in std?
11 ENV PATH=$PATH:/musl-aarch64/bin:/rust/bin \
12 CC_aarch64_unknown_linux_musl=musl-gcc \
13 RUSTFLAGS='-Clink-args=-lgcc -L /musl-aarch64/lib' \
14 CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER=musl-gcc \
[all …]
/third_party/rust/rust/compiler/rustc_codegen_cranelift/build_system/
Dutils.rs23 "aarch64-unknown-linux-gnu" => { in set_cross_linker_and_runner()
24 // We are cross-compiling for aarch64. Use the correct linker and run tests in qemu. in set_cross_linker_and_runner()
25 self.rustflags += " -Clinker=aarch64-linux-gnu-gcc"; in set_cross_linker_and_runner()
26 self.rustdocflags += " -Clinker=aarch64-linux-gnu-gcc"; in set_cross_linker_and_runner()
28 "qemu-aarch64".to_owned(), in set_cross_linker_and_runner()
29 "-L".to_owned(), in set_cross_linker_and_runner()
30 "/usr/aarch64-linux-gnu".to_owned(), in set_cross_linker_and_runner()
33 "s390x-unknown-linux-gnu" => { in set_cross_linker_and_runner()
34 // We are cross-compiling for s390x. Use the correct linker and run tests in qemu. in set_cross_linker_and_runner()
35 self.rustflags += " -Clinker=s390x-linux-gnu-gcc"; in set_cross_linker_and_runner()
[all …]
/third_party/libwebsockets/contrib/
Dcross-aarch64.cmake6 # cmake .. -DCMAKE_TOOLCHAIN_FILE=../cross-arm-linux-gnueabihf.cmake
10 set(CMAKE_SYSTEM_NAME Linux)
11 set(CMAKE_SYSTEM_PROCESSOR aarch64)
14 set(CMAKE_C_COMPILER "aarch64-linux-gnu-gcc")
15 set(CMAKE_CXX_COMPILER "aarch64-linux-gnu-g++")
19 # things according to their local policy, eg, Fedora is -O2 and Ubuntu is -O3
21 # our desire for cross-build release optimization policy for code built to run
25 # sane value for cross-build here. Notice some gcc versions enable broken
26 # optimizations with -O3.
29 set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O2")
[all …]

123456