Pass NO_SVE if set

This commit is contained in:
Martin Kroeker 2022-12-25 12:19:20 +01:00 committed by GitHub
parent f07f4db1ce
commit ca3b5ae3f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -664,7 +664,7 @@ DYNAMIC_CORE += CORTEXA57
DYNAMIC_CORE += CORTEXA72 DYNAMIC_CORE += CORTEXA72
DYNAMIC_CORE += CORTEXA73 DYNAMIC_CORE += CORTEXA73
DYNAMIC_CORE += NEOVERSEN1 DYNAMIC_CORE += NEOVERSEN1
ifeq ($(GCCVERSIONGTEQ10), 1) ifneq ($(NO_SVE), 1)
DYNAMIC_CORE += NEOVERSEV1 DYNAMIC_CORE += NEOVERSEV1
DYNAMIC_CORE += NEOVERSEN2 DYNAMIC_CORE += NEOVERSEN2
endif endif
@ -1384,6 +1384,10 @@ ifeq ($(NO_AVX512), 1)
CCOMMON_OPT += -DNO_AVX512 CCOMMON_OPT += -DNO_AVX512
endif endif
ifeq ($(NO_SVE), 1)
CCOMMON_OPT += -DNO_SVE
endif
ifdef SMP ifdef SMP
CCOMMON_OPT += -DSMP_SERVER CCOMMON_OPT += -DSMP_SERVER