Searched +full:armv8l +full:- +full:linux +full:- +full:gnueabihf (Results 1 – 7 of 7) sorted by relevance
| /external/cpu_features/scripts/ |
| D | test_integration.sh | 3 # Toolchains for little-endian, 64-bit ARMv8 for GNU/Linux systems 4 function set_aarch64-linux-gnu() { 5 export TARGET=aarch64-linux-gnu 8 # Toolchains for little-endian, hard-float, 32-bit ARMv7 (and earlier) for GNU/Linux systems 9 function set_arm-linux-gnueabihf() { 10 export TARGET=arm-linux-gnueabihf 13 # Toolchains for little-endian, 32-bit ARMv8 for GNU/Linux systems 14 function set_armv8l-linux-gnueabihf() { 15 export TARGET=armv8l-linux-gnueabihf 18 # Toolchains for little-endian, soft-float, 32-bit ARMv7 (and earlier) for GNU/Linux systems [all …]
|
| D | run_integration.sh | 2 set -eo pipefail 17 mkdir -p "${ARCHIVE_DIR}" 19 local -r URL=$1 20 local -r RELATIVE_DIR=$2 21 local -r DESTINATION="${ARCHIVE_DIR}/${RELATIVE_DIR}" 22 if [[ ! -d "${DESTINATION}" ]] ; then 24 local -r ARCHIVE_NAME=$(basename "${URL}") 25 test -f "${ARCHIVE_NAME}" || wget --no-verbose "${URL}" 27 rm -f "${ARCHIVE_NAME}" 36 local -r QEMU_VERSION=${QEMU_VERSION:=5.2.0} [all …]
|
| /external/cpu_features/.github/workflows/ |
| D | arm_linux.yml | 1 name: arm Linux 8 - cron: '0 0 7,22 * *' 13 runs-on: ubuntu-latest 17 [arm-linux-gnueabihf], 18 [armv8l-linux-gnueabihf], 19 [arm-linux-gnueabi], 20 [armeb-linux-gnueabihf], 21 [armeb-linux-gnueabi] 23 fail-fast: false 27 - uses: actions/checkout@v2 [all …]
|
| /external/cpu_features/ci/ |
| D | Makefile | 2 BRANCH := $(shell git rev-parse --abbrev-ref HEAD) 3 SHA1 := $(shell git rev-parse --verify HEAD) 11 @echo -e "${BOLD}SYNOPSIS${RESET}" 12 @echo -e "\tmake <target> [NOCACHE=1]" 14 @echo -e "${BOLD}DESCRIPTION${RESET}" 15 @echo -e "\ttest build inside docker container to have a reproductible build." 17 @echo -e "${BOLD}MAKE TARGETS${RESET}" 18 @echo -e "\t${BOLD}help${RESET}: display this help and exit." 20 …@echo -e "\t${BOLD}amd64_<stage>${RESET}: build <stage> docker image using an Ubuntu:latest x86_64… 21 @echo -e "\t${BOLD}save_amd64_<stage>${RESET}: Save the <stage> docker image." [all …]
|
| /external/cronet/buildtools/third_party/libc++/trunk/cmake/caches/ |
| D | Armv8Arm.cmake | 2 set(CMAKE_CXX_COMPILER_TARGET "armv8l-linux-gnueabihf" CACHE STRING "") 3 set(CMAKE_CXX_FLAGS "-marm" CACHE STRING "") 4 set(CMAKE_C_FLAGS "-marm" CACHE STRING "")
|
| D | Armv8Thumb-noexceptions.cmake | 2 set(CMAKE_CXX_COMPILER_TARGET "armv8l-linux-gnueabihf" CACHE STRING "") 3 set(CMAKE_CXX_FLAGS "-mthumb" CACHE STRING "") 4 set(CMAKE_C_FLAGS "-mthumb" CACHE STRING "")
|
| /external/ComputeLibrary/ |
| D | SConstruct | 1 # -*- coding: utf-8 -*- 3 # Copyright (c) 2016-2023 Arm Limited. 5 # SPDX-License-Identifier: MIT 64 # Manage data-types 66 env.Append(CXXFLAGS = ['-DENABLE_FP16_KERNELS']) 68 env.Append(CXXFLAGS = ['-DENABLE_FP32_KERNELS']) 70 env.Append(CXXFLAGS = ['-DENABLE_QASYMM8_KERNELS']) 72 env.Append(CXXFLAGS = ['-DENABLE_QASYMM8_SIGNED_KERNELS']) 74 env.Append(CXXFLAGS = ['-DENABLE_QSYMM16_KERNELS']) 76 env.Append(CXXFLAGS = ['-DENABLE_INTEGER_KERNELS']) [all …]
|