Home
last modified time | relevance | path

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

12345678

/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/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/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/crates/rustix/src/backend/libc/time/
Dsyscalls.rs6 #[cfg(any(target_os = "android", target_os = "fuchsia", target_os = "linux"))]
14 #[cfg(any(target_os = "android", target_os = "fuchsia", target_os = "linux"))]
23 any(target_arch = "arm", target_arch = "mips", target_arch = "x86"),
24 target_env = "gnu",
26 weak!(fn __clock_gettime64(c::clockid_t, *mut LibcTimespec) -> c::c_int);
28 any(target_arch = "arm", target_arch = "mips", target_arch = "x86"),
29 target_env = "gnu",
31 weak!(fn __clock_getres64(c::clockid_t, *mut LibcTimespec) -> c::c_int);
33 any(target_arch = "arm", target_arch = "mips", target_arch = "x86"),
34 target_env = "gnu",
[all …]
Dtypes.rs4 #[cfg(any(target_os = "android", target_os = "fuchsia", target_os = "linux"))]
9 any(target_arch = "arm", target_arch = "mips", target_arch = "x86"),
10 target_env = "gnu",
16 any(target_arch = "arm", target_arch = "mips", target_arch = "x86"),
17 target_env = "gnu",
31 any(target_arch = "arm", target_arch = "mips", target_arch = "x86"),
32 target_env = "gnu",
39 any(target_arch = "arm", target_arch = "mips", target_arch = "x86"),
40 target_env = "gnu",
54 any(target_arch = "arm", target_arch = "mips", target_arch = "x86"),
[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/rust/tests/assembly/stack-protector/
Dstack-protector-target-support.rs2 // targets, with the exception of nvptx64-nvidia-cuda
8 // assembly-output: emit-asm
9 // [r1] compile-flags: --target aarch64-unknown-linux-gnu
10 // [r1] needs-llvm-components: aarch64
11 // [r2] compile-flags: --target i686-pc-windows-gnu
12 // [r2] needs-llvm-components: x86
13 // [r3] compile-flags: --target i686-pc-windows-msvc
14 // [r3] needs-llvm-components: x86
15 // [r4] compile-flags: --target i686-unknown-linux-gnu
16 // [r4] needs-llvm-components: x86
[all …]
/third_party/rust/rust/tests/run-make/atomic-lock-free/
DMakefile4 # guaranteed to be lock-free.
7 ifeq ($(UNAME),Linux)
9 $(RUSTC) --target=i686-unknown-linux-gnu atomic_lock_free.rs
10 nm "$(TMPDIR)/libatomic_lock_free.rlib" | $(CGREP) -v __atomic_fetch_add
11 $(RUSTC) --target=x86_64-unknown-linux-gnu atomic_lock_free.rs
12 nm "$(TMPDIR)/libatomic_lock_free.rlib" | $(CGREP) -v __atomic_fetch_add
15 $(RUSTC) --target=arm-unknown-linux-gnueabi atomic_lock_free.rs
16 nm "$(TMPDIR)/libatomic_lock_free.rlib" | $(CGREP) -v __atomic_fetch_add
17 $(RUSTC) --target=arm-unknown-linux-gnueabihf atomic_lock_free.rs
18 nm "$(TMPDIR)/libatomic_lock_free.rlib" | $(CGREP) -v __atomic_fetch_add
[all …]
/third_party/rust/rust/src/doc/rustc/src/
Dplatform-support.md5 white-space: nowrap;
11 for targets at each tier, see the [Target Tier Policy](target-tier-policy.md).
16 Component availability is tracked [here](https://rust-lang.github.io/rustup-components-history/).
28 see [Tier 1 with Host Tools](target-tier-policy.md#tier-1-with-host-tools) in
34 -------|-------
35 `aarch64-unknown-linux-gnu` | ARM64 Linux (kernel 4.1, glibc 2.17+) [^missing-stack-probes]
36 `i686-pc-windows-gnu` | 32-bit MinGW (Windows 7+) [^windows-support]
37 `i686-pc-windows-msvc` | 32-bit MSVC (Windows 7+) [^windows-support]
38 `i686-unknown-linux-gnu` | 32-bit Linux (kernel 3.2+, glibc 2.17+)
39 `x86_64-apple-darwin` | 64-bit macOS (10.7+, Lion+)
[all …]
/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/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/rust/rust/library/portable-simd/.github/workflows/
Dci.yml7 - master
16 runs-on: ubuntu-latest
19 - uses: actions/checkout@v2
20 - name: Setup Rust
22 rustup update nightly --no-self-update
25 - name: Run rustfmt
26 run: cargo fmt --all -- --check
30 runs-on: ubuntu-latest
32 fail-fast: false
35 … # We shouldn't really have any OS-specific code, so think of this as a list of architectures
[all …]
/third_party/rust/crates/rustix/src/backend/libc/thread/
Dsyscalls.rs5 #[cfg(any(target_os = "android", target_os = "linux"))]
8 #[cfg(any(target_os = "android", target_os = "linux"))]
11 #[cfg(any(target_os = "android", target_os = "linux"))]
30 any(target_arch = "arm", target_arch = "mips", target_arch = "x86"),
31 target_env = "gnu",
33 weak!(fn __clock_nanosleep_time64(c::clockid_t, c::c_int, *const LibcTimespec, *mut LibcTimespec) -
35 any(target_arch = "arm", target_arch = "mips", target_arch = "x86"),
36 target_env = "gnu",
38 weak!(fn __nanosleep64(*const LibcTimespec, *mut LibcTimespec) -> c::c_int);
52 pub(crate) fn clock_nanosleep_relative(id: ClockId, request: &Timespec) -> NanosleepRelativeResult { in clock_nanosleep_relative()
[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 …]
/third_party/icu/icu4c/source/
Dconfig.guess3 # Copyright 1992-2022 Free Software Foundation, Inc.
7 timestamp='2022-01-09'
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/curl/
Dconfig.guess3 # Copyright 1992-2022 Free Software Foundation, Inc.
7 timestamp='2022-01-09'
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/python/
Dconfig.guess3 # Copyright 1992-2021 Free Software Foundation, Inc.
7 timestamp='2021-06-03'
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/cups/
Dconfig.guess3 # Copyright 1992-2022 Free Software Foundation, Inc.
7 timestamp='2022-09-17'
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/lame/
Dconfig.guess3 # Copyright 1992-2018 Free Software Foundation, Inc.
5 timestamp='2018-08-29'
8 # under the terms of the GNU General Public License as published by
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <https://www.gnu.org/licenses/>.
20 # As a special exception to the GNU General Public License, if you
25 # of the GNU General Public License, version 3 ("GPLv3").
30 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
32 # Please send patches to <config-patches@gnu.org>.
[all …]

12345678