Home
last modified time | relevance | path

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

12345

/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/libuv/.github/workflows/
DCI-unix.yml1 name: CI-unix
6 - '**'
7 - '!docs/**'
8 - '!src/win/**'
9 - '!.**'
10 - '.github/workflows/CI-unix.yml'
13 - v[0-9].*
14 - master
17 build-linux:
18 runs-on: ubuntu-latest
[all …]
/third_party/rust/crates/nix/
Dbors.toml2 "Android aarch64",
3 "Android arm",
4 "Android armv7",
5 "Android i686",
6 "Android x86_64",
11 "Linux MIPS",
12 "Linux MIPS64 el",
13 "Linux MIPS64",
14 "Linux aarch64",
15 "Linux arm gnueabi",
[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 …]
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/aarch64-linux-android/
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 \
18 WORKDIR /android/
19 COPY android* /android/
21 ENV ANDROID_ARCH=aarch64
[all …]
/third_party/rust/crates/libc/
DCargo.toml5 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 …]
/third_party/mindspore/mindspore-src/source/scripts/
Dlite_release_package.sh2 # Copyright 2020-2021 Huawei Technologies Co., Ltd
8 # http://www.apache.org/licenses/LICENSE-2.0
17 set -e
23 pkg_name="mindspore-lite-${version}-android-${arch}"
25 [ -n "${pkg_name}" ] && rm -rf ${pkg_name}
26 tar -xzf ${input_path}/android_${arch}/${device}/${pkg_name}.tar.gz
27 # Copy java runtime to Android package
28 cp ${input_path}/aar/mindspore-lite-*.aar ${pkg_name}
30 mkdir -p ${output_path}/release/android/${device}/
31 tar -czf ${output_path}/release/android/${device}/${pkg_name}.tar.gz ${pkg_name}
[all …]
/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/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 …]
/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/libwebsockets/contrib/
Dcross-aarch64-android.cmake2 # CMake Toolchain file for crosscompiling Android / aarch64
6 # cmake .. -DCMAKE_TOOLCHAIN_FILE=contrib/cross-aarch64-android.cmake
12 set(CMAKE_SYSTEM_PROCESSOR aarch64)
13 set(NDK /opt/android/ndk/21.1.6352462/)
14 set(CROSS_SYSROOT "${NDK}/platforms/android-${ANDROID_API_VER}/arch-${ABARCH1}")
15 set(BUILD_ARCH linux-x86_64)
21 set(TC_BASE ${TC_PATH}/bin/${CMAKE_SYSTEM_PROCESSOR}-linux-android)
22 set(PLATFORM android)
23 set(CMAKE_SYSTEM_NAME Linux)
24 set(CMAKE_C_COMPILER "${TC_BASE}${ANDROID_API_VER}-clang")
[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/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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/scripts/
Dupdate.py9 # http://www.apache.org/licenses/LICENSE-2.0
29 # LLVM_BRANCH must match the value of the same variable in third_party/update-llvm-10.sh
32 … 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"))
44 ('AArch64', ('__aarch64__',)),
51 # Per-platform arches
53 'android': [
54 ('__x86_64__', 'x86_64-linux-android'),
55 ('__i386__', 'i686-linux-android'),
[all …]
/third_party/mindspore/mindspore-src/source/cmake/external_libs/
Dmockcpp.cmake1 set(mockcpp_CXXFLAGS "-D_FORTIFY_SOURCE=2 -O2")
2 set(mockcpp_CFLAGS "-D_FORTIFY_SOURCE=2 -O2")
5 -DBUILD_TESTING=OFF -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DBUILD_SHARED_LIBS=ON
6 -DCMAKE_MACOSX_RPATH=TRUE)
8 if(PLATFORM_ARM64 AND CMAKE_SYSTEM_NAME MATCHES "Android")
9 … set(CMAKE_OPTION -DCMAKE_TOOLCHAIN_FILE=$ENV{ANDROID_NDK}/build/cmake/android.toolchain.cmake
10 -DANDROID_NATIVE_API_LEVEL=19
11 -DANDROID_NDK=$ENV{ANDROID_NDK}
12 -DANDROID_ABI=arm64-v8a
13 -DANDROID_TOOLCHAIN_NAME=aarch64-linux-android-clang
[all …]
Djpeg_turbo.cmake3 set(CMAKE_SYSTEM_PROCESSOR "aarch64")
7 set(REQ_URL "https://gitee.com/mirrors/libjpeg-turbo/repository/archive/2.0.4.tar.gz")
10 set(REQ_URL "https://github.com/libjpeg-turbo/libjpeg-turbo/archive/2.0.4.tar.gz")
15 …set(jpeg_turbo_CFLAGS "-fstack-protector-all -Wno-uninitialized -Wno-unused-parameter -fPIC -D_FOR…
16 -O2")
19 set(jpeg_turbo_CFLAGS "-O2")
21 … set(jpeg_turbo_CFLAGS "-fstack-protector-all -Wno-unused-parameter -fPIC -D_FORTIFY_SOURCE=2 -O2")
23 set(jpeg_turbo_CFLAGS "${jpeg_turbo_CFLAGS} -march=armv8.2-a -mtune=cortex-a72")
24 …set(jpeg_turbo_CFLAGS "${jpeg_turbo_CFLAGS} -Wno-uninitialized -march=armv8.2-a -mtune=cortex-a72")
26 set(jpeg_turbo_CFLAGS "${jpeg_turbo_CFLAGS} -Wno-maybe-uninitialized")
[all …]
Dglog.cmake3 set(glog_CXXFLAGS "${CMAKE_CXX_FLAGS} -Dgoogle=mindspore_private")
10 set(glog_CXXFLAGS "-D_FORTIFY_SOURCE=2 -O2 ${SECURE_CXX_FLAGS} -Dgoogle=mindspore_private")
11 set(glog_CFLAGS "-D_FORTIFY_SOURCE=2 -O2 ${SECURE_C_FLAGS}")
19 … set(glog_CXXFLAGS "-D_FORTIFY_SOURCE=2 -O2 ${SECURE_CXX_FLAGS} -Dgoogle=mindspore_private /EHsc")
24 set(glog_CXXFLAGS "-D_FORTIFY_SOURCE=2 -O2 ${SECURE_CXX_FLAGS} -Dgoogle=mindspore_private")
26 set(glog_CFLAGS "-D_FORTIFY_SOURCE=2 -O2")
32 set(glog_CXXFLAGS "${glog_CXXFLAGS} -D_GLIBCXX_USE_CXX11_ABI=0")
43 set(glog_option -DBUILD_TESTING=OFF -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DBUILD_SHARED_LIBS=ON -DW…
44 -DCMAKE_BUILD_TYPE=Release)
48 set(glog_option ${glog_option} -DHAVE_DBGHELP=ON)
[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/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/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/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
/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 …]
/third_party/mindspore/mindspore-src/source/mindspore/lite/
Dbuild_lite.sh2 # Copyright 2021-2022 Huawei Technologies Co., Ltd
8 # http://www.apache.org/licenses/LICENSE-2.0
17 set -e
21 echo -e "\e[31mANDROID_NDK=$ANDROID_NDK \e[0m"
23 …echo -e "\e[31mplease set ANDROID_NDK in environment variable for example: export ANDROID_NDK=/roo…
33 cp -r ${HI35XX_SDK_PATH}/third_patry ${BASEPATH}/mindspore/lite/providers/nnie
46 local ms_pack="mindspore-lite-${VERSION_STR}"
49 local linux_x86_path="${cpack_dir}/Linux/TGZ/${ms_pack}/linux-x64"
50 local linux_cortex_path="${cpack_dir}/Linux/TGZ/${ms_pack}/none-cortex-m7"
51 local linux_aarch64_path="${cpack_dir}/Linux/TGZ/${ms_pack}/linux-aarch64"
[all …]

12345