Skip to content

Commit

Permalink
Create the prefixless objcopy/strip tools from an executable
Browse files Browse the repository at this point in the history
This is necessary since 62b208a.
  • Loading branch information
mstorsjo committed Jan 24, 2019
1 parent 5f56f76 commit 68aa79a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install-wrappers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ if [ -n "$EXEEXT" ]; then
if [ -z "$HOST" ]; then
HOST=$(./clang-$CLANG_MAJOR -dumpmachine | sed 's/-.*//')-w64-mingw32
fi
for exec in clang clang++ gcc g++ cc c99 c11 c++ ar ranlib nm strings widl windres; do
for exec in clang clang++ gcc g++ cc c99 c11 c++ ar ranlib nm objcopy strings strip widl windres; do
ln -sf $HOST-$exec$EXEEXT $exec$EXEEXT
done
for exec in ld objdump dlltool objcopy strip; do
for exec in ld objdump dlltool; do
ln -sf $HOST-$exec $exec
done
fi

0 comments on commit 68aa79a

Please sign in to comment.