Searched refs:ARCH (Results 76 - 89 of 89) sorted by path

1234

/linux-master/tools/testing/selftests/kexec/
H A DMakefile4 ARCH ?= $(shell uname -m 2>/dev/null || echo not) macro
5 ARCH_PROCESSED := $(shell echo $(ARCH) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
/linux-master/tools/testing/selftests/kvm/
H A DMakefile8 ARCH ?= $(SUBARCH) macro
10 ifeq ($(ARCH),x86)
12 else ifeq ($(ARCH),arm64)
14 else ifeq ($(ARCH),s390)
17 ARCH_DIR := $(ARCH)
221 ifeq ($(ARCH),x86_64)
224 LINUX_TOOL_ARCH_INCLUDE = $(top_srcdir)/tools/arch/$(ARCH)/include
234 ifeq ($(ARCH),s390)
237 ifeq ($(ARCH),arm64)
/linux-master/tools/testing/selftests/
H A Dlib.mk21 CLANG_TARGET_FLAGS := $(CLANG_TARGET_FLAGS_$(ARCH))
/linux-master/tools/testing/selftests/mm/
H A DMakefile8 ifeq ($(ARCH),)
15 ARCH ?= $(shell echo $(uname_M) | sed -e 's/aarch64.*/arm64/' -e 's/ppc64.*/ppc64/') macro
75 ifneq ($(ARCH),arm64)
79 ifeq ($(ARCH),x86_64)
101 ifneq (,$(findstring $(ARCH),ppc64))
107 ifneq (,$(filter $(ARCH),arm64 ia64 mips64 parisc64 ppc64 riscv64 s390x sparc64 x86_64))
132 ifeq ($(ARCH),x86_64)
H A Drun_vmtests.sh189 if [ -z "$ARCH" ]; then
190 ARCH=$(uname -m 2>/dev/null | sed -e 's/aarch64.*/arm64/')
193 echo "$ARCH64STR" | grep "$ARCH" &>/dev/null && VADDR64=1
346 if [ "$ARCH" == "$ARCH_ARM64" ]; then
350 if [ "$ARCH" == "$ARCH_ARM64" ]; then
/linux-master/tools/testing/selftests/nolibc/
H A DMakefile19 ifeq ($(ARCH),)
21 ARCH = $(SUBARCH) macro
26 # XARCH extends the kernel's ARCH with a few variants of the same
28 # and the Qemu program used. It is copied as-is into ARCH except for
31 # XARCH | ARCH | config
38 # ARCH is already set. For simplicity, ARCH is sufficient for all
44 XARCH = $(or $(XARCH_$(ARCH)),$(ARCH))
52 ARCH macro
[all...]
H A Drun-tests.sh40 -a [ARCH] Host architecture of toolchains to use (default: ${hostarch})
/linux-master/tools/testing/selftests/powerpc/
H A DMakefile4 # ARCH can be overridden by the user for cross compiling
5 ARCH ?= $(shell uname -m) macro
6 ARCH := $(shell echo $(ARCH) | sed -e s/ppc.*/powerpc/) macro
8 ifeq ($(ARCH),powerpc)
/linux-master/tools/testing/selftests/prctl/
H A DMakefile4 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/) macro
6 ifeq ($(ARCH),x86)
/linux-master/tools/testing/selftests/riscv/
H A DMakefile4 # When ARCH not overridden for crosscompiling, lookup machine
5 ARCH ?= $(shell uname -m 2>/dev/null || echo not) macro
7 ifneq (,$(filter $(ARCH),riscv))
/linux-master/tools/testing/selftests/thermal/intel/power_floor/
H A DMakefile4 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/) macro
6 ifeq ($(ARCH),x86)
/linux-master/tools/testing/selftests/thermal/intel/workload_hint/
H A DMakefile4 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/) macro
6 ifeq ($(ARCH),x86)
/linux-master/tools/testing/selftests/vDSO/
H A DMakefile5 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/) macro
10 ifeq ($(ARCH),$(filter $(ARCH),x86 x86_64))
/linux-master/tools/testing/selftests/wireguard/qemu/
H A DMakefile9 BUILD_PATH ?= $(PWD)/build/$(ARCH)
12 ARCH ?= macro
15 ifeq ($(ARCH),)
16 ARCH := $(HOST_ARCH) macro
49 ifeq ($(HOST_ARCH),$(ARCH))
56 ifeq ($(ARCH),aarch64)
62 ifeq ($(HOST_ARCH),$(ARCH))
68 else ifeq ($(ARCH),aarch64_be)
74 ifeq ($(HOST_ARCH),$(ARCH))
80 else ifeq ($(ARCH),ar
[all...]

Completed in 247 milliseconds

1234