Searched +full:mips64el +full:- +full:unknown +full:- +full:linux +full:- +full:gnuabi64 (Results 1 – 25 of 38) sorted by relevance
12
3 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 …]
10 runs-on: ${{ matrix.os }}15 …build: [ubuntu, i686-linux, aarch64-linux, powerpc64le-linux, riscv64-linux, mipsel-linux, mips64e…17 - build: ubuntu18 os: ubuntu-latest20 - build: i686-linux21 os: ubuntu-latest23 target: i686-unknown-linux-gnu24 gcc_package: gcc-i686-linux-gnu25 gcc: i686-linux-gnu-gcc26 libc_package: libc-dev-i386-cross[all …]
3 COPY scripts/cross-apt-packages.sh /scripts/4 RUN sh /scripts/cross-apt-packages.sh6 COPY scripts/crosstool-ng.sh /scripts/7 RUN sh /scripts/crosstool-ng.sh9 COPY scripts/rustbuild-setup.sh /scripts/10 RUN sh /scripts/rustbuild-setup.sh13 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.defconfig16 RUN /scripts/crosstool-ng-build.sh[all …]
6 - main12 runs-on: ubuntu-latest18 RUSTFLAGS: -D warnings20 - uses: actions/checkout@v321 - run: |26 cargo check --features "netlink"27 cargo check --no-default-features --features "std netlink"28 cargo check --no-default-features --features "no_std netlink"29 cargo check --no-default-features --features "no_std general errno"33 runs-on: ubuntu-latest[all …]
5 license = "MIT OR Apache-2.0"7 repository = "https://github.com/rust-lang/libc"8 homepage = "https://github.com/rust-lang/libc"11 categories = ["external-ffi-bindings", "no-std", "os"]19 features = ["const-extern-fn", "extra_traits"]20 default-target = "x86_64-unknown-linux-gnu"22 "aarch64-apple-darwin",23 "aarch64-apple-ios",24 "aarch64-linux-android",25 "aarch64-pc-windows-msvc",[all …]
3 "dist_server": "https://static.rust-lang.org",4 "artifacts_server": "https://ci-artifacts.rust-lang.org/rustc-builds",5 "artifacts_with_llvm_assertions_server": "https://ci-artifacts.rust-lang.org/rustc-builds-alt",6 "git_merge_commit_email": "bors@rust-lang.org",13 "The section below is generated by `./x.py run src/tools/bump-stage0`,",20 "date": "2023-07-13",25 …"dist/2023-07-13/cargo-1.71.0-aarch64-apple-darwin.tar.gz": "e6c678fa6caaea333b3d05e3dc41842d8a37c…26 …"dist/2023-07-13/cargo-1.71.0-aarch64-apple-darwin.tar.xz": "7637bc54d15cec656d7abb32417316546c7a7…27 …"dist/2023-07-13/cargo-1.71.0-aarch64-pc-windows-msvc.tar.gz": "989cddc598aa72ef7574a0eb82c2119909…28 …"dist/2023-07-13/cargo-1.71.0-aarch64-pc-windows-msvc.tar.xz": "f6df21c5f76c928d1c8fc721ea320846e6…[all …]
11 runs-on: ubuntu-latest13 fail-fast: false17 - aarch64-linux-android18 - arm-linux-androideabi19 - armv7-linux-androideabi20 - i686-linux-android21 - x86_64-linux-android23 # Linux24 - aarch64-unknown-linux-gnu25 - arm-unknown-linux-gnueabi[all …]
16 "aarch64-apple-darwin",17 "aarch64-pc-windows-msvc",18 "aarch64-unknown-linux-gnu",19 "aarch64-unknown-linux-musl",20 "arm-unknown-linux-gnueabi",21 "arm-unknown-linux-gnueabihf",22 "armv7-unknown-linux-gnueabihf",23 "i686-apple-darwin",24 "i686-pc-windows-gnu",25 "i686-pc-windows-msvc",[all …]
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 …]
5 #include "llvm/Config/llvm-config.h"97 /* Define to 1 if you have the `edit' library (-ledit). */100 /* Define to 1 if you have the `pfm' library (-lpfm). */103 /* Define to 1 if you have the `psapi' library (-lpsapi). */106 /* Define to 1 if you have the `pthread' library (-lpthread). */115 /* Define to 1 if you have the `z' library (-lz). */307 #define LLVM_DEFAULT_TARGET_TRIPLE "x86_64-unknown-linux-gnu"309 #define LLVM_DEFAULT_TARGET_TRIPLE "i686-pc-linux-gnu"311 #define LLVM_DEFAULT_TARGET_TRIPLE "armv7-linux-gnueabihf"313 #define LLVM_DEFAULT_TARGET_TRIPLE "aarch64-linux-gnu"[all …]
3 [](https://cirrus-ci.com/g…8 Nix seeks to provide friendly bindings to various *nix platform APIs (Linux, Darwin,13 exposed by the [libc crate](https://github.com/rust-lang/libc). This is done by20 [gethostname](https://man7.org/linux/man-pages/man2/gethostname.2.html) system25 pub unsafe extern fn gethostname(name: *mut c_char, len: size_t) -> c_int;28 pub fn gethostname() -> Result<OsString>;34 platforms supported by [libc](https://github.com/rust-lang/libc), only some38 * Tier 1 - Builds and tests for this target are run in CI. Failures of either40 * Tier 2 - Builds for this target are run in CI. Failures during the build43 * Tier 3 - Builds for this target are run in CI. Failures during the build[all …]
8 CLIPPYFLAGS: -D warnings -A unknown-lints9 RUSTFLAGS: -D warnings10 RUSTDOCFLAGS: -D warnings18 - . $HOME/.cargo/env || true19 - $TOOL -Vv20 - rustc -Vv21 - $TOOL $BUILD $ZFLAGS --target $TARGET --all-targets22 - $TOOL doc $ZFLAGS --no-deps --target $TARGET23 - $TOOL clippy $ZFLAGS --target $TARGET --all-targets -- $CLIPPYFLAGS24 - if [ -z "$NOHACK" ]; then mkdir -p $HOME/.cargo/bin; export PATH=$HOME/.cargo/bin:$PATH; fi[all …]
8 set -ex18 rustup component add rust-src32 until [ $n -ge $N ]34 if rustup target add "${TARGET}" --toolchain "${RUST}" ; then44 cargo "+${RUST}" "${BUILD_CMD}" -vv --no-default-features --target "${TARGET}"46 # FIXME: With `build-std` feature, `compiler_builtins` emits a lof of lint warnings.47 RUSTFLAGS="-A improper_ctypes_definitions" cargo "+${RUST}" "${BUILD_CMD}" \48 -Z build-std=core,alloc -vv --no-default-features --target "${TARGET}"53 cargo "+${RUST}" "${BUILD_CMD}" -vv --target "${TARGET}"55 RUSTFLAGS="-A improper_ctypes_definitions" cargo "+${RUST}" "${BUILD_CMD}" \[all …]
3 pub fn target() -> Target { in target()5 llvm_target: "mips64el-unknown-linux-gnuabi64".into(), in target()7 data_layout: "e-m:e-i8:8:32-i16:16:32-i64:64-n32:64-S128".into(), in target()
1 //! [Flexible target specification.](https://github.com/rust-lang/rfcs/pull/131)11 //! A target triple, as passed via `rustc --target=TRIPLE`, will first be12 //! compared against the list of built-in targets. This is to ease distributing13 //! rustc (no need for configuration files) and also to hold these built-in14 //! targets as immutable and sacred. If `TRIPLE` is not one of the built-in23 //! `--target=path/to/my-awesome-platform.json` instead of adding to30 //! underscore in the field names should be replaced with a hyphen (`-`) in the32 //! `llvm-target`, `target-endian`, `target-pointer-width`, `data-layout`,33 //! `arch`, and `os`. In general, options passed to rustc with `-C` override34 //! the target's settings, though `target-feature` and `link-args` will *add*[all …]
2 // targets, with the exception of nvptx64-nvidia-cuda8 // assembly-output: emit-asm9 // [r1] compile-flags: --target aarch64-unknown-linux-gnu10 // [r1] needs-llvm-components: aarch6411 // [r2] compile-flags: --target i686-pc-windows-gnu12 // [r2] needs-llvm-components: x8613 // [r3] compile-flags: --target i686-pc-windows-msvc14 // [r3] needs-llvm-components: x8615 // [r4] compile-flags: --target i686-unknown-linux-gnu16 // [r4] needs-llvm-components: x86[all …]
5 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) in34 -------|-------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 …]
14 ./src/ci/docker/run.sh x86_64-gnu21 DEPLOY=1 ./src/ci/docker/run.sh x86_64-gnu24 **NOTE**: Re-using the same `obj` dir with different docker images with25 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 those36 - `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 …]
6 - auto-libc7 - try13 … actions: write # to cancel workflows (rust-lang/simpleinfra/github-actions/cancel-outdated-builds)16 name: Docker Linux Tier117 runs-on: ubuntu-22.0419 fail-fast: true22 i686-unknown-linux-gnu,23 x86_64-unknown-linux-gnu,26 - uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master29 - uses: actions/checkout@v3[all …]
1 //===--- Triple.cpp - Target triple helper class --------------------------===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception7 //===----------------------------------------------------------------------===//21 case UnknownArch: return "unknown"; in getArchTypeName()43 case mips64el: return "mips64el"; in getArchTypeName()104 case mips64el: return "mips"; in getArchTypePrefix()155 case UnknownVendor: return "unknown"; in getVendorTypeName()180 case UnknownOS: return "unknown"; in getOSTypeName()201 case Linux: return "linux"; in getOSTypeName()224 case UnknownEnvironment: return "unknown"; in getEnvironmentTypeName()[all …]
9 # http://www.apache.org/licenses/LICENSE-2.029 # LLVM_BRANCH must match the value of the same variable in third_party/update-llvm-10.sh32 … must be set to the commit hash that we last updated to when running third_party/update-llvm-10.sh.33 # Run 'git show -s origin/llvm10-clean' and look for 'llvm-10-update: <hash>' to retrieve it.37 LLVM_STAGING_DIR = path.abspath(path.join(tempfile.gettempdir(), "llvm-10"))51 # Per-platform arches54 ('__x86_64__', 'x86_64-linux-android'),55 ('__i386__', 'i686-linux-android'),56 ('__arm__', 'armv7-linux-androideabi'),57 ('__aarch64__', 'aarch64-linux-android'),[all …]
1 //===-- llvm/ADT/Triple.h - Target triple helper class ----------*- C++ -*-===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception7 //===----------------------------------------------------------------------===//22 /// Triple - Helper class for working with autoconf configuration names. For27 /// ARCHITECTURE-VENDOR-OPERATING_SYSTEM29 /// ARCHITECTURE-VENDOR-OPERATING_SYSTEM-ENVIRONMENT38 /// Clients that need to handle the non-canonical triples that users often55 bpfel, // eBPF or extended BPF or 64-bit BPF (little endian)56 bpfeb, // eBPF or extended BPF or 64-bit BPF (big endian)61 mips64el, // MIPS64EL: mips64el, mips64r6el, mipsn32el, mipsn32r6el enumerator[all …]
... libpng-1.6.44/ci/targets/linux/ci_env.mips64el-linux-gnuabi64.sh ...
8 //! LLVM and compiler-rt are essentially just wired up to everything else to30 /// Path to llvm-config binary.31 /// NB: This is always the host llvm-config!69 /// It's used to avoid busting caches during x.py check -- if we've already built72 /// This will return the llvm-config if it can get it (but it will not build it77 ) -> Result<LlvmResult, Meta> { in prebuilt_llvm_config()96 let root = "src/llvm-project/llvm"; in prebuilt_llvm_config()104 let build_llvm_config = llvm_config_ret_dir.join(exe("llvm-config", builder.config.build)); in prebuilt_llvm_config()108 let stamp = out_dir.join("llvm-finished-building"); in prebuilt_llvm_config()129 pub(crate) fn detect_llvm_sha(config: &Config, is_git: bool) -> String { in detect_llvm_sha()[all …]
3 # Copyright 1992-2024 Free Software Foundation, Inc.7 timestamp='2024-01-01'34 # Please send patches to <config-patches@gnu.org>.40 # variety of pre-POSIX systems that do not have POSIX shells at all, and41 # even some reasonably current systems (Solaris 10 as case-in-point) still42 # have a pre-POSIX /bin/sh.45 me=`echo "$0" | sed -e 's,.*/,,'`53 -h, --help print this help, then exit54 -t, --time-stamp print date of last modification, then exit55 -v, --version print version number, then exit[all …]