Browse Source

try march=neoverse instead of mtune

pull/3386/head
Martin Kroeker GitHub 4 years ago
parent
commit
3e77b3fbf1
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

@@ -50,9 +50,9 @@ endif
ifeq ($(CORE), NEOVERSEN1)
ifeq ($(GCCVERSIONGTEQ7), 1)
ifeq ($(GCCVERSIONGTEQ9), 1)
CCOMMON_OPT += -march=armv8.2-a -mtune=neoverse-n1
CCOMMON_OPT += -march=neoverse-n1
ifneq ($(F_COMPILER), NAG)
FCOMMON_OPT += -march=armv8.2-a -mtune=neoverse-n1
FCOMMON_OPT += -march=neoverse-n1
endif
else
CCOMMON_OPT += -march=armv8.2-a -mtune=cortex-a72
@@ -152,4 +152,4 @@ endif

endif

endif
endif

Loading…
Cancel
Save