diff options
Diffstat (limited to 'include/target.mk')
-rw-r--r-- | include/target.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/target.mk b/include/target.mk index 3401f849a5..17413f9ece 100644 --- a/include/target.mk +++ b/include/target.mk @@ -252,6 +252,10 @@ ifeq ($(DUMP),1) CPU_TYPE = sparc CPU_CFLAGS_ultrasparc = -mcpu=ultrasparc endif + ifeq ($(ARCH),aarch64) + CPU_TYPE ?= armv8-a + CPU_CFLAGS_armv8-a = -mcpu=armv8-a + endif DEFAULT_CFLAGS=$(strip $(CPU_CFLAGS) $(CPU_CFLAGS_$(CPU_TYPE)) $(CPU_CFLAGS_$(CPU_SUBTYPE))) endif |