Merge pull request #3478 from ffontaine/develop
Makefile: also consider -O, -Og and -Os when stripping flags
This commit is contained in:
commit
449fb7d849
2
Makefile
2
Makefile
|
@ -32,7 +32,7 @@ export NOFORTRAN
|
||||||
export NO_LAPACK
|
export NO_LAPACK
|
||||||
endif
|
endif
|
||||||
|
|
||||||
LAPACK_NOOPT := $(filter-out -O0 -O1 -O2 -O3 -Ofast,$(LAPACK_FFLAGS))
|
LAPACK_NOOPT := $(filter-out -O0 -O1 -O2 -O3 -Ofast -O -Og -Os,$(LAPACK_FFLAGS))
|
||||||
|
|
||||||
SUBDIRS_ALL = $(SUBDIRS) test ctest utest exports benchmark ../laswp ../bench cpp_thread_test
|
SUBDIRS_ALL = $(SUBDIRS) test ctest utest exports benchmark ../laswp ../bench cpp_thread_test
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue