diff options
author | Honglin Zhu <zhuhonglin.zhl@alibaba-inc.com> | 2022-06-29 10:08:06 +0800 |
---|---|---|
committer | Honglin Zhu <zhuhonglin.zhl@alibaba-inc.com> | 2022-06-29 10:17:05 +0800 |
commit | ec0d5c7a2a23e01d2a04754c1f21e07612ed8c6e (patch) | |
tree | 6267ce28974c28a137b47f6dd1cfb425ef560024 | |
parent | 123e0dfb62b21f2468c19be6c8415331faa56fd5 (diff) | |
download | openblas-ec0d5c7a2a23e01d2a04754c1f21e07612ed8c6e.tar.gz openblas-ec0d5c7a2a23e01d2a04754c1f21e07612ed8c6e.tar.bz2 openblas-ec0d5c7a2a23e01d2a04754c1f21e07612ed8c6e.zip |
Add gfortran parameters
-rw-r--r-- | Makefile.arm64 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.arm64 b/Makefile.arm64 index c88728e8d..7ffe93a0b 100644 --- a/Makefile.arm64 +++ b/Makefile.arm64 @@ -123,7 +123,7 @@ ifeq ($(GCCVERSIONGTEQ9), 1) ifeq (1, $(filter 1,$(GCCMINORVERSIONGTEQ4) $(GCCVERSIONGTEQ10))) CCOMMON_OPT += -march=armv8.5-a+sve+sve2+bf16 -mtune=neoverse-n2 ifneq ($(F_COMPILER), NAG) -FCOMMON_OPT += -march=armv8.5-a -mtune=neoverse-n2 +FCOMMON_OPT += -march=armv8.5-a+sve+sve2+bf16 -mtune=neoverse-n2 endif else CCOMMON_OPT += -march=armv8.5-a -mtune=native |