Skip to content

Commit 68aa79a

Browse files
committed
Create the prefixless objcopy/strip tools from an executable
This is necessary since 62b208a.
1 parent 5f56f76 commit 68aa79a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install-wrappers.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ if [ -n "$EXEEXT" ]; then
6969
if [ -z "$HOST" ]; then
7070
HOST=$(./clang-$CLANG_MAJOR -dumpmachine | sed 's/-.*//')-w64-mingw32
7171
fi
72-
for exec in clang clang++ gcc g++ cc c99 c11 c++ ar ranlib nm strings widl windres; do
72+
for exec in clang clang++ gcc g++ cc c99 c11 c++ ar ranlib nm objcopy strings strip widl windres; do
7373
ln -sf $HOST-$exec$EXEEXT $exec$EXEEXT
7474
done
75-
for exec in ld objdump dlltool objcopy strip; do
75+
for exec in ld objdump dlltool; do
7676
ln -sf $HOST-$exec $exec
7777
done
7878
fi

0 commit comments

Comments
 (0)