Skip to content

Commit 54ce33e

Browse files
committed
Fix GCC11 check for A64FX target
1 parent 6d071f1 commit 54ce33e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile.arm64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ endif
278278

279279
ifeq ($(CORE), A64FX)
280280
ifeq (1, $(filter 1,$(GCCVERSIONGTEQ10) $(ISCLANG)))
281-
ifeq (1, $(filter 1,$(GCCMINORVERSIONGTEQ3) $(ISCLANG)))
281+
ifeq (1, $(filter 1,$(GCCMINORVERSIONGTEQ3) $(GCCVERSIONGTEQ11) $(ISCLANG)))
282282
CCOMMON_OPT += -march=armv8.2-a+sve -mtune=a64fx
283283
ifneq ($(F_COMPILER), NAG)
284284
FCOMMON_OPT += -march=armv8.2-a+sve -mtune=a64fx

0 commit comments

Comments
 (0)