Browse Source

Merge pull request #3418 from martin-frbg/issue2927-2

Enable SVE for A64FX
tags/v0.3.19
Martin Kroeker GitHub 4 years ago
parent
commit
c6208bbb45
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      Makefile.arm64

+ 3
- 3
Makefile.arm64 View File

@@ -155,13 +155,13 @@ endif


ifeq (1, $(filter 1,$(GCCVERSIONGTEQ11) $(ISCLANG))) ifeq (1, $(filter 1,$(GCCVERSIONGTEQ11) $(ISCLANG)))
ifeq ($(CORE), A64FX) ifeq ($(CORE), A64FX)
CCOMMON_OPT += -march=armv8.2-a -mtune=a64fx
CCOMMON_OPT += -march=armv8.2-a+sve -mtune=a64fx
ifneq ($(F_COMPILER), NAG) ifneq ($(F_COMPILER), NAG)
FCOMMON_OPT += -march=armv8.2-a -mtune=a64fx
FCOMMON_OPT += -march=armv8.2-a+sve -mtune=a64fx
endif endif
endif endif
endif endif


endif endif


endif
endif

Loading…
Cancel
Save