Searched +full:gcc +full:- +full:8 (Results 1 – 25 of 1062) sorted by relevance
12345678910>>...43
1 ; RUN: llc %s -mtriple=i386-apple-macosx10.6.7 -o /dev/null50 !3 = !DIFile(filename: "darwin-c.c", directory: "/Users/espindola/llvm/build-llvm-gcc/gcc/../../llv…54 …= !DIDerivedType(tag: DW_TAG_pointer_type, size: 32, align: 32, file: !44, scope: !3, baseType: !8)55 !8 = !DIBasicType(tag: DW_TAG_base_type, name: "char", size: 8, align: 8, encoding: DW_ATE_signed_c…57 !10 = !DIDerivedType(tag: DW_TAG_const_type, size: 8, align: 8, file: !44, scope: !3, baseType: !8)60 …ename: "cpplib.h", directory: "/Users/espindola/llvm/build-llvm-gcc/gcc/../../llvm-gcc-4.2/gcc/../…68 !21 = !DIDerivedType(tag: DW_TAG_member, name: "sysp", line: 580, size: 8, align: 8, offset: 96, fi…69 !22 = !DIBasicType(tag: DW_TAG_base_type, name: "unsigned char", size: 8, align: 8, encoding: DW_AT…83 !36 = !DIDerivedType(tag: DW_TAG_member, name: "user_supplied_p", line: 605, size: 8, align: 8, off…84 !37 = !DIBasicType(tag: DW_TAG_base_type, name: "_Bool", size: 8, align: 8, encoding: DW_ATE_boolea…[all …]
1 #!/bin/bash -x3 set -e15 time (brew link --force --overwrite "$@" || true)29 gcc-4.9) install_brew_package gcc@4.9 ;;30 gcc-5) install_brew_package gcc@5 ;;31 gcc-6) install_brew_package gcc@6 ;;32 gcc-7) install_brew_package gcc@7 ;;33 gcc-8) install_brew_package gcc@8 ;;34 gcc-9) install_brew_package gcc@9 ;;35 clang-default) ;;[all …]
1 #!/bin/bash -x3 set -e10 gcc-4.9)11 export CC=gcc-4.912 export CXX=g++-4.915 gcc-5)16 export CC=gcc-517 export CXX=g++-520 gcc-6)21 export CC=gcc-6[all …]
19 . $srcdir/test-subr.sh23 testrun_compare ${abs_builddir}/get-files testfile testfile2 <<\EOF25 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"32 file[2] = "/usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h"33 file[3] = "/usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h"38 file[8] = "/usr/include/libio.h"43 dirs[0] = "/home/drepper/gnu/new-bu/build/ttt"[all …]
3 // This source code is licensed under the BSD-style license found in the14 // GCC pre-11, Clang pre-8, Android NDK Clang pre-8.0.7, Apple Clang pre-11, and ICC pre-1616 (defined(__clang__) && !defined(__apple_build_version__) && (__clang_major__ < 8)) || \17 …(defined(__clang__) && defined(__ANDROID__) && (__clang_major__ == 8) && (__clang_minor__ == 0) &&…30 #endif // GCC pre-11, Clang pre-8, Android NDK Clang pre-8.0.7, Apple Clang pre-11, and ICC pre-1636 // GCC pre-7, Clang pre-8, Android NDK Clang pre-8.0.7, Apple Clang pre-11, ICC pre-18, and MSVC pr…38 (defined(__clang__) && !defined(__apple_build_version__) && (__clang_major__ < 8)) || \39 …(defined(__clang__) && defined(__ANDROID__) && (__clang_major__ == 8) && (__clang_minor__ == 0) &&…64 #endif // GCC pre-7, Clang pre-8, Android NDK Clang pre-8.0.7, Apple Clang pre-11, and ICC pre-1866 // GCC pre-7, Clang pre-4, and ICC pre-18[all …]
8 - master9 - travis17 - libdrm-dev18 - libegl1-mesa-dev19 - libgles2-mesa-dev20 - libwayland-dev21 - libx11-xcb-dev22 - libx11-dev23 - libgbm-dev24 - libevdev-dev[all …]
2 # This file was auto-generated from extras/scripts/travis_yml_generator.py, DO NOT EDIT6 - master12 - compiler: gcc13 env: COMPILER=gcc-10 UBUNTU=20.10 TEST=ReleasePlain14 …install: export OS=linux; export COMPILER='gcc-10'; export UBUNTU='20.10'; extras/scripts/travis_c…16 …script: export OS=linux; export COMPILER='gcc-10'; export UBUNTU='20.10'; extras/scripts/postsubmi…18 - compiler: gcc19 env: COMPILER=gcc-10 UBUNTU=20.10 TEST=DebugPlain20 …install: export OS=linux; export COMPILER='gcc-10'; export UBUNTU='20.10'; extras/scripts/travis_c…22 …script: export OS=linux; export COMPILER='gcc-10'; export UBUNTU='20.10'; extras/scripts/postsubmi…[all …]
... ^ # h al- # k 7\ P i 8J e p K` e r H^ e h
1 /* -*- Mode: c; tab-width: 8; indent-tabs-mode: 1; c-basic-offset: 8; -*- */38 #include "pcap/compiler-tests.h"42 * Clang and GCC both support this way of putting pragmas into #defines.44 * warning-suppressing pragmas differ between Clang and GCC, so we test94 * Suppress signed-vs-unsigned comparison, narrowing, and unreachable124 #elif PCAP_IS_AT_LEAST_CLANG_VERSION(2,8)127 * ignored -Wxxx" and "clang diagnostic push/pop".129 * Suppress -Wdocumentation warnings; GCC doesn't support -Wdocumentation,130 * at least according to the GCC 7.3 documentation. Apparently, Flex132 * -Wdocumentation.[all …]
7 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \8 build-essential \10 g++-8 \11 gcc-8 \13 ${PYTHON}-dev15 RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 700 --slave /usr/bin/g++ g++ /usr…16 …update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 800 --slave /usr/bin/g++ g++ /usr/bi…18 RUN ${PYTHON} -m pip install git+https://github.com/horovod/horovod.git@${HOROVOD_VERSION}
7 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \8 build-essential \10 g++-8 \11 gcc-8 \13 ${PYTHON}-dev15 RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 100 --slave /usr/bin/g++ g++ /usr…16 …update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 800 --slave /usr/bin/g++ g++ /usr/bi…18 RUN ${PYTHON} -m pip install git+https://github.com/horovod/horovod.git@${HOROVOD_VERSION}
7 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \8 software-properties-common10 RUN cd /usr/lib/python3/dist-packages && \11 ln -sf apt_pkg.cpython-35m-x86_64-linux-gnu.so apt_pkg.so13 RUN add-apt-repository ppa:ubuntu-toolchain-r/test15 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \16 build-essential \18 g++-8 \19 gcc-8 \21 ${PYTHON}-dev[all …]
5 - /dev-appveyor.*/8 - ubuntu-toolchain-r-test9 - llvm-toolchain-trusty10 - llvm-toolchain-trusty-3.911 - llvm-toolchain-trusty-4.012 - llvm-toolchain-xenial-5.013 - llvm-toolchain-xenial-6.019 - os: linux24 packages: ['clang-3.5']25 env: COMPILER='clang++-3.5'[all …]
32 …curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/$BAZEL_VERSION/bazel-$BAZEL_VE…33 chmod +x bazel-$BAZEL_VERSION-installer-linux-x86_64.sh && \34 ./bazel-$BAZEL_VERSION-installer-linux-x86_64.sh && \35 rm -rf bazel-$BAZEL_VERSION-installer-linux-x86_64.sh; \38 # Upgrade gcc-8 if argument is passed40 add-apt-repository ppa:ubuntu-toolchain-r/test -y && \41 apt-get update && \42 apt-get install gcc-8 g++-8 -y && \43 …update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 80 --slave /usr/bin/g++ g++ /usr/bin…44 …update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 70 --slave /usr/bin/g++ g++ /usr/bin…[all …]
7 # http://www.apache.org/licenses/LICENSE-2.025 BASIC_BUILD_OPTS = ["--cxxopt=-D_GLIBCXX_USE_CXX11_ABI=0", "--copt=-O3"]28 "--copt=-Wformat", "--copt=-Wformat-security", "--copt=-fstack-protector",29 "--copt=-fPIC", "--copt=-fpic", "--linkopt=-znoexecstack",30 "--linkopt=-zrelro", "--linkopt=-znow", "--linkopt=-fstack-protector"39 BAZEL_PREFIX_ = "--copt="40 ARCH_PREFIX_ = "-march="41 FLAG_PREFIX_ = "-m"49 # the gcc version specified in the parameters51 # True only if the gcc version in the tuple is >=[all …]
1 #!/bin/bash -eu8 # http://www.apache.org/licenses/LICENSE-2.017 # Builds a devtoolset cross-compiler targeting manylinux 2010 (glibc 2.12 /24 devtoolset-7)27 devtoolset-8)31 echo "Usage: $0 {devtoolset-7|devtoolset-8} <target-directory>"36 mkdir -p "${TARGET}"38 wget "http://old-releases.ubuntu.com/ubuntu/pool/main/e/eglibc/libc6_2.12.1-0ubuntu6_amd64.deb" && \39 unar "libc6_2.12.1-0ubuntu6_amd64.deb" && \40 tar -C "${TARGET}" -xvzf "libc6_2.12.1-0ubuntu6_amd64/data.tar.gz" && \[all …]
7 # http://www.apache.org/licenses/LICENSE-2.017 RUN yum install -y python18 RUN yum install -y python-devel19 RUN yum install -y epel-release20 RUN yum install -y python-pip21 RUN pip install --upgrade pip==19.3.122 RUN pip install -U virtualenv24 # The default gcc of CentOS 7 is gcc 4.8 which is older than gcc 4.9,25 # the minimum supported gcc version for gRPC Core so let's upgrade to27 RUN yum install -y centos-release-scl[all …]
2 "schema": "sai-1",8 "linux-debian-11/x86_64-amd/gcc": {9 …-test-server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && mak…11 "linux-debian-buster/x86-amd/gcc": {12 …-test-server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && mak…14 "linux-debian-sid/x86_64-amd/gcc": {15 …-test-server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && mak…17 "linux-ubuntu-xenial/x86_64-amd/gcc": {18 …-test-server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && mak…20 "linux-debian-sid/x86-amd/gcc": {[all …]
1 ---6 # For qemu-powered targets, get the list of supported processors from7 # travis by setting QEMU_CPU=help, then set -mcpu= for the compilers12 - os: linux13 env: HOST=or1k-elf RUNTESTFLAGS="--target_board or1k-sim" DEJAGNU="/opt/.travis/site.exp"14 - os: linux15 env: HOST=m32r-elf RUNTESTFLAGS="--target_board m32r-sim" DEJAGNU="/opt/.travis/site.exp"16 - os: linux17 env: HOST=bfin-elf RUNTESTFLAGS="--target_board bfin-sim" DEJAGNU="/opt/.travis/site.exp"19 # - os: osx[all …]
7 # http://www.apache.org/licenses/LICENSE-2.027 ENV LANG C.UTF-830 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \32 software-properties-common34 RUN add-apt-repository ppa:deadsnakes/ppa36 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \39 RUN curl -fSsL https://bootstrap.pypa.io/get-pip.py | ${PYTHON}41 RUN ${PYTHON} -m pip --no-cache-dir install --upgrade \46 RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \47 ln -sf $(which ${PYTHON}) /usr/local/bin/python3 && \[all …]
7 # http://www.apache.org/licenses/LICENSE-2.027 ENV LANG C.UTF-830 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \32 ${PYTHON}-pip33 RUN ${PYTHON} -m pip --no-cache-dir install --upgrade \38 RUN ln -s $(which ${PYTHON}) /usr/local/bin/python42 # tensorflow-gpu43 # tf-nightly44 # tf-nightly-gpu45 # Set --build-arg TF_PACKAGE_VERSION=1.11.0rc0 to install a specific version.[all …]
1 name: dev-long-tests5 group: long-${{ github.ref }}6 cancel-in-progress: true13 make-all:14 runs-on: ubuntu-latest16 - uses: actions/checkout@v217 - name: make all21 make-test:22 runs-on: ubuntu-latest27 - uses: actions/checkout@v2[all …]
3 # Copyright (c) 1999-2016, International Business Machines Corporation and18 *-*-solaris*)19 if test "$GCC" = yes; then 20 icu_cv_host_frag=mh-solaris-gcc22 icu_cv_host_frag=mh-solaris24 alpha*-*-linux-gnu)25 if test "$GCC" = yes; then26 icu_cv_host_frag=mh-alpha-linux-gcc28 icu_cv_host_frag=mh-alpha-linux-cc30 powerpc*-*-linux*)[all …]