Home
last modified time | relevance | path

Searched +full:gcc +full:- +full:arm +full:- +full:linux +full:- +full:gnueabi (Results 1 – 25 of 83) sorted by relevance

1234

/external/clang/unittests/Driver/
DToolChainTest.cpp1 //===- unittests/Driver/ToolChainTest.cpp --- ToolChain tests -------------===//
8 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
36 Driver TheDriver("/bin/clang", "arm-linux-gnueabihf", Diags, in TEST()
42 "/usr/lib/gcc/arm-linux-gnueabi/4.6.1/crtbegin.o", in TEST()
43 "/usr/lib/gcc/arm-linux-gnueabi/4.6.1/crtend.o", in TEST()
44 "/usr/lib/gcc/arm-linux-gnueabihf/4.6.3/crtbegin.o", in TEST()
45 "/usr/lib/gcc/arm-linux-gnueabihf/4.6.3/crtend.o", in TEST()
46 "/usr/lib/arm-linux-gnueabi/crt1.o", in TEST()
47 "/usr/lib/arm-linux-gnueabi/crti.o", in TEST()
[all …]
/external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/
Dconfigure.yml4 ci-configure:
6 runs-on: ${{ matrix.os }}
8 fail-fast: false
11 - name: Ubuntu GCC
12 os: ubuntu-latest
13 compiler: gcc
14 configure-args: --warn
16 - name: Ubuntu 18.04 GCC
17 os: ubuntu-18.04
18 compiler: gcc
[all …]
Dcmake.yml4 ci-cmake:
6 runs-on: ${{ matrix.os }}
8 fail-fast: false
11 - name: Ubuntu 18.04 GCC
12 os: ubuntu-18.04
13 compiler: gcc
14 cxx-compiler: g++
16 - name: Ubuntu GCC ASAN
17 os: ubuntu-latest
18 compiler: gcc
[all …]
/external/liburing/.github/workflows/
Dbuild.yml10 runs-on: ubuntu-latest
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 …]
/external/clang/test/Driver/
Dlinux-ld.c1 // General tests that ld invocations on Linux targets sane. Note that we use
4 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
5 // RUN: --target=i386-unknown-linux \
6 // RUN: --gcc-toolchain="" \
7 // RUN: --sysroot=%S/Inputs/basic_linux_tree \
8 // RUN: | FileCheck --check-prefix=CHECK-LD-32 %s
9 // CHECK-LD-32-NOT: warning:
10 // CHECK-LD-32: "{{.*}}ld{{(.exe)?}}" "--sysroot=[[SYSROOT:[^"]+]]"
11 // CHECK-LD-32: "{{.*}}/usr/lib/gcc/i386-unknown-linux/4.6.0{{/|\\\\}}crtbegin.o"
12 // CHECK-LD-32: "-L[[SYSROOT]]/usr/lib/gcc/i386-unknown-linux/4.6.0"
[all …]
/external/llvm/utils/crosstool/ARM/
DREADME1 HOWTO create an LLVM crosstool from x86_64/Linux to ARM/Linux
4 1. % llvm/utils/crosstool/create-snapshots.sh
6 This will create llvm-[REV_L].tar.bz2 and llvm-gcc-4.2-[REV_G].tar.bz2,
9 REV_G is the revision at which "llvm-gcc-4.2" was checked out
17 For example, if you're using $CROSS_TARGET == "arm-none-linux-gnueabi" then
20 …esourcery.com/sgpp/lite/arm/portal/package1787/public/arm-none-linux-gnueabi/arm-2007q3-51-arm-non…
23 not work -- you'll need to go to http://www.codesourcery.com and find the
34 LLVM_PKG_PATH=[dir where you stored your LLVM and LLVM-GCC snapshots] \
37 build-install-linux.sh
Dbuild-install-linux.sh3 # Compiles and installs a Linux/x86_64 -> Linux/ARM crosstool based on LLVM and
4 # LLVM-GCC-4.2 using SVN snapshots in provided tarballs.
6 set -o nounset
7 set -o errexit
9 echo -n "Welcome to LLVM Linux/X86_64 -> Linux/ARM crosstool "
12 readonly INSTALL_ROOT="${INSTALL_ROOT:-/usr/local/crosstool}"
14 readonly SCRATCH_ROOT=$(mktemp -d "${TMPDIR:-/tmp}/llvm-project.XXXXXX")
18 readonly CROSS_HOST="x86_64-unknown-linux-gnu"
19 readonly CROSS_TARGET="arm-none-linux-gnueabi"
20 readonly CROSS_MARCH="${CROSS_MARCH:-armv6}"
[all …]
/external/libxaac/cmake/toolchains/
Daarch32_toolchain.cmake1 set(CMAKE_SYSTEM_NAME Linux)
8 set(CMAKE_C_COMPILER arm-none-linux-gnueabi-gcc)
9 set(CMAKE_CXX_COMPILER arm-none-linux-gnueabi-g++)
10 set(CMAKE_C_COMPILER_AR arm-none-linux-gnueabi-ar)
11 set(CMAKE_CXX_COMPILER_AR arm-none-linux-gnueabi-ar)
/external/ot-br-posix/examples/platforms/nxp/linux-imx/
Darm.cmake28 set(CMAKE_SYSTEM_NAME Linux)
29 set(CMAKE_SYSTEM_PROCESSOR arm)
30 set(CMAKE_C_COMPILER arm-poky-linux-gnueabi-gcc)
31 set(CMAKE_CXX_COMPILER arm-poky-linux-gnueabi-g++)
34 set(CMAKE_ASM_COMPILER arm-poky-linux-gnueabi-gcc)
35 find_program(CMAKE_AR arm-poky-linux-gnueabi-gcc-ar DOC "Archiver" REQUIRED)
36-mthumb -mfpu=neon -mfloat-abi=hard -mcpu=cortex-a7 -fstack-protector-strong -O2 -D_FORTIFY_SOURC…
37-mthumb -mfpu=neon -mfloat-abi=hard -mcpu=cortex-a7 -fstack-protector-strong --sysroot=$ENV{SDKTAR…
38-mthumb -mfpu=neon -mfloat-abi=hard -mcpu=cortex-a7 -fstack-protector-strong --sysroot=$ENV{SDKTAR…
39 set(CMAKE_C_FLAGS_RELEASE "-DNDEBUG" CACHE STRING "Additional CFLAGS for release")
[all …]
/external/webp/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 …]
/external/zstd/
DMakefile5 # This source code is licensed under both the BSD-style license (found in the
8 # You may select, at your option, one of the above-listed licenses.
24 # When cross-compiling from linux to windows, you might
28 # Note: mingw-w64 build from linux to windows does not
40 ## default: Build lib-release and zstd-release
42 default: lib-release zstd-release
53 $(Q)$(MAKE) -C $(PRGDIR) all
54 $(Q)$(MAKE) -C $(TESTDIR) all
58 $(MAKE) -C $(PRGDIR) zstd32
59 $(MAKE) -C $(TESTDIR) all32
[all …]
/external/libcap/contrib/bug216610/
DDockerfile6 RUN apt-get update
7 RUN apt-get install -y gcc-arm-linux-gnueabi binutils-arm-linux-gnueabi
8 RUN apt-get install -y gcc-aarch64-linux-gnu binutils-aarch64-linux-gnu
13 RUN mkdir -p /home/builder && chown builder.bin /home/builder
Dmkdocker.sh3 # This script generates a Dockerfile to be used for cross-compilation
10 RUN apt-get update
11 RUN apt-get install -y gcc-arm-linux-gnueabi binutils-arm-linux-gnueabi
12 RUN apt-get install -y gcc-aarch64-linux-gnu binutils-aarch64-linux-gnu
15 RUN echo "builder:x:$(id -u):$(id -g):,,,:/home/builder:/bin/bash" >> /etc/passwd
17 RUN mkdir -p /home/builder && chown builder.bin /home/builder
/external/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 …]
/external/rust/crates/libz-sys/src/zlib-ng/cmake/
Dtoolchain-arm.cmake1 set(CMAKE_SYSTEM_NAME Linux)
2 set(CMAKE_SYSTEM_PROCESSOR arm)
6 set(CMAKE_C_COMPILER_TARGET arm-linux-gnueabi)
9 set(CMAKE_CXX_COMPILER_TARGET arm-linux-gnueabi)
13 set(CMAKE_CROSSCOMPILING_EMULATOR qemu-arm -L /usr/${CMAKE_C_COMPILER_TARGET}/)
20 find_program(C_COMPILER_FULL_PATH NAMES ${CMAKE_C_COMPILER_TARGET}-gcc)
22 message(FATAL_ERROR "Cross-compiler for ${CMAKE_C_COMPILER_TARGET} not found")
26 find_program(CXX_COMPILER_FULL_PATH NAMES g++-${CMAKE_CXX_COMPILER_TARGET} ${CMAKE_CXX_COMPILER_TAR…
/external/deqp/framework/delibs/cmake/
Dtoolchain-raspi.cmake1 #-------------------------------------------------------------------------
3 # ----------------------------
11 # http://www.apache.org/licenses/LICENSE-2.0
19 #-------------------------------------------------------------------------
22 set(CMAKE_SYSTEM_NAME Linux)
27 set(CC_PATH "/opt/raspi/tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi" CACHE STRING "Cross co…
28 set(CROSS_COMPILE "${CC_PATH}/bin/arm-bcm2708hardfp-linux-gnueabi-" CACHE STRING "Cross compiler…
29 set(SYSROOT_PATH "${CC_PATH}/arm-bcm2708hardfp-linux-gnueabi/sysroot" CACHE STRING "Raspbian sysr…
31 set(CMAKE_C_COMPILER "${CROSS_COMPILE}gcc")
/external/libcap/contrib/bug216610/c/
Dbuild.sh9 GCC=arm-linux-gnueabi-gcc ./gcc.sh -O3 fib.c -c -o fib_linux_arm.syso
10 GCC=aarch64-linux-gnu-gcc ./gcc.sh -O3 fib.c -c -o fib_linux_arm64.syso
/external/zstd/.circleci/images/primary/
DDockerfile1 FROM circleci/buildpack-deps@sha256:f6f10c11b7b8ccfd4f4a5b830c3256803604ce61292b60cb22e26b12f62b0e8c
3 RUN sudo dpkg --add-architecture i386
4 RUN sudo apt-get -y -qq update
5 RUN sudo apt-get -y install \
6 gcc-multilib-powerpc-linux-gnu gcc-arm-linux-gnueabi \
7 libc6-dev-armel-cross gcc-aarch64-linux-gnu libc6-dev-arm64-cross \
8 libc6-dev-ppc64-powerpc-cross zstd gzip coreutils \
9 libcurl4-openssl-dev
/external/lzma/CPP/7zip/
Dvar_gcc_arm.mak1 PLATFORM=arm
8 CROSS_COMPILE_ABI=arm-linux-musleabi
9 CROSS_COMPILE_ABI=arm-linux-musleabihf
10 CROSS_COMPILE_ABI=aarch64-linux-musl
11 CROSS_COMPILE_ABI=arm-linux-gnueabi
12 CROSS_COMPILE_ABI=arm-linux-gnueabihf
14 COMPILER_VER_POSTFIX=-12
19 CROSS_COMPILE=$(CROSS_COMPILE_PREFIX)$(CROSS_COMPILE_ABI)-
23 MY_ARCH=-mtune=cortex-a53 -march=armv7-a
24 MY_ARCH=-mtune=cortex-a53 -march=armv4
[all …]
/external/cpu_features/scripts/
Drun_integration.sh2 set -eo pipefail
17 mkdir -p "${ARCHIVE_DIR}"
19 local -r URL=$1
20 local -r RELATIVE_DIR=$2
21 local -r DESTINATION="${ARCHIVE_DIR}/${RELATIVE_DIR}"
22 if [[ ! -d "${DESTINATION}" ]] ; then
24 local -r ARCHIVE_NAME=$(basename "${URL}")
25 [[ -f "${ARCHIVE_NAME}" ]] || wget --no-verbose "${URL}"
27 rm -f "${ARCHIVE_NAME}"
36 local -r QEMU_VERSION=${QEMU_VERSION:=7.1.0}
[all …]
/external/cronet/third_party/cpu_features/src/scripts/
Drun_integration.sh2 set -eo pipefail
17 mkdir -p "${ARCHIVE_DIR}"
19 local -r URL=$1
20 local -r RELATIVE_DIR=$2
21 local -r DESTINATION="${ARCHIVE_DIR}/${RELATIVE_DIR}"
22 if [[ ! -d "${DESTINATION}" ]] ; then
24 local -r ARCHIVE_NAME=$(basename "${URL}")
25 [[ -f "${ARCHIVE_NAME}" ]] || wget --no-verbose "${URL}"
27 rm -f "${ARCHIVE_NAME}"
36 local -r QEMU_VERSION=${QEMU_VERSION:=7.1.0}
[all …]
/external/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 …]
/external/trusty/arm-trusted-firmware/docs/plat/marvell/armada/
Dbuild.rst1 TF-A Build Instructions for Marvell Platforms
4 This section describes how to compile the Trusted Firmware-A (TF-A) project for Marvell's platforms.
7 ------------------
12 > export CROSS_COMPILE=/path/to/toolchain/aarch64-linux-gnu-
16 Set U-Boot image path (relatively to TF-A root or absolute path)
20 > export BL33=path/to/u-boot.bin
22 For example: if U-Boot project (and its images) is located at ``~/project/u-boot``,
23 BL33 should be ``~/project/u-boot/u-boot.bin``
27 *u-boot.bin* should be used and not *u-boot-spl.bin*
35 (3) Armada-37x0 build requires WTP tools installation.
[all …]
/external/arm-trusted-firmware/docs/plat/marvell/armada/
Dbuild.rst1 TF-A Build Instructions for Marvell Platforms
4 This section describes how to compile the Trusted Firmware-A (TF-A) project for Marvell's platforms.
7 ------------------
12 > export CROSS_COMPILE=/path/to/toolchain/aarch64-linux-gnu-
16 Set U-Boot image path (relatively to TF-A root or absolute path)
20 > export BL33=path/to/u-boot.bin
22 For example: if U-Boot project (and its images) is located at ``~/project/u-boot``,
23 BL33 should be ``~/project/u-boot/u-boot.bin``
27 *u-boot.bin* should be used and not *u-boot-spl.bin*
35 (3) Armada-37x0 build requires WTP tools installation.
[all …]
/external/llvm/test/MC/ARM/
Delf-reloc-01.s1 // RUN: llvm-mc -triple=armv7-linux-gnueabi \
2 // RUN: -mcpu=cortex-a8 -mattr=-neon -mattr=+vfp2 \
3 // RUN: -filetype=obj %s -o - | \
4 // RUN: llvm-readobj -r | FileCheck -check-prefix=OBJ %s
6 // Ensure no regression on ARM/gcc compatibility for
8 // versus section symbol relocs (with offset) -
12 // diverges from what codesourcery ARM/gcc does!
24 // OBJ: 0x{{[0-9,A-F]+}} R_ARM_MOVW_ABS_NC _MergedGlobals

1234