Cray Fortran uses -O in combinations like -O omp so don't filter that out
This commit is contained in:
parent
66c2c41e99
commit
301e2ecc49
4
Makefile
4
Makefile
|
@ -35,7 +35,11 @@ export NO_LAPACK
|
|||
export C_LAPACK
|
||||
endif
|
||||
|
||||
ifeq ($(F_COMPILER),CRAY)
|
||||
LAPACK_NOOPT := $(filter-out -O0 -O1 -O2 -O3 -Ofast -Og -Os,$(LAPACK_FFLAGS))
|
||||
else
|
||||
LAPACK_NOOPT := $(filter-out -O0 -O1 -O2 -O3 -Ofast -O -Og -Os,$(LAPACK_FFLAGS))
|
||||
endif
|
||||
|
||||
SUBDIRS_ALL = $(SUBDIRS) test ctest utest exports benchmark ../laswp ../bench cpp_thread_test
|
||||
|
||||
|
|
Loading…
Reference in New Issue