Disable gfortran tree vectorizer to avoid gcc11+ miscompilation at O3
This commit is contained in:
parent
b4f4ed378b
commit
e78fbe4654
|
@ -6,6 +6,9 @@ TOPDIR = ..
|
|||
include $(TOPDIR)/Makefile.system
|
||||
|
||||
override CFLAGS += -DADD$(BU) -DCBLAS
|
||||
ifeq ($(F_COMPILER),GFORTRAN)
|
||||
override FFLAGS += -fno-tree-vectorize
|
||||
endif
|
||||
override TARGET_ARCH=
|
||||
override TARGET_MACH=
|
||||
|
||||
|
|
Loading…
Reference in New Issue