Makefile (57b8b1b4351dafe94de09a2aab5eba885b6705f0) Makefile (e9b60476bea058d85f8029e6701d9476f7fdb92f)
1# SPDX-License-Identifier: GPL-2.0
2
3# When ARCH not overridden for crosscompiling, lookup machine
4ARCH ?= $(shell uname -m 2>/dev/null || echo not)
5
6ifneq (,$(filter $(ARCH),aarch64 arm64))
1# SPDX-License-Identifier: GPL-2.0
2
3# When ARCH not overridden for crosscompiling, lookup machine
4ARCH ?= $(shell uname -m 2>/dev/null || echo not)
5
6ifneq (,$(filter $(ARCH),aarch64 arm64))
7ARM64_SUBTARGETS ?= tags signal pauth fp
7ARM64_SUBTARGETS ?= tags signal mte
8else
9ARM64_SUBTARGETS :=
10endif
11
12CFLAGS := -Wall -O2 -g
13
14# A proper top_srcdir is needed by KSFT(lib.mk)
15top_srcdir = $(realpath ../../../../)

--- 51 unchanged lines hidden ---
8else
9ARM64_SUBTARGETS :=
10endif
11
12CFLAGS := -Wall -O2 -g
13
14# A proper top_srcdir is needed by KSFT(lib.mk)
15top_srcdir = $(realpath ../../../../)

--- 51 unchanged lines hidden ---