Browse Source
Merge pull request #3478 from ffontaine/develop
Makefile: also consider -O, -Og and -Os when stripping flags
tags/v0.3.19
Martin Kroeker
GitHub
4 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
Makefile
|
|
|
@@ -32,7 +32,7 @@ export NOFORTRAN |
|
|
|
export NO_LAPACK |
|
|
|
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 |
|
|
|
|
|
|
|
|