Home
last modified time | relevance | path

Searched +full:arm +full:- +full:linux +full:- +full:androideabi (Results 1 – 25 of 35) sorted by relevance

12

/third_party/mesa3d/.gitlab-ci/container/debian/
Dandroid_build.sh3 set -ex
11 apt-get install -y --no-remove $EPHEMERAL
14 ndk=android-ndk-r21d
15 wget -O $ndk.zip https://dl.google.com/android/repository/$ndk-linux-x86_64.zip
16 unzip -d / $ndk.zip "$ndk/toolchains/llvm/*"
20 rdfind -makehardlinks true -makeresultsfile false /android-ndk-r21d/
22 find /android-ndk-r21d/ -type f | egrep -i "clang-check|clang-tidy|lldb" | xargs rm -f
24 sh .gitlab-ci/container/create-android-ndk-pc.sh /$ndk zlib.pc "" "-lz" "1.2.3"
26 sh .gitlab-ci/container/create-android-cross-file.sh /$ndk x86_64-linux-android x86_64 x86_64
27 sh .gitlab-ci/container/create-android-cross-file.sh /$ndk i686-linux-android x86 x86
[all …]
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/android/
Dandroid_sdk_test.dart2 // Use of this source code is governed by a BSD-style license that can be
41 Config.instance.setValue('android-sdk', sdkDir.path);
52 Config.instance.setValue('android-sdk', sdkDir.path);
63 Config.instance.setValue('android-sdk', sdkDir.path);
73 Config.instance.setValue('android-sdk', sdkDir.path);
77 when(processManager.runSync(<String>[sdk.sdkManagerPath, '--version'],
88 Config.instance.setValue('android-sdk', sdkDir.path);
96 ' - android-22\n'
97 ' - android-23');
105 Config.instance.setValue('android-sdk', sdkDir.path);
[all …]
/third_party/libwebsockets/contrib/
Dcross-arm-android-gnueabi.cmake2 # CMake Toolchain file for crosscompiling on ARM.
6 # cmake .. -DCMAKE_TOOLCHAIN_FILE=../cross-arm-linux-gnueabihf.cmake
9 set(CROSS_PATH /opt/libwebsockets_android/android-toolchain-arm)
18 set(CMAKE_C_COMPILER "${CROSS_PATH}/bin/arm-linux-androideabi-gcc")
19 set(CMAKE_CXX_COMPILER "${CROSS_PATH}/bin/arm-linux-androideabi-g++")
23 # things according to their local policy, eg, Fedora is -O2 and Ubuntu is -O3
25 # our desire for cross-build release optimization policy for code built to run
29 # sane value for cross-build here. Notice some gcc versions enable broken
30 # optimizations with -O3.
33 set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O2")
[all …]
/third_party/rust/crates/libc/ci/docker/arm-linux-androideabi/
DDockerfile3 RUN dpkg --add-architecture i386
4 RUN apt-get update
5 RUN apt-get install -y --no-install-recommends libc6-dev gcc
6 RUN apt-get install -y --no-install-recommends \
9 ca-certificates \
11 python3-distutils \
14 openjdk-8-jre \
21 ENV ANDROID_ARCH=arm
22 ENV PATH=$PATH:/android/ndk-$ANDROID_ARCH/bin:/android/sdk/cmdline-tools/tools:/android/sdk/platfor…
24 RUN sh /android/android-install-ndk.sh $ANDROID_ARCH
[all …]
/third_party/rust/crates/minimal-lexical/.github/workflows/
DCross.yml11 runs-on: ubuntu-latest
13 fail-fast: false
17 - aarch64-linux-android
18 - arm-linux-androideabi
19 - armv7-linux-androideabi
20 - i686-linux-android
21 - x86_64-linux-android
23 # Linux
24 - aarch64-unknown-linux-gnu
25 - arm-unknown-linux-gnueabi
[all …]
/third_party/rust/crates/libc/ci/
Dbuild.sh8 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 …]
/third_party/node/deps/cares/
DINSTALL.md1 ** This file is adapted from libcurl and not yet fully rewritten for c-ares! **
15 Lots of people download binary distributions of c-ares. This document
16 does not describe how to install c-ares using such a binary package.
17 This document describes how to compile, build and install c-ares from
24 release tarball, see the [GIT-INFO](GIT-INFO) file in the root directory
35 ### General Information, works on most Unix Platforms (Linux, FreeBSD, etc)
47 [GIT-INFO](GIT_INFO) on how to proceed.
51 ./configure --help
53 If you want to install c-ares in a different file hierarchy than /usr/local,
56 ./configure --prefix=/path/to/c-ares/tree
[all …]
/third_party/libsnd/Scripts/
Dandroid-configure.sh1 #!/bin/bash -e
3 # Copyright (C) 2013-2016 Erik de Castro Lopo <erikd@mega-nerd.com>
30 ANDROID_NDK_VER=${ANDROID_NDK_VER:-r10}
33 ANDROID_GCC_VER=${ANDROID_GCC_VER:-4.9}
36 ANDROID_API_VER=${ANDROID_API_VER:-14}
38 ANDROID_TARGET=${ANDROID_TARGET:-arm-linux-androideabi}
40 if test -z ${ANDROID_TOOLCHAIN_HOME} ; then
46 #-------------------------------------------------------------------------------
49 BUILD_MACHINE=$(uname -s | tr 'A-Z' 'a-z')-$(uname -m)
59 export ANDROID_NDK=${ANDROID_TOOLCHAIN_HOME}/android-ndk-${ANDROID_NDK_VER}
[all …]
/third_party/rust/crates/nix/
DREADME.md3 [![Cirrus Build Status](https://api.cirrus-ci.com/github/nix-rust/nix.svg)](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 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
[all …]
D.cirrus.yml8 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 …]
/third_party/openssl/
DNOTES-ANDROID.md5 -------------------
8 NDK. It's available for Linux, macOS and Windows, but only Linux
15 -------------
17 Android is a cross-compiled target and you can't rely on `./Configure`
19 target explicitly; there are `android-arm`, `android-arm64`, `android-mips`,
20 `android-mip64`, `android-x86` and `android-x86_64` (`*MIPS` targets are no
23 Do not pass --cross-compile-prefix (as you might be tempted), as it
30 to point at the `NDK` directory. If you're using a side-by-side NDK the path
31 will look something like `/some/where/android-sdk/ndk/<ver>`, and for a
32 standalone NDK the path will be something like `/some/where/android-ndk-<ver>`.
[all …]
/third_party/skia/gn/
Dplatform.gni6 # http://www.apache.org/licenses/LICENSE-2.0
22 if (host_os == "linux") {
23 ndk_host = "linux-x86_64"
25 ndk_host = "darwin-x86_64"
27 ndk_host = "windows-x86_64"
31 ndk_target = "aarch64-linux-android"
32 ndk_gdbserver = "prebuilt/android-arm64/gdbserver/gdbserver"
33 } else if (target_cpu == "arm") {
34 ndk_target = "armv7a-linux-androideabi"
35 ndk_gdbserver = "prebuilt/android-arm/gdbserver/gdbserver"
[all …]
DBUILDCONFIG.gn3 # Use of this source code is governed by a BSD-style license that can be
47 # This is just to make the Dawn build files happy. Skia itself uses target_os = "linux"
83 if (host_os == "linux") {
84 ndk_host = "linux-x86_64"
86 ndk_host = "darwin-x86_64"
88 ndk_host = "windows-x86_64"
92 ndk_target = "aarch64-linux-android"
93 ndk_gdbserver = "prebuilt/android-arm64/gdbserver/gdbserver"
94 } else if (target_cpu == "arm") {
95 ndk_target = "armv7a-linux-androideabi"
[all …]
/third_party/mesa3d/.gitlab-ci/container/
Dcreate-android-ndk-pc.sh5 set -ex
13 sysroot=$ndk/toolchains/llvm/prebuilt/linux-x86_64/sysroot
16 x86_64-linux-android \
17 i686-linux-android \
18 aarch64-linux-android \
19 arm-linux-androideabi; do
21 mkdir -p $pcdir
35 Libs: -L$sysroot/usr/lib/$arch/29 $libs
36 Cflags: -I$sysroot/usr/include $cflags
/third_party/node/
Dandroid-configure3 # In order to cross-compile node for Android using NDK, run:
4 # source android-configure <path_to_ndk> [arch]
6 # By running android-configure with source, will allow environment variables to
11 if [ $# -ne 3 ]; then
20 if [ $ANDROID_SDK_VERSION -lt 23 ]; then
27 arm)
28 DEST_CPU="arm"
29 TOOLCHAIN_NAME="armv7-linux-androideabi"
33 TOOLCHAIN_NAME="i686-linux-android"
37 TOOLCHAIN_NAME="x86_64-linux-android"
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/android/include/llvm/Config/
Dllvm-config.h1 /*===------- 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-linux-android"
34 #define LLVM_DEFAULT_TARGET_TRIPLE "i686-linux-android"
36 #define LLVM_DEFAULT_TARGET_TRIPLE "armv7-linux-androideabi"
38 #define LLVM_DEFAULT_TARGET_TRIPLE "aarch64-linux-android"
51 #define LLVM_HOST_TRIPLE "x86_64-linux-android"
53 #define LLVM_HOST_TRIPLE "i686-linux-android"
[all …]
/third_party/libsnd/
DBuilding-for-Android.md4 libsndfile for Android (arm-linux-androideabi) should be as simple as:
8 ./Scripts/android-configure.sh
11 The `Scripts/android-configure.sh` contains four of variables; `ANDROID_NDK_VER`,
/third_party/flutter/skia/gn/
DBUILDCONFIG.gn3 # Use of this source code is governed by a BSD-style license that can be
60 is_linux = current_os == "linux"
93 if (host_os == "linux") {
94 ndk_host = "linux-x86_64"
96 ndk_host = "darwin-x86_64"
98 ndk_host = "windows-x86_64"
102 ndk_target = "aarch64-linux-android"
103 ndk_gdbserver = "prebuilt/android-arm64/gdbserver/gdbserver"
104 } else if (target_cpu == "arm") {
105 ndk_target = "armv7a-linux-androideabi"
[all …]
/third_party/flutter/flutter/packages/flutter_tools/test/src/
Dmocks.dart2 // Use of this source code is governed by a BSD-style license that can be
73 _createSdkFile(dir, 'platform-tools/adb$exe');
77 _createSdkFile(dir, 'build-tools/19.1.0/aapt$exe');
78 _createSdkFile(dir, 'build-tools/22.0.1/aapt$exe');
79 _createSdkFile(dir, 'build-tools/23.0.2/aapt$exe');
81 _createSdkFile(dir, 'build-tools/24.0.0-preview/aapt$exe');
84 _createSdkFile(dir, 'platforms/android-22/android.jar');
85 _createSdkFile(dir, 'platforms/android-23/android.jar');
87 _createSdkFile(dir, 'platforms/android-N/android.jar');
88 _createSdkFile(dir, 'platforms/android-N/build.prop', contents: _buildProp);
[all …]
/third_party/flutter/flutter/packages/flutter_tools/lib/src/android/
Dandroid_sdk.dart2 // Use of this source code is governed by a BSD-style license that can be
27 // $ANDROID_HOME/platform-tools/adb
29 // $ANDROID_HOME/build-tools/19.1.0/aapt, dx, zipalign
30 // $ANDROID_HOME/build-tools/22.0.1/aapt
31 // $ANDROID_HOME/build-tools/23.0.2/aapt
32 // $ANDROID_HOME/build-tools/24.0.0-preview/aapt
33 // $ANDROID_HOME/build-tools/25.0.2/apksigner
35 // $ANDROID_HOME/platforms/android-22/android.jar
36 // $ANDROID_HOME/platforms/android-23/android.jar
37 // $ANDROID_HOME/platforms/android-N/android.jar
[all …]
/third_party/openh264/build/
Dplatform-android.mk1 ARCH = arm
9 ifeq ($(ARCH), arm)
11 CFLAGS += -march=armv7-a -mfloat-abi=softfp
12 CFLAGS += -mfpu=vfpv3-d16
13 LDFLAGS += -march=armv7-a -Wl,--fix-cortex-a8
14 APP_ABI = armeabi-v7a
17 APP_ABI = arm64-v8a
21 ASMFLAGS += -f elf
26 ASMFLAGS += -f elf64
39 …ROJECT_PATH=$(SRC_PATH)/codec/build/android/dec make --no-print-dir -f $(NDKROOT)/build/core/build
[all …]
/third_party/rust/crates/rustix/.github/workflows/
Dmain.yml6 - 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/Configurations/
D15-android.conf3 # See NOTES-Android.md for details, and don't miss platform-specific
11 arm => "arm-linux-androideabi",
12 arm64 => "aarch64-linux-android",
13 mips => "mipsel-linux-android",
14 mips64 => "mips64el-linux-android",
15 x86 => "i686-linux-android",
16 x86_64 => "x86_64-linux-android",
33 my $is_standalone_toolchain = -f "$ndk/AndroidVersion.txt";
35 my $is_ndk = -f $ndk_src_props;
46 if (m|Pkg\.Revision\s*=\s*([0-9]+)|) {
[all …]
/third_party/rust/crates/signal-hook/.github/workflows/
Dtest.yaml14 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/rust/crates/libc/.github/workflows/
Dbors.yml6 - auto-libc
7 - try
13 … actions: write # to cancel workflows (rust-lang/simpleinfra/github-actions/cancel-outdated-builds)
16 name: Docker Linux Tier1
17 runs-on: ubuntu-22.04
19 fail-fast: true
22 i686-unknown-linux-gnu,
23 x86_64-unknown-linux-gnu,
26 - uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
29 - uses: actions/checkout@v3
[all …]

12