Skip to content
This repository has been archived by the owner on Mar 8, 2020. It is now read-only.

Commit

Permalink
Only strip on mingw
Browse files Browse the repository at this point in the history
  • Loading branch information
evetion authored and visr committed May 23, 2019
1 parent 7826f0d commit 1594f44
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ fi
make -j${nproc}
make install
strip $prefix/bin/*.dll
if [[ ${target} == *w64-mingw32* ]]; then
strip $prefix/bin/*.dll
fi
"""

# These are the platforms we will build for by default, unless further
Expand Down

0 comments on commit 1594f44

Please sign in to comment.