| /third_party/rust/crates/libc/ci/ |
| D | build.sh | 8 set -ex 18 rustup component add rust-src 32 until [ $n -ge $N ] 34 if rustup target add "${TARGET}" --toolchain "${RUST}" ; then 44 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 …]
|
| D | semver.sh | 5 set -ex 11 if ! rustc --version | grep -E "nightly" ; then 16 rustup component add rustc-dev llvm-tools-preview 19 cargo install semverver --version=0.1.50 25 aarch64-fuchsia \ 26 aarch64-linux-android \ 27 aarch64-unknown-linux-gnu \ 28 aarch64-unknown-linux-musl \ 29 armv7-linux-androideabi \ 30 armv7-unknown-linux-gnueabihf \ [all …]
|
| /third_party/rust/crates/nix/ |
| D | .cirrus.yml | 8 RUSTFLAGS: -D warnings 9 RUSTDOCFLAGS: -D warnings 18 - . $HOME/.cargo/env || true 19 - $TOOL +$TOOLCHAIN -Vv 20 - rustc +$TOOLCHAIN -Vv 21 - $TOOL +$TOOLCHAIN $BUILD $ZFLAGS --target $TARGET --all-targets 22 - $TOOL +$TOOLCHAIN doc $ZFLAGS --no-deps --target $TARGET 23 - $TOOL +$TOOLCHAIN clippy $ZFLAGS --target $TARGET --all-targets -- -D warnings 24 - if [ -z "$NOHACK" ]; then mkdir -p $HOME/.cargo/bin; export PATH=$HOME/.cargo/bin:$PATH; fi 25 …- if [ -z "$NOHACK" ]; then curl -LsSf https://github.com/taiki-e/cargo-hack/releases/latest/downl… [all …]
|
| D | README.md | 3 [](https://cirrus-ci.com/g… 13 exposed by the [libc crate](https://github.com/rust-lang/libc). This is done by 20 [gethostname](https://man7.org/linux/man-pages/man2/gethostname.2.html) system 25 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 some 38 * Tier 1 - Builds and tests for this target are run in CI. Failures of either 40 * Tier 2 - Builds for this target are run in CI. Failures during the build 43 * Tier 3 - Builds for this target are run in CI. Failures during the build 50 * aarch64-apple-darwin [all …]
|
| D | Cargo.toml | 6 rust-version = "1.56" 7 authors = ["The nix-rust Project Developers"] 8 repository = "https://github.com/nix-rust/nix" 10 categories = ["os::unix-apis"] 14 rustdoc-args = ["--cfg", "docsrs"] 16 "x86_64-unknown-linux-gnu", 17 "aarch64-linux-android", 18 "x86_64-apple-darwin", 19 "aarch64-apple-ios", 20 "x86_64-unknown-freebsd", [all …]
|
| /third_party/ejdb/ |
| D | ios-tc.cmake | 1 # This file is part of the ios-cmake project. It was retrieved from 2 # https://github.com/leetal/ios-cmake.git, which is a fork of 3 # https://github.com/gerstrong/ios-cmake.git, which is a fork of 4 # https://github.com/cristeab/ios-cmake.git, which is a fork of 5 # https://code.google.com/p/ios-cmake/. Which in turn is based off of 9 # The ios-cmake project is licensed under the new BSD license. 42 # It has been altered for iOS development. 48 # under the BSD-3-Clause license 49 # https://github.com/leetal/ios-cmake 59 …64 iphoneOS. Combined into FAT STATIC lib (supported on 3.14+ of CMakewith "-G Xcode" argument ONL… [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
| D | Triple.cpp | 1 //===--- Triple.cpp - Target triple helper class --------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 23 case aarch64: return "aarch64"; in getArchTypeName() 84 case aarch64: in getArchTypePrefix() 86 case aarch64_32: return "aarch64"; in getArchTypePrefix() 158 case Apple: return "apple"; in getVendorTypeName() 199 case IOS: return "ios"; in getOSTypeName() 267 .Case("aarch64", aarch64) in getArchTypeForLLVMName() 271 .Case("arm64", aarch64) // "arm64" is an alias for "aarch64" in getArchTypeForLLVMName() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
| D | Triple.h | 1 //===-- llvm/ADT/Triple.h - Target triple helper class ----------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 22 /// Triple - Helper class for working with autoconf configuration names. For 27 /// ARCHITECTURE-VENDOR-OPERATING_SYSTEM 29 /// ARCHITECTURE-VENDOR-OPERATING_SYSTEM-ENVIRONMENT 38 /// Clients that need to handle the non-canonical triples that users often 50 aarch64, // AArch64 (little endian): aarch64 enumerator 51 aarch64_be, // AArch64 (big endian): aarch64_be 52 aarch64_32, // AArch64 (little endian) ILP32: aarch64_32 [all …]
|
| /third_party/rust/crates/bindgen/book/src/ |
| D | objc.md | 1 # Generating Bindings to Objective-C 3 `bindgen` does not (yet) have full objective-c support but it can generate bindings 4 for a lot of the apple frameworks without too much blocklisting. 6 In order to generate bindings, you will need `-x objective-c` as the clang 8 `-fblocks` as a clang arg as well. 10 Depending on your setup, you may need `--generate-block` to generate the block 11 function aliases and `--block-extern-crate` to insert a `extern crate block` at 13 `--objc-extern-crate` parameter. 15 The objective-c classes will be represented as a `struct Foo(id)` and a trait 16 `IFoo` where `Foo` is the objective-c class and `id` is an alias for `*mut [all …]
|
| /third_party/rust/crates/libloading/.github/workflows/ |
| D | libloading.yml | 2 group: ${{ github.workflow }}-${{ github.ref }} 3 cancel-in-progress: true 8 paths-ignore: ['*.mkd', 'LICENSE'] 13 native-test: 14 runs-on: ${{ matrix.os }} 16 fail-fast: false 19 os: [ubuntu-latest, windows-latest, macOS-latest] 20 timeout-minutes: 20 22 - uses: actions/checkout@v2 23 - run: rustup install ${{ matrix.rust_toolchain }} --profile=minimal [all …]
|
| /third_party/skia/third_party/externals/libwebp/ |
| D | xcframeworkbuild.sh | 5 # An iOS, Mac or Mac Catalyst app can decode WebP images by including 13 set -e 21 readonly XCODE=$(xcodebuild -version | grep Xcode | cut -d " " -f2) 22 if [[ -z "${XCODE}" ]] || [[ "${XCODE%%.*}" -lt 11 ]]; then 30 xcodebuild -showsdks \ 31 | grep iphoneos | sort | tail -n 1 | awk '{print substr($NF, 9)}' 32 xcodebuild -showsdks \ 33 | grep macosx | sort | tail -n 1 | awk '{print substr($NF, 7)}' 35 readonly IOS=0 43 # Names should be of the form '<platform>-[<variant>-]<architecture>'. [all …]
|
| D | iosbuild.sh | 5 # An iOS app can decode WebP images by including 'WebPDecoder.framework' and 12 # (http://www.ioncannon.net/programming/1483/using-webp-to-reduce-native-ios-app-size/). 14 set -e 20 readonly SDK=$(xcodebuild -showsdks \ 21 | grep iphoneos | sort | tail -n 1 | awk '{print substr($NF, 9)}' 24 readonly XCODE=$(xcodebuild -version | grep Xcode | cut -d " " -f2) 25 if [[ -z "${XCODE}" ]]; then 32 # Add iPhoneOS-V6 to the list of platforms below if you need armv6 support. 33 # Note that iPhoneOS-V6 support is not available with the iOS6 SDK. 35 PLATFORMS+=" iPhoneOS-V7 iPhoneOS-V7s iPhoneOS-V7-arm64" [all …]
|
| /third_party/libffi/ |
| D | ChangeLog | 3 Date: Sat Nov 23 10:24:58 2019 -0500 9 Date: Sat Nov 23 09:42:04 2019 -0500 15 Date: Sat Nov 23 09:00:14 2019 -0500 21 Date: Sat Nov 23 08:48:53 2019 -0500 27 Date: Sat Nov 23 07:49:58 2019 -0500 33 Date: Sat Nov 23 07:44:26 2019 -0500 39 Date: Fri Nov 22 19:49:38 2019 -0500 45 Date: Fri Nov 22 19:27:34 2019 -0500 52 Date: Fri Nov 22 18:55:36 2019 -0500 58 Date: Fri Nov 22 18:54:30 2019 -0500 [all …]
|
| D | generate-darwin-source-and-headers.py | 16 triple = 'i386-apple-darwin11' 17 version_min = '-miphoneos-version-min=7.0' 29 triple = 'x86_64-apple-darwin13' 30 version_min = '-miphoneos-version-min=7.0' 42 triple = 'arm-apple-darwin11' 43 version_min = '-miphoneos-version-min=7.0' 55 triple = 'aarch64-apple-darwin13' 56 version_min = '-miphoneos-version-min=7.0' 60 src_dir = 'aarch64' 68 triple = 'i386-apple-darwin10' [all …]
|
| D | README.md | 2 libffi-3.3 was released on November 23, 2019. Check the libffi web 19 told at run-time about the number and types of arguments used to call 46 | --------------- | ---------------- | ----------------------- | 47 | AArch64 (ARM64) | iOS | Clang | 48 | AArch64 | Linux | GCC | 49 | AArch64 | Windows | MSVC | 54 | ARM | iOS | GCC | 59 | IA-64 | Linux | GCC | 73 | PowerPC 32-bit | AIX | IBM XL C | 74 | PowerPC 64-bit | AIX | IBM XL C | [all …]
|
| /third_party/rust/crates/libc/libc-test/semver/ |
| D | README.md | 11 * Vendor, e.g. `apple.txt`. This allows us to have a single file with system 12 calls shared between multiple OSs, e.g. `ios.txt`, `macos.txt` share the same 15 * Architecture specific system calls, e.g. `linux-x86_64.txt` or 16 `linux-aarch64.txt`. 17 * Target environment, e.g. `windows-mscv.txt` or `windows-gnu.txt`.
|
| /third_party/rust/crates/libc/src/unix/bsd/apple/b64/ |
| D | mod.rs | 1 //! 64-bit specific Apple (ios/darwin) definitions 62 fn eq(&self, other: &pthread_attr_t) -> bool { 72 fn fmt(&self, f: &mut ::fmt::Formatter) -> ::fmt::Result { 111 ) -> ::c_int; in exchangedata() 118 } else if #[cfg(target_arch = "aarch64")] { 119 mod aarch64; 120 pub use self::aarch64::*;
|
| /third_party/flutter/skia/third_party/externals/libwebp/ |
| D | iosbuild.sh | 3 # This script generates 'WebP.framework' and 'WebPDecoder.framework'. An iOS 11 # (http://www.ioncannon.net/programming/1483/using-webp-to-reduce-native-ios-app-size/). 13 set -e 16 readonly SDK=$(xcodebuild -showsdks \ 17 | grep iphoneos | sort | tail -n 1 | awk '{print substr($NF, 9)}' 20 readonly XCODE=$(xcodebuild -version | grep Xcode | cut -d " " -f2) 21 if [[ -z "${XCODE}" ]]; then 28 # Add iPhoneOS-V6 to the list of platforms below if you need armv6 support. 29 # Note that iPhoneOS-V6 support is not available with the iOS6 SDK. 31 PLATFORMS+=" iPhoneOS-V7 iPhoneOS-V7s iPhoneOS-V7-arm64" [all …]
|
| /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 …]
|
| /third_party/openssl/crypto/ |
| D | armcap.c | 2 * Copyright 2011-2022 The OpenSSL Project Authors. All Rights Reserved. 78 /* see https://developer.android.google.cn/ndk/guides/cpu-features */ 103 * Android: according to https://developer.android.com/ndk/guides/cpu-features, 113 * AArch64 used AT_HWCAP. 165 * on iOS. But since Apple universe is "monocultural", it's actually in OPENSSL_cpuid_setup() 166 * possible to simply set pre-defined processor capability mask. in OPENSSL_cpuid_setup() 173 * One could do same even for __aarch64__ iOS builds. It's not done in OPENSSL_cpuid_setup() 175 * Unified code works because it never triggers SIGILL on Apple in OPENSSL_cpuid_setup()
|
| /third_party/rust/crates/signal-hook/.github/workflows/ |
| D | test.yaml | 14 fail-fast: false 17 - ubuntu-latest 18 - macos-latest 19 - windows-latest 21 - stable 22 - beta 23 - nightly 25 - 1.36.0 27 - 1.40.0 29 runs-on: ${{ matrix.os }} [all …]
|
| /third_party/flutter/skia/third_party/externals/libjpeg-turbo/ |
| D | BUILDING.md | 1 Building libjpeg-turbo 6 ------------------ 11 - [CMake](http://www.cmake.org) v2.8.12 or later 13 - [NASM](http://www.nasm.us) or [YASM](http://yasm.tortall.net) 14 (if building x86 or x86-64 SIMD extensions) 16 * If using NASM, 2.10 or later (except 2.11.08) is required for an x86-64 Mac 17 build (2.11.08 does not work properly with libjpeg-turbo's x86-64 SIMD code 21 - NOTE: Currently, if it is desirable to hide the SIMD function symbols in 23 libjpeg-turbo, then YASM must be used when building libjpeg-turbo. 34 ARCH=`uname -m` [all …]
|
| /third_party/libwebsockets/ |
| D | .sai.json | 2 "schema": "sai-1", 8 "linux-debian-11/x86_64-amd/gcc": { 9 …-test-server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && mak… 11 "linux-debian-buster/x86-amd/gcc": { 12 …-test-server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && mak… 14 "linux-debian-sid/x86_64-amd/gcc": { 15 …-test-server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && mak… 17 "linux-ubuntu-xenial/x86_64-amd/gcc": { 18 …-test-server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && mak… 20 "linux-debian-sid/x86-amd/gcc": { [all …]
|
| /third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
| D | randen_detect.cc | 7 // https://www.apache.org/licenses/LICENSE-2.0 45 // MSVC-equivalent __cpuid intrinsic function. 55 // On linux, just use the c-library getauxval call. 68 // as well as the google open-source cpu_features library. 70 // TODO(absl-team): Consider implementing a fallback of directly reading 105 #pragma clang diagnostic ignored "-Wunreachable-code-return" 115 // Fon non-x86 it is much more complicated. 118 // the direct c-library version, or the android probing version which loads 165 // For AARCH64: Require crypto+neon in CPUSupportsRandenHwAes() 182 // * Rely on compiler-generated target-based dispatch. in CPUSupportsRandenHwAes() [all …]
|
| /third_party/libffi/libffi.xcodeproj/ |
| D | project.pbxproj | 150 …/* ffi.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIn… 194 … /* libffi.a */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIn… 282 DBFA716B187F1D9B00A76262 /* aarch64 */, 289 DBFA716B187F1D9B00A76262 /* aarch64 */ = { 296 path = aarch64; 393 DB13B1651849DF1E0010F42D /* libffi-iOS */ = { 395 …ionList = DB13B18B1849DF1E0010F42D /* Build configuration list for PBXNativeTarget "libffi-iOS" */; 405 name = "libffi-iOS"; 408 productType = "com.apple.product-type.library.static"; 410 DB13B1901849DF510010F42D /* libffi-Mac */ = { [all …]
|