diff options
author | Martin Kroeker <martin@ruby.chemie.uni-freiburg.de> | 2019-08-11 20:26:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-11 20:26:34 +0200 |
commit | 321288597cfa3ca72275e42281c6ccb7d7a5ad30 (patch) | |
tree | 0c56daacc403b3f7b50556142253d5ef5ea30cf2 | |
parent | c275290ea62079aebbf0c8d98c331d1defe07464 (diff) | |
parent | be147a9f28889d831019c6f860d501b2546e3771 (diff) | |
download | openblas-321288597cfa3ca72275e42281c6ccb7d7a5ad30.tar.gz openblas-321288597cfa3ca72275e42281c6ccb7d7a5ad30.tar.bz2 openblas-321288597cfa3ca72275e42281c6ccb7d7a5ad30.zip |
Merge pull request #2212 from martin-frbg/nofort-nolib
Avoid spurious dependency on the fortran runtime despite NOFORTRAN=1
-rw-r--r-- | Makefile.system | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.system b/Makefile.system index 09a648e4a..6addbdad5 100644 --- a/Makefile.system +++ b/Makefile.system @@ -267,9 +267,10 @@ OBJCOPY = $(CROSS_SUFFIX)objcopy OBJCONV = $(CROSS_SUFFIX)objconv -# For detect fortran failed, only build BLAS. +# When fortran support was either not detected or actively deselected, only build BLAS. ifeq ($(NOFORTRAN), 1) NO_LAPACK = 1 +override FEXTRALIB = endif # |