Home
last modified time | relevance | path

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

12345

/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/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/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/libc/ci/docker/mips-unknown-linux-gnu/
DDockerfile3 RUN apt-get update && apt-get install -y --no-install-recommends \
4 gcc libc6-dev qemu-user ca-certificates \
5 gcc-mips-linux-gnu libc6-dev-mips-cross \
6 qemu-system-mips linux-headers-generic
8 ENV CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_LINKER=mips-linux-gnu-gcc \
9 CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_RUNNER="qemu-mips -L /usr/mips-linux-gnu" \
/third_party/skia/third_party/externals/freetype/docs/
DINSTALL.CROSS1 This document contains instructions on how to cross-build the FreeType
2 library on Unix systems, for example, building binaries for Linux/MIPS
4 file `INSTALL.UNIX' for required tools and the basic self-building
9 -----------------
11 For self-building the FreeType library on a Unix system, GNU Make
15 The GNU C compiler to cross-build the target system is required.
16 Currently, using a non-GNU cross compiler is untested. The cross
19 system is Linux/MIPS, the cross compiler should be installed with
20 the name `mips-ip22-linuxelf-gcc'.
22 A C compiler for a self-build is required also, to build a tool
[all …]
/third_party/rust/rust/src/ci/docker/host-x86_64/dist-mips-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-mips-linux/patches/ /tmp/patches/
15 COPY host-x86_64/dist-mips-linux/mips-linux-gnu.defconfig /tmp/crosstool.defconfig
16 RUN /scripts/crosstool-ng-build.sh
[all …]
/third_party/rust/rust/src/ci/docker/
DREADME.md14 ./src/ci/docker/run.sh x86_64-gnu
21 DEPLOY=1 ./src/ci/docker/run.sh x86_64-gnu
24 **NOTE**: Re-using the same `obj` dir with different docker images with
25 the same target triple (e.g. `dist-x86_64-linux` and `dist-various-1`)
33 - Each host architecture has its own `host-{arch}` directory, and those
36 - `host-{arch}/disabled` contains images that are not built on CI.
37 - `scripts` contains files shared by multiple Docker images.
45 1. Stop the virtual machine from the terminal with `docker-machine stop`
58 * Read-only: ☐ *unchecked*
59 * Auto-mount: ☑ *checked*
[all …]
/third_party/littlefs/.github/workflows/
Dtest.yml5 CFLAGS: -Werror
6 MAKEFLAGS: -j
11 runs-on: ubuntu-18.04
13 fail-fast: false
15 arch: [x86_64, thumb, mips, powerpc]
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
[all …]
/third_party/skia/m133/third_party/externals/libwebp/doc/
Dbuilding.md8 nmake /f Makefile.vc CFG=release-static RTLIBCFG=static OBJDIR=output
11 the directory `output\release-static\(x64|x86)\bin` will contain the tools
12 cwebp.exe and dwebp.exe. The directory `output\release-static\(x64|x86)\lib`
19 On platforms with GNU tools installed (gcc and make), running
22 make -f makefile.unix
26 library src/libwebp.a. No system-wide installation is supplied, as this is a
33 Prerequisites: a compiler (e.g., gcc), make, autoconf, automake, libtool.
35 On a Debian-like system the following should install everything you need for a
39 $ sudo apt-get install gcc make autoconf automake libtool
64 Note: A decode-only library, libwebpdecoder, is available using the
[all …]
/third_party/flatbuffers/tests/docker/languages/
DDockerfile.testing.rust.big_endian.1_51_01 FROM rust:1.51.0-slim as base
2 RUN apt -qq update -y && apt -qq install -y \
3 gcc-mips-linux-gnu \
8 qemu-user
9 RUN rustup target add mips-unknown-linux-gnu
14 RUN rustc --version
15 RUN ./RustTest.sh mips-unknown-linux-gnu
/third_party/flatbuffers/tests/
DRustTest.sh2 set -e
10 # http://www.apache.org/licenses/LICENSE-2.0
18 if [[ "$1" == "mips-unknown-linux-gnu" ]]; then
19 TARGET_FLAG="--target mips-unknown-linux-gnu"
20 export CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_LINKER=mips-linux-gnu-gcc
21 export CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_RUNNER="qemu-mips -L /usr/mips-linux-gnu"
35 cargo run $TARGET_FLAG -- --quiet
40 rustup component add rust-src --toolchain nightly
41 rustup target add thumbv7m-none-eabi
46 cargo test $TARGET_FLAG -- --quiet
[all …]
/third_party/musl/
DWHATSNEW1 0.5.0 - initial release
5 0.5.9 - signal ABI bugfix, various cleanup and fixes:
16 allowed the compiler to incorrectly reorder them (in practice, gcc
22 or _GNU_SOURCE are required to get XSI interfaces or GNU extensions,
25 many internal improvements have been made to the syscall-related code
30 0.6.0 - x86_64 port, various important bugs fixed
41 internal compiler error) in some versions of gcc.
48 0.7.0 - major improvements to posix conformance and completeness
59 added syscall wrappers for the linux inotify interface.
61 malloc(0) now returns a non-null pointer.
[all …]
/third_party/python/Modules/_ctypes/libffi_osx/
DREADME1 This directory contains the libffi package, which is not part of GCC but
2 shipped with GCC as convenience.
7 libffi-2.00 has not been released yet! This is a development snapshot!
9 libffi-1.20 was released on October 5, 1998. Check the libffi web
26 told at run-time about the number and types of arguments used to call
49 SunOS 4.1.3 & Solaris 2.x (SPARC-V8, SPARC-V9)
53 Intel x86 - Linux (System V ABI)
55 Alpha - Linux and OSF/1
57 m68k - Linux (System V ABI)
59 PowerPC - Linux (System V ABI, Darwin, AIX)
[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/exfatprogs/.github/workflows/
Dc-cpp.yml6 - master
7 - exfat-next
10 - master
11 - exfat-next
16 runs-on: ubuntu-latest
19 - uses: actions/checkout@v4
20 - name: before test
22 sudo apt-get install linux-headers-$(uname -r) xz-utils \
23 gcc-mips-linux-gnu qemu-system-mips \
24 qemu-user
[all …]
/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/src/ci/docker/host-x86_64/dist-mipsel-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-mips-linux/patches/ /tmp/patches/
15 COPY host-x86_64/dist-mipsel-linux/mipsel-linux-gnu.defconfig /tmp/crosstool.defconfig
16 RUN /scripts/crosstool-ng-build.sh
[all …]
/third_party/rust/rust/src/ci/docker/host-x86_64/dist-mips64el-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-mips-linux/patches/ /tmp/patches/
15 COPY host-x86_64/dist-mips64el-linux/mips64el-linux-gnu.defconfig /tmp/crosstool.defconfig
16 RUN /scripts/crosstool-ng-build.sh
[all …]
/third_party/rust/rust/src/ci/docker/host-x86_64/dist-mips64-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-mips-linux/patches/ /tmp/patches/
15 COPY host-x86_64/dist-mips64-linux/mips64-linux-gnu.defconfig /tmp/crosstool.defconfig
16 RUN /scripts/crosstool-ng-build.sh
[all …]
/third_party/libunwind/
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/libexif/
Dconfig.guess3 # Copyright 1992-2024 Free Software Foundation, Inc.
7 timestamp='2024-01-01'
10 # under the terms of the GNU General Public License as published by
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, see <https://www.gnu.org/licenses/>.
22 # As a special exception to the GNU General Public License, if you
27 # of the GNU General Public License, version 3 ("GPLv3").
32 # https://git.savannah.gnu.org/cgit/config.git/plain/config.guess
34 # Please send patches to <config-patches@gnu.org>.
[all …]
/third_party/libedit/
Dconfig.guess3 # Copyright 1992-2024 Free Software Foundation, Inc.
7 timestamp='2024-01-01'
10 # under the terms of the GNU General Public License as published by
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, see <https://www.gnu.org/licenses/>.
22 # As a special exception to the GNU General Public License, if you
27 # of the GNU General Public License, version 3 ("GPLv3").
32 # https://git.savannah.gnu.org/cgit/config.git/plain/config.guess
34 # Please send patches to <config-patches@gnu.org>.
[all …]
/third_party/ncurses/
Dconfig.guess3 # Copyright 1992-2023 Free Software Foundation, Inc.
7 timestamp='2023-10-19'
10 # under the terms of the GNU General Public License as published by
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, see <https://www.gnu.org/licenses/>.
22 # As a special exception to the GNU General Public License, if you
27 # of the GNU General Public License, version 3 ("GPLv3").
32 # https://git.savannah.gnu.org/cgit/config.git/plain/config.guess
34 # Please send patches to <config-patches@gnu.org>.
[all …]
/third_party/skia/m133/third_party/externals/libpng/
Dconfig.guess3 # Copyright 1992-2023 Free Software Foundation, Inc.
7 timestamp='2023-08-22'
10 # under the terms of the GNU General Public License as published by
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, see <https://www.gnu.org/licenses/>.
22 # As a special exception to the GNU General Public License, if you
27 # of the GNU General Public License, version 3 ("GPLv3").
32 # https://git.savannah.gnu.org/cgit/config.git/plain/config.guess
34 # Please send patches to <config-patches@gnu.org>.
[all …]
/third_party/libevdev/build-aux/
Dconfig.guess3 # Copyright 1992-2022 Free Software Foundation, Inc.
7 timestamp='2022-05-25'
10 # under the terms of the GNU General Public License as published by
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, see <https://www.gnu.org/licenses/>.
22 # As a special exception to the GNU General Public License, if you
27 # of the GNU General Public License, version 3 ("GPLv3").
32 # https://git.savannah.gnu.org/cgit/config.git/plain/config.guess
34 # Please send patches to <config-patches@gnu.org>.
[all …]

12345