From 68aa79a99b2d7da639088f116a62fa19f3f6b4f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Thu, 24 Jan 2019 13:44:47 +0200 Subject: [PATCH] Create the prefixless objcopy/strip tools from an executable This is necessary since 62b208aee2. --- install-wrappers.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-wrappers.sh b/install-wrappers.sh index 53f931ad..5b77a6bc 100755 --- a/install-wrappers.sh +++ b/install-wrappers.sh @@ -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