Skip to content

Commit

Permalink
Add missing dependency to release script
Browse files Browse the repository at this point in the history
  • Loading branch information
jlelong committed Sep 16, 2019
1 parent d5be3af commit 68a767d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions release-pnl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,11 @@ create_win_version() {
cp $MINGW_PREFIX/x86_64-w64-mingw32/lib/$lib $PNL_WINDIR/lib
cp -r $MINGW_PREFIX/x86_64-w64-mingw32/lib/$lib $LOCAL_TMPDIR/build-win/examples
done
BINS="libwinpthread-1.dll"
for bin in $BINS; do
cp $MINGW_PREFIX/x86_64-w64-mingw32/bin/$bin $PNL_WINDIR/lib
cp -r $MINGW_PREFIX/x86_64-w64-mingw32/bin/$bin $LOCAL_TMPDIR/build-win/examples
done
LIBS="libblas.dll liblapack.dll"
for lib in $LIBS; do
cp $LIBLAPACK_DIR/$lib $PNL_WINDIR/lib
Expand Down

0 comments on commit 68a767d

Please sign in to comment.