Searched +full:arm +full:- +full:unknown +full:- +full:linux +full:- +full:musleabihf (Results 1 – 4 of 4) sorted by relevance
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 …]
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()30 case arm: return "arm"; in getArchTypeName()90 case arm: in getArchTypePrefix()93 case thumbeb: return "arm"; in getArchTypePrefix()155 case UnknownVendor: return "unknown"; in getVendorTypeName()180 case UnknownOS: return "unknown"; in getOSTypeName()201 case Linux: return "linux"; in getOSTypeName()[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 often48 arm, // ARM (little endian): arm, armv.*, xscale enumerator49 armeb, // ARM (big endian): armeb55 bpfel, // eBPF or extended BPF or 64-bit BPF (little endian)[all …]