We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac7efc6 commit 3ad2700Copy full SHA for 3ad2700
1 file changed
Makefile
@@ -35,7 +35,11 @@ export NO_LAPACK
35
export C_LAPACK
36
endif
37
38
+ifeq ($(F_COMPILER),CRAY)
39
+LAPACK_NOOPT := $(filter-out -O0 -O1 -O2 -O3 -Ofast -Og -Os,$(LAPACK_FFLAGS))
40
+else
41
LAPACK_NOOPT := $(filter-out -O0 -O1 -O2 -O3 -Ofast -O -Og -Os,$(LAPACK_FFLAGS))
42
+endif
43
44
SUBDIRS_ALL = $(SUBDIRS) test ctest utest exports benchmark ../laswp ../bench cpp_thread_test
45
0 commit comments