Home
last modified time | relevance | path

Searched +full:x86_64 +full:- +full:linux +full:- +full:android (Results 1 – 25 of 242) sorted by relevance

12345678910

/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/rust/crates/nix/
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 …]
Dbors.toml2 "Android aarch64",
3 "Android arm",
4 "Android armv7",
5 "Android i686",
6 "Android x86_64",
7 "DragonFly BSD x86_64",
10 "Fuchsia x86_64",
11 "Linux MIPS",
12 "Linux MIPS64 el",
13 "Linux MIPS64",
[all …]
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 …]
/third_party/rust/crates/libc/ci/docker/x86_64-linux-android/
DDockerfile3 RUN apt-get update && \
4 apt-get install -y --no-install-recommends \
5 ca-certificates \
8 libc-dev \
10 python3-distutils \
13 WORKDIR /android/
14 ENV ANDROID_ARCH=x86_64
15 COPY android-install-ndk.sh /android/
16 RUN sh /android/android-install-ndk.sh $ANDROID_ARCH
18 # We do not run x86_64-linux-android tests on an android emulator.
[all …]
/third_party/rust/crates/minimal-lexical/.github/workflows/
DCross.yml11 runs-on: ubuntu-latest
13 fail-fast: false
16 # Android
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
[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"
34 ndk_target = "armv7a-linux-androideabi"
35 ndk_gdbserver = "prebuilt/android-arm/gdbserver/gdbserver"
37 ndk_target = "x86_64-linux-android"
[all …]
DBUILDCONFIG.gn3 # Use of this source code is governed by a BSD-style license that can be
17 # Android 5.0, Lollipop
47 # This is just to make the Dawn build files happy. Skia itself uses target_os = "linux"
60 if (target_cpu == "x86_64") {
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"
[all …]
/third_party/flutter/skia/third_party/externals/angle2/doc/
DDebuggingTips.md3 There are many ways to debug ANGLE using generic or platform-dependent tools. Here is a list of tips
6 ## Running ANGLE under apitrace on Linux
23 `ldconfig -p | grep libGL`.
35 ninja -C out/Debug
37 apitrace trace -o mytrace ./out/Debug/hello_triangle
41 ## Running ANGLE under GAPID on Linux
43 [GAPID](https://github.com/google/gapid) can be used to capture trace of Vulkan commands on Linux.
52 tests with `--single-process-tests` argument.
54 ## Running ANGLE under GAPID on Android
57 command stream on Android. For it to work, ANGLE's libraries must have different names from the
[all …]
/third_party/rust/crates/libc/ci/
Dsemver.sh5 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
23 *linux*)
25 aarch64-fuchsia \
26 aarch64-linux-android \
27 aarch64-unknown-linux-gnu \
28 aarch64-unknown-linux-musl \
29 armv7-linux-androideabi \
[all …]
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 …]
Dandroid-install-ndk.sh3 set -ex
5 NDK=android-ndk-r21d
6 wget --tries=20 -q https://dl.google.com/android/repository/${NDK}-linux-x86_64.zip
7 unzip -q ${NDK}-linux-x86_64.zip
26 x86_64)
27 arch=x86_64
37 --install-dir "/android/ndk-${1}" \
38 --arch "${arch}" \
39 --api ${api}
41 rm -rf ./${NDK}-linux-x86_64.zip ./${NDK}
/third_party/skia/third_party/externals/angle2/doc/
DDebuggingTips.md3 There are many ways to debug ANGLE using generic or platform-dependent tools. Here is a list of tips
6 ## Running ANGLE under apitrace on Linux
23 `ldconfig -p | grep libGL`.
35 ninja -C out/Debug
37 apitrace trace -o mytrace ./out/Debug/hello_triangle
43 Normally, ANGLE only logs errors and warnings (e.g. to Android logcat). General logging, or
49 ## Debug Angle on Android
51 Android is built as an Android APK, which makes it more difficult to debug an APK that is using ANG…
64 diff --git a/build/config/compiler/compiler.gni b/build/config/compiler/compiler.gni
66 --- a/build/config/compiler/compiler.gni
[all …]
/third_party/f2fs-tools/.github/workflows/
Dci.yml1 # See also https://docs.github.com/en/actions/learn-github-actions/expressions
2 # See also https://github.com/marketplace/actions/setup-android-ndk
10 runs-on: ubuntu-latest
12 fail-fast: false
15 - android
16 - linux-gcc
17 - linux-clang
18 - linux-x86-gcc
19 - linux-powerpc64-gcc
20 - linux-mingw64-gcc
[all …]
/third_party/openssl/
DNOTES-ANDROID.md1 Notes for Android platforms
5 -------------------
7 Beside basic tools like perl and make you'll need to download the Android
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
[all …]
/third_party/flutter/skia/gn/
DBUILDCONFIG.gn3 # Use of this source code is governed by a BSD-style license that can be
15 # Android 5.0, Lollipop
49 target_os = "android"
56 is_android = current_os == "android"
60 is_linux = current_os == "linux"
70 if (target_cpu == "x86_64") {
93 if (host_os == "linux") {
94 ndk_host = "linux-x86_64"
96 ndk_host = "darwin-x86_64"
98 ndk_host = "windows-x86_64"
[all …]
/third_party/flutter/skia/infra/skqp/docker/android-skqp/
DDockerfile1 # This image can be used to build an Android app using the NDK, since $ANDROID_HOME is set.
2 # The only "Skia-specific" thing is the depot_tools, everything else is pretty generic.
4 # The base Docker image (butomo1989/docker-android-x86-8.1:1.4-p1) has an android emulator
6 # docker run --privileged -d --name android_em -e DEVICE="Samsung Galaxy S6" butomo1989/docker-andr…
8 # docker exec -it android_em /bin/bash
12 FROM butomo1989/docker-android-x86-8.1:1.4-p1
14 RUN apt-get update && apt-get upgrade -y && \
15 apt-get install -y \
16 clang-6.0 \
24 RUN wget -O /root/android-ndk-r20-linux-x86_64.zip https://dl.google.com/android/repository/android…
[all …]
/third_party/mesa3d/docs/
Dandroid.rst1 Android title
4 Mesa hardware drivers can be built for Android one of two ways: built
5 into the Android OS using the Android.mk build system on older versions
6 of Android, or out-of-tree using the Meson build system and the
7 Android NDK.
9 The Android.mk build system has proven to be hard to maintain, as one
10 needs a built Android tree to build against, and it has never been
12 Chrome OS developers for building and testing Android drivers.
14 Building using the Android NDK
15 ------------------------------
[all …]
/third_party/openh264/
DREADME.md6 ----------------
7 - Constrained Baseline Profile up to Level 5.2 (Max frame size is 36864 macro-blocks)
8 - Arbitrary resolution, not constrained to multiples of 16x16
9 - Rate control with adaptive quantization, or constant quantization
10 - Slice options: 1 slice per frame, N slices per frame, N macroblocks per slice, or N bytes per sli…
11 - Multiple threads automatically used for multiple slices
12 - Temporal scalability up to 4 layers in a dyadic hierarchy
13 - Simulcast AVC up to 4 resolutions from a single input
14 - Spatial simulcast up to 4 resolutions from a single input
15 - Long Term Reference (LTR) frames
[all …]
/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
21 echo "$ANDROID_SDK_VERSION should equal or later than 23(Android 6.0)"
29 TOOLCHAIN_NAME="armv7-linux-androideabi"
33 TOOLCHAIN_NAME="i686-linux-android"
35 x86_64)
37 TOOLCHAIN_NAME="x86_64-linux-android"
[all …]
/third_party/mesa3d/.gitlab-ci/build/
Dgitlab-ci.yml1 # Shared between windows and Linux
2 .build-common:
3 extends: .build-rules
10 - _build/meson-logs/*.txt
11 - _build/meson-logs/strace
12 - shader-db
14 # Just Linux
15 .build-linux:
16 extends: .build-common
23 - !reference [default, before_script]
[all …]
/third_party/openh264/build/
Dplatform-android.mk4 # Android APK/JARs expect libraries to be unversioned
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
23 else ifeq ($(ARCH), x86_64)
24 APP_ABI = x86_64
26 ASMFLAGS += -f elf64
[all …]
/third_party/flutter/flutter/packages/flutter_tools/lib/src/
Dbuild_info.dart2 // Use of this source code is governed by a BSD-style license that can be
27 /// Represents a custom Android product flavor or an Xcode scheme, null for
32 /// Mode-Flavor (e.g. Release-Paid).
41 /// Extra command-line options for front-end.
44 /// Extra command-line options for gen_snapshot.
50 /// On Android it is used as versionCode.
56 /// On Android it is used as versionName.
86 /// Information about an Android build to be performed or used.
160 … printTrace('Invalid build-number: $buildNumber for iOS/macOS, overridden by $tmpBuildNumber.\n'
169 // See versionCode at https://developer.android.com/studio/publish/versioning
[all …]
/third_party/openssl/Configurations/
D15-android.conf1 #### Android...
3 # 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",
21 if ($now_printing =~ m|^android|) {
33 my $is_standalone_toolchain = -f "$ndk/AndroidVersion.txt";
[all …]
/third_party/mesa3d/.gitlab-ci/container/
Dcreate-android-ndk-pc.sh3 # Makes a .pc file in the Android NDK for meson to find its libraries.
5 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

12345678910