Searched +full:gcc +full:- +full:i686 +full:- +full:linux +full:- +full:gnu (Results 1 – 25 of 84) sorted by relevance
1234
| /third_party/rust/crates/rustix/.github/workflows/ |
| D | main.yml | 6 - 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 …]
|
| D | test-users.yml | 10 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 …]
|
| /third_party/liburing/.github/workflows/ |
| D | build.yml | 10 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/protobuf/toolchain/ |
| D | BUILD.bazel | 14 "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/rust/src/ci/docker/host-x86_64/dist-i586-gnu-i586-i686-musl/ |
| D | Dockerfile | 4 RUN apt-get update && apt-get install -y --no-install-recommends \ 5 g++-multilib \ 7 ninja-build \ 10 ca-certificates \ 14 xz-utils \ 18 libssl-dev \ 19 pkg-config 21 COPY scripts/cross-apt-packages.sh /scripts/ 22 RUN sh /scripts/cross-apt-packages.sh 24 COPY scripts/crosstool-ng.sh /scripts/ [all …]
|
| /third_party/skia/m133/third_party/externals/libwebp/infra/ |
| D | compile.sh | 32 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/src/ci/docker/host-x86_64/dist-i686-linux/ |
| D | Dockerfile | 9 RUN yum upgrade -y && \ 10 yum install -y epel-release && \ 11 yum install -y \ 16 gcc \ 17 gcc-c++ \ 19 glibc-devel.i686 \ 20 glibc-devel.x86_64 \ 21 libedit-devel \ 22 libstdc++-devel.i686 \ 23 libstdc++-devel.x86_64 \ [all …]
|
| /third_party/rust/crates/linux-raw-sys/gen/ioctl/ |
| D | generate.sh | 2 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-x86_64-linux/ |
| D | Dockerfile | 9 RUN yum upgrade -y && \ 10 yum install -y epel-release && \ 11 yum install -y \ 16 gcc \ 17 gcc-c++ \ 19 glibc-devel.i686 \ 20 glibc-devel.x86_64 \ 21 libedit-devel \ 22 libstdc++-devel.i686 \ 23 libstdc++-devel.x86_64 \ [all …]
|
| /third_party/rust/crates/libc/ci/ |
| D | install-musl.sh | 3 # 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/rust/rust/src/ci/docker/host-x86_64/dist-various-2/ |
| D | Dockerfile | 3 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/rust/rust/ |
| D | README_zh.md | 3 …tps://img.shields.io/badge/Rust_Community%20-Join_us-brightgreen?style=plastic&logo=rust)](https:/… 8 [Rust]: https://www.rust-lang.org/ 18 ["安装"]: https://doc.rust-lang.org/book/ch01-01-installation.html 19 [本书]: https://doc.rust-lang.org/book/index.html 40 关于 `x.py` 的更多信息,可以通过使用 `--help`标记来运行它 43 [gettingstarted]: https://rustc-dev-guide.rust-lang.org/getting-started.html 44 [rustcguidebuild]: https://rustc-dev-guide.rust-lang.org/building/how-to-build-and-run.html#what-is… 55 * 如果在 Linux 上编译并以 Linux 为目标,则需要 `pkg-config` 58 要编译 Cargo,还需要 OpenSSL(在大多数 Unix 发行版上为 `libssl-dev` 或 `openssl-devel` )。 64 …[LLVM 的文档](https://llvm.org/docs/GettingStarted.html#host-c-toolchain-both-compiler-and-standard-l… [all …]
|
| D | README.md | 3 …tps://img.shields.io/badge/Rust_Community%20-Join_us-brightgreen?style=plastic&logo=rust)](https:/… 8 [Rust]: https://www.rust-lang.org/ 18 ["Installation"]: https://doc.rust-lang.org/book/ch01-01-installation.html 19 [The Book]: https://doc.rust-lang.org/book/index.html 40 More information about `x.py` can be found by running it with the `--help` flag 43 [gettingstarted]: https://rustc-dev-guide.rust-lang.org/getting-started.html 44 [rustcguidebuild]: https://rustc-dev-guide.rust-lang.org/building/how-to-build-and-run.html#what-is… 52 * A C compiler (when building for the host, `cc` is enough; cross-compiling may 55 * `pkg-config` if you are compiling on Linux and targeting Linux 56 * `libiconv` (already included with glibc on Debian-based distros) [all …]
|
| /third_party/rust/crates/rust-openssl/.circleci/ |
| D | config.yml | 6 key: registry-{{ .BuildNum }} 8 - /usr/local/cargo/registry/index 10 key: lib-{{ checksum "~/lib_key" }}-{{ checksum "test/build_openssl.sh" }} 18 - /openssl 20 key: deps-1.19.0-{{ checksum "Cargo.lock" }}-{{ checksum "~/lib_key" }}-2 28 - target 29 - /usr/local/cargo/registry/cache 34 - image: rust:1.19.0 36 - checkout 37 - run: apt-get update [all …]
|
| /third_party/rust/rust/src/ci/docker/host-x86_64/x86_64-gnu-llvm-16/ |
| D | Dockerfile | 5 RUN apt-get update && apt-get install -y --no-install-recommends \ 7 gcc-multilib \ 9 ninja-build \ 12 ca-certificates \ 18 llvm-16-tools \ 19 llvm-16-dev \ 20 libedit-dev \ 21 libssl-dev \ 22 pkg-config \ 23 zlib1g-dev \ [all …]
|
| /third_party/rust/rust/src/ci/docker/host-x86_64/x86_64-gnu-llvm-15/ |
| D | Dockerfile | 5 RUN apt-get update && apt-get install -y --no-install-recommends \ 7 gcc-multilib \ 9 ninja-build \ 12 ca-certificates \ 18 llvm-15-tools \ 19 llvm-15-dev \ 20 libedit-dev \ 21 libssl-dev \ 22 pkg-config \ 23 zlib1g-dev \ [all …]
|
| /third_party/rust/rust/src/tools/rust-analyzer/.github/workflows/ |
| D | release.yaml | 4 - 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/mesa3d/docs/ |
| D | meson.rst | 5 --------------- 16 <https://mesonbuild.com/Getting-meson.html>`__ to install the 19 The Meson build of Mesa is tested on Linux, macOS, Windows, Cygwin, 22 Unix-like OSes 28 .. code-block:: sh 30 sudo apt-get install meson # Ubuntu 34 .. code-block:: sh 41 You'll also need `Ninja <https://ninja-build.org/>`__. If it's not 42 already installed, use apt-get or dnf to install the *ninja-build* 48 …cies you would need to install on linux to build and install mesa main. You can install these pack… [all …]
|
| /third_party/mesa3d/.gitlab-ci/container/ |
| D | create-cross-file.sh | 4 cross_file="/cross_file-$arch.txt" 5 meson env2mfile --cross --debarch "$arch" -o "$cross_file" 8 sed -i "s|/usr/bin/\([^-]*\)-linux-gnu\([^-]*\)-g|/usr/lib/ccache/\\1-linux-gnu\\2-g|g" "$cross_fil… 10 # Rely on qemu-user being configured in binfmt_misc on the host 12 sed -i -e '/\[properties\]/a\' -e "needs_exe_wrapper = False" "$cross_file" 15 cc=$(sed -n "s|^c\s*=\s*\[?'\(.*\)'\]?|\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 24 rust_target=powerpc64le-unknown-linux-gnu [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/linux/include/llvm/Config/ |
| D | llvm-config.h | 1 /*===------- llvm/Config/llvm-config.h - llvm configuration -------*- C -*-===*/ 6 /* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ 8 /*===----------------------------------------------------------------------===*/ 12 This is a C header that can be included in the llvm-c headers. */ 32 #define LLVM_DEFAULT_TARGET_TRIPLE "x86_64-unknown-linux-gnu" 34 #define LLVM_DEFAULT_TARGET_TRIPLE "i686-pc-linux-gnu" 36 #define LLVM_DEFAULT_TARGET_TRIPLE "armv7-linux-gnueabihf" 38 #define LLVM_DEFAULT_TARGET_TRIPLE "aarch64-linux-gnu" 40 #define LLVM_DEFAULT_TARGET_TRIPLE "mipsel-linux-gnu" 42 #define LLVM_DEFAULT_TARGET_TRIPLE "mips64el-linux-gnuabi64" [all …]
|
| /third_party/rust/rust/tests/run-make/target-specs/ |
| D | my-awesome-platform.json | 2 "data-layout": "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-f64:32:64-f80:32-n8:16:32-S128", 3 "linker-flavor": "gcc", 4 "llvm-target": "i686-unknown-linux-gnu", 5 "target-endian": "little", 6 "target-pointer-width": "32", 7 "target-c-int-width": "32", 9 "os": "linux",
|
| /third_party/cares/ |
| D | INSTALL.md | 13 Lots of people download binary distributions of c-ares. This document 14 does not describe how to install c-ares using such a binary package. 15 This document describes how to compile, build and install c-ares from 22 release tarball, see the [GIT-INFO](GIT-INFO) file in the root directory 33 ### General Information, works on most Unix Platforms (Linux, FreeBSD, etc.) 45 [GIT-INFO](GIT-INFO) on how to proceed. 49 ./configure --help 51 If you want to install c-ares in a different file hierarchy than /usr/local, 54 ./configure --prefix=/path/to/c-ares/tree 60 ./configure --prefix=$HOME [all …]
|
| /third_party/openssl/ |
| D | NOTES-WINDOWS.md | 4 - [Native builds using Visual C++](#native-builds-using-visual-c++) 5 - [Native builds using Embarcadero C++Builder]( 6 #native-builds-using-embarcadero-c++-builder) 7 - [Native builds using MinGW](#native-builds-using-mingw) 8 - [Linking native applications](#linking-native-applications) 9 - [Hosted builds using Cygwin](#hosted-builds-using-cygwin) 21 run on the GNU-like development environment MSYS2 22 or run on Linux or Cygwin 25 for building (using GNU/Unix shell, compiler, and tools) and at run time. 31 The native builds using Visual C++ have a `VC-*` prefix. [all …]
|
| /third_party/elfutils/tests/ |
| D | run-lfs-symbols.sh | 6 # it under the terms of the GNU General Public License as published by 13 # GNU General Public License for more details. 15 # You should have received a copy of the GNU General Public License 16 # along with this program. If not, see <http://www.gnu.org/licenses/>. 18 . $srcdir/test-subr.sh 20 if ! grep -q -F '#define _FILE_OFFSET_BITS' ${abs_top_builddir}/config.h; then 31 # Built for Linux i686, without setting _FILE_OFFSET_BITS. 32 # $ gcc -m32 -O2 nolfs.c -o testfile-nolfs 33 testfiles testfile-nolfs 42 LFS=$(printf "$LFS_FORMAT" "${abs_srcdir}/lfs-symbols") [all …]
|
| /third_party/skia/m133/bazel/rbe/gce_linux/cc/ |
| D | BUILD | 7 # http://www.apache.org/licenses/LICENSE-2.0 15 # This becomes the BUILD file for @local_config_cc// under non-BSD unixes. 44 # This is the entry point for --crosstool_top. Toolchains are found 45 # by lopping off the name of --crosstool_top and searching for 50 "k8|clang": ":cc-compiler-k8", 51 "k8": ":cc-compiler-k8", 52 "armeabi-v7a|compiler": ":cc-compiler-armeabi-v7a", 53 "armeabi-v7a": ":cc-compiler-armeabi-v7a", 58 name = "cc-compiler-k8", 78 host_system_name = "i686-unknown-linux-gnu", [all …]
|
1234