-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #178 from mattip/v0.3.28
OpenBLAS v0.3.28
- Loading branch information
Showing
10 changed files
with
71 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/exports/Makefile b/exports/Makefile | ||
index 668a4866e..956b51bf4 100644 | ||
--- a/exports/Makefile | ||
+++ b/exports/Makefile | ||
@@ -126,8 +126,9 @@ dll : ../$(LIBDLLNAME) | ||
../$(LIBDLLNAME) : ../$(LIBNAME) $(LIBPREFIX).def dllinit.$(SUFFIX) | ||
$(RANLIB) ../$(LIBNAME) | ||
$(CC) $(CFLAGS) $(LDFLAGS) $(LIBPREFIX).def dllinit.$(SUFFIX) \ | ||
- -shared -o ../$(LIBDLLNAME) -Wl,--out-implib,../$(IMPLIBNAME) \ | ||
+ -shared -o ../$(LIBDLLNAME) -Wl,-gc-sections -Wl,-s -Wl,-Map,output.map \ | ||
-Wl,--whole-archive ../$(LIBNAME) -Wl,--no-whole-archive $(FEXTRALIB) $(EXTRALIB) | ||
+ dlltool -D $(LIBDLLNAME) -d $(LIBPREFIX).def -l ../$(LIBDLLNAME).a | ||
|
||
$(LIBPREFIX).def : $(GENSYM) | ||
./$(GENSYM) win2k $(ARCH) dummy $(EXPRECISION) $(NO_CBLAS) $(NO_LAPACK) $(NO_LAPACKE) $(NEED2UNDERSCORES) $(ONLY_CBLAS) "$(SYMBOLPREFIX)" "$(SYMBOLSUFFIX)" $(BUILD_LAPACK_DEPRECATED) $(BUILD_BFLOAT16) $(BUILD_SINGLE) $(BUILD_DOUBLE) $(BUILD_COMPLEX) $(BUILD_COMPLEX16) > $(@F) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ This binary distribution of NumPy also bundles the following software: | |
|
||
|
||
Name: OpenBLAS | ||
Files: numpy.libs\libopenblas*.dll | ||
Files: libs/libscipy_openblas*.dll | ||
Description: bundled as a dynamically linked library | ||
Availability: https://github.com/OpenMathLib/OpenBLAS/ | ||
License: BSD-3-Clause-Attribution | ||
|
@@ -41,7 +41,7 @@ License: BSD-3-Clause-Attribution | |
|
||
|
||
Name: LAPACK | ||
Files: numpy.libs\libopenblas*.dll | ||
Files: libs/libscipy_openblas*.dll | ||
Description: bundled in OpenBLAS | ||
Availability: https://github.com/OpenMathLib/OpenBLAS/ | ||
License: BSD-3-Clause-Attribution | ||
|
@@ -96,7 +96,7 @@ License: BSD-3-Clause-Attribution | |
|
||
|
||
Name: GCC runtime library | ||
Files: numpy.libs\libopenblas*.dll | ||
Files: libs/libscipy_openblas*.dll | ||
Description: statically linked to files compiled with gcc | ||
Availability: https://gcc.gnu.org/git/?p=gcc.git;a=tree;f=libgfortran | ||
License: GPL-3.0-with-GCC-exception | ||
|
@@ -878,25 +878,3 @@ may consider it more useful to permit linking proprietary applications with | |
the library. If this is what you want to do, use the GNU Lesser General | ||
Public License instead of this License. But first, please read | ||
<http://www.gnu.org/philosophy/why-not-lgpl.html>. | ||
|
||
Name: libquadmath | ||
Files: numpy.libs\libopenb*.dll | ||
Description: statically linked to files compiled with gcc | ||
Availability: https://gcc.gnu.org/git/?p=gcc.git;a=tree;f=libquadmath | ||
License: LGPL-2.1-or-later | ||
|
||
GCC Quad-Precision Math Library | ||
Copyright (C) 2010-2019 Free Software Foundation, Inc. | ||
Written by Francois-Xavier Coudert <[email protected]> | ||
|
||
This file is part of the libquadmath library. | ||
Libquadmath is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Library General Public | ||
License as published by the Free Software Foundation; either | ||
version 2.1 of the License, or (at your option) any later version. | ||
|
||
Libquadmath is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters