Skip to content

Commit 1dcd674

Browse files
committed
appveyor: fix openblas symbol .def filename + missing msvc export library
The name of the generated export file seems to have been changed from libopenblas.def to $(LIBPREFIX).def in OpenBLAS, probably in their commit dddedbab
1 parent 4d3a00f commit 1dcd674

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

appveyor/build_openblas.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,7 @@ cd $BUILD_BITS/lib
9090
# At least for the mingwpy wheel, we have to use the VC tools to build the
9191
# export library. Maybe fixed in later binutils by patch referred to in
9292
# https://sourceware.org/ml/binutils/2016-02/msg00002.html
93-
if [ "$INTERFACE64" == "1" ]; then
94-
cp ${our_wd}/OpenBLAS/exports/${DLL_BASENAME}.def ${DLL_BASENAME}.def
95-
else
96-
cp ${our_wd}/OpenBLAS/exports/libopenblas.def ${DLL_BASENAME}.def
97-
fi
93+
cp ${our_wd}/OpenBLAS/exports/${DLL_BASENAME}.def ${DLL_BASENAME}.def
9894
"$VC9_ROOT/bin/lib.exe" /machine:${vc_arch} /def:${DLL_BASENAME}.def
9995
cd ../..
10096
# Build template site.cfg for using this build

0 commit comments

Comments
 (0)