Browse Source

Pass NO_SVE if set

tags/v0.3.22^2
Martin Kroeker GitHub 2 years ago
parent
commit
ca3b5ae3f0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      Makefile.system

+ 5
- 1
Makefile.system View File

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

ifeq ($(NO_SVE), 1)
CCOMMON_OPT += -DNO_SVE
endif

ifdef SMP
CCOMMON_OPT += -DSMP_SERVER



Loading…
Cancel
Save