Home
last modified time | relevance | path

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

/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/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/vk-gl-cts/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")
/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/littlefs/.github/workflows/
Dtest.yml5 CFLAGS: -Werror
6 MAKEFLAGS: -j
11 runs-on: ubuntu-18.04
13 fail-fast: false
18 - uses: actions/checkout@v2
19 - name: install
22 sudo apt-get update -qq
23 sudo apt-get install -qq python3 python3-pip lcov
25 gcc --version
27 # setup a ram-backed disk to speed up reentrant tests
[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/jerryscript/cmake/
Dtoolchain_linux_armv7l-el.cmake7 # http://www.apache.org/licenses/LICENSE-2.0
15 set(CMAKE_SYSTEM_NAME Linux)
16 set(CMAKE_SYSTEM_PROCESSOR armv7l-el)
18 set(CMAKE_C_COMPILER arm-linux-gnueabi-gcc)
20 set(FLAGS_COMMON_ARCH -mlittle-endian -mthumb)
/third_party/skia/third_party/externals/brotli/
DMakefile13 CFLAGS += -O2
15 CPPFLAGS += -DOS_MACOSX
19 CC=$(CROSS_COMPILE)-gcc
20 ARCH=$(firstword $(subst -, ,$(CROSS_COMPILE)))
21 BROTLI_WRAPPER="qemu-$(ARCH) -L /usr/$(CROSS_COMPILE)"
24 # The arm-linux-gnueabi compiler defaults to Armv5. Since we only support Armv7
26 ifeq ($(ARCH), arm)
27 CFLAGS += -march=armv7-a -mfloat-abi=hard -mfpu=neon
36 mkdir -p $@
39 $(CC) $(LDFLAGS) $(OBJECTS) -lm -o $(BINDIR)/$(EXECUTABLE)
[all …]
/third_party/mbedtls/tests/scripts/
Dall.sh6 # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
15 # -------
20 # ---------------
32 # * Basic Unix tools (Windows users note: a Unix-style find must be before
37 # * GCC and Clang (recent enough for using ASan with gcc and MemSan with clang, or valgrind)
39 # * arm-gcc and mingw-gcc
40 # * ArmCC 5 and ArmCC 6, unless invoked with --no-armcc
53 # The behavior on an error depends on whether --keep-going (alias -k)
55 # * Without --keep-going: the script stops on the first error without
58 # * With --keep-going: the script runs all requested components and
[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 //===----------------------------------------------------------------------===//
30 case arm: return "arm"; in getArchTypeName()
90 case arm: in getArchTypePrefix()
93 case thumbeb: return "arm"; in getArchTypePrefix()
201 case Linux: return "linux"; in getOSTypeName()
234 case GNUEABI: return "gnueabi"; in getEnvironmentTypeName()
273 .Case("arm", arm) in getArchTypeForLLVMName()
300 .Case("x86-64", x86_64) in getArchTypeForLLVMName()
[all …]
/third_party/lame/
Dconfigure.in24 AC_INIT([lame],[3.100],[lame-dev@lists.sf.net])
67 if test "${CC}" != "gcc"; then
69 [ CC=gcc ./configure]
70 [Abort this configure run and add "CC=gcc" or you will]
78 if test "x${GCC}" = "xyes"; then
80 COMPILER_TYPE="`${CC} --version | head -1 | sed -e '1,$s/version.*//g'`"
82 *gcc*)
83 AC_MSG_RESULT(gcc)
100 AC_MSG_CHECKING(version of GCC)
101 GCC_version="`${CC} --version | sed -n '1s/^[[^ ]]* (.*) //;s/ .*$//;1p'`"
[all …]
Dconfig.guess3 # Copyright 1992-2018 Free Software Foundation, Inc.
5 timestamp='2018-08-29'
32 # Please send patches to <config-patches@gnu.org>.
35 me=`echo "$0" | sed -e 's,.*/,,'`
43 -h, --help print this help, then exit
44 -t, --time-stamp print date of last modification, then exit
45 -v, --version print version number, then exit
47 Report bugs and patches to <config-patches@gnu.org>."
53 Copyright 1992-2018 Free Software Foundation, Inc.
59 Try \`$me --help' for more information."
[all …]
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
5 # Report bugs to <lame-dev@lists.sf.net>.
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 ;; #(
[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 //===----------------------------------------------------------------------===//
14 // Some system headers or GCC predefined macros conflict with identifiers in
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
48 arm, // ARM (little endian): arm, armv.*, xscale enumerator
49 armeb, // ARM (big endian): armeb
[all …]
/third_party/libevdev/build-aux/
Dconfig.guess3 # Copyright 1992-2022 Free Software Foundation, Inc.
7 timestamp='2022-05-25'
34 # Please send patches to <config-patches@gnu.org>.
40 # variety of pre-POSIX systems that do not have POSIX shells at all, and
41 # even some reasonably current systems (Solaris 10 as case-in-point) still
42 # have a pre-POSIX /bin/sh.
45 me=`echo "$0" | sed -e 's,.*/,,'`
53 -h, --help print this help, then exit
54 -t, --time-stamp print date of last modification, then exit
55 -v, --version print version number, then exit
[all …]
/third_party/curl/
Dconfig.guess3 # Copyright 1992-2022 Free Software Foundation, Inc.
7 timestamp='2022-01-09'
34 # Please send patches to <config-patches@gnu.org>.
40 # variety of pre-POSIX systems that do not have POSIX shells at all, and
41 # even some reasonably current systems (Solaris 10 as case-in-point) still
42 # have a pre-POSIX /bin/sh.
45 me=`echo "$0" | sed -e 's,.*/,,'`
53 -h, --help print this help, then exit
54 -t, --time-stamp print date of last modification, then exit
55 -v, --version print version number, then exit
[all …]
/third_party/icu/icu4c/source/
Dconfig.guess3 # Copyright 1992-2022 Free Software Foundation, Inc.
7 timestamp='2022-01-09'
34 # Please send patches to <config-patches@gnu.org>.
40 # variety of pre-POSIX systems that do not have POSIX shells at all, and
41 # even some reasonably current systems (Solaris 10 as case-in-point) still
42 # have a pre-POSIX /bin/sh.
45 me=`echo "$0" | sed -e 's,.*/,,'`
53 -h, --help print this help, then exit
54 -t, --time-stamp print date of last modification, then exit
55 -v, --version print version number, then exit
[all …]
/third_party/python/
Dconfig.guess3 # Copyright 1992-2021 Free Software Foundation, Inc.
7 timestamp='2021-06-03'
34 # Please send patches to <config-patches@gnu.org>.
40 # variety of pre-POSIX systems that do not have POSIX shells at all, and
41 # even some reasonably current systems (Solaris 10 as case-in-point) still
42 # have a pre-POSIX /bin/sh.
45 me=`echo "$0" | sed -e 's,.*/,,'`
53 -h, --help print this help, then exit
54 -t, --time-stamp print date of last modification, then exit
55 -v, --version print version number, then exit
[all …]
Dconfigure.ac2 dnl * Please run autoreconf -if to test your changes! *
5 dnl Python's configure.ac file requires autoconf 2.69 and autoconf-archive.
18 [AC_MSG_ERROR([Please install autoconf-archive package and re-run autoreconf])]
23 [AC_MSG_ERROR([Please install pkgconf's m4 macro package and re-run autoreconf])]
27 dnl - _SAVE_VAR([VAR]) Helper for SAVE_ENV; stores VAR as save_VAR
28 dnl - _RESTORE_VAR([VAR]) Helper for RESTORE_ENV; restores VAR from save_VAR
29 dnl - SAVE_ENV Saves CFLAGS, LDFLAGS, LIBS, and CPPFLAGS
30 dnl - RESTORE_ENV Restores CFLAGS, LDFLAGS, LIBS, and CPPFLAGS
31 dnl - WITH_SAVE_ENV([SCRIPT]) Runs SCRIPT wrapped with SAVE_ENV/RESTORE_ENV
52 dnl PY_CHECK_FUNC(FUNCTION, [INCLUDES], [AC_DEFINE-VAR])
[all …]
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
8 # Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation,
14 ## -------------------- ##
16 ## -------------------- ##
25 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
27 alias -g '${1+"$@"}'='"$@"'
30 case `(set -o) 2>/dev/null` in #(
32 set -o posix ;; #(
46 # Quoting is to prevent editors from complaining about space-tab.
56 # Ensure predictable behavior from utilities with locale-dependent output.
[all …]
/third_party/libabigail/tests/data/test-diff-filter/
Dtest31-pr18535-libstdc++-4.8.3.so__gmon_start__ _ITM_deregisterTMCloneTable __aeabi_unwind_cpp_pr0 _ITM_registerTMCloneTable __cxa_finalize _Jv_RegisterClasses acos asin atan2 atan ceil cosh floor fmod frexp hypot ldexp log10 modf ...
Dtest31-pr18535-libstdc++-4.9.2.so__gmon_start__ _ITM_deregisterTMCloneTable __aeabi_unwind_cpp_pr0 _ITM_registerTMCloneTable __cxa_finalize _Jv_RegisterClasses _ZSt20__throw_length_errorPKc _ZNSs4_Rep20_S_empty_rep_storageE __gxx_personality_v0 _ZNSi6sentryC1ERSib _ZNSt9basic_iosIcSt11char_traitsIcEE5clearESt12_Ios_Iostate __cxa_begin_catch __cxa_rethrow __cxa_end_catch __cxa_end_cleanup _ZTIN10__cxxabiv115__forced_unwindE _ZNKSt12__basic_fileIcE7is_openEv wmemcpy wmemmove ...
/third_party/cups-filters/
DNEWS1 NEWS - OpenPrinting CUPS Filters v1.28.17 - 2023-01-24
2 ------------------------------------------------------
6 - libcupsfilters: In PPD generator create only one *cupsFilter2:
9 - libcupsfilters: In get_printer_attributes() poll
10 "media-col-database" separately if needed. On some printers
11 one gets "media-col-database" only this way. Ofte reveals
14 - libcupsfilters: Let PPD generator also parse
15 "media-col-ready" IPP attribute. "media-col-ready" lists the
16 loaded media, in contrary to "media-ready" as list of
17 complete descriptions of the media ("media-col" data
[all …]
/third_party/libbpf/src/
Dlibbpf.c1 // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
6 * Copyright (C) 2013-2015 Alexei Starovoitov <ast@kernel.org>
29 #include <linux/err.h>
30 #include <linux/kernel.h>
31 #include <linux/bpf.h>
32 #include <linux/btf.h>
33 #include <linux/filter.h>
34 #include <linux/limits.h>
35 #include <linux/perf_event.h>
36 #include <linux/ring_buffer.h>
[all …]