bintools-wrapper: add dlltool, dllwrap, windmc, and windres

This commit is contained in:
Zane van Iperen 2022-12-02 19:15:18 +10:00 committed by Rick van Schijndel
parent a31e0568a7
commit 1d0b9702fc

View file

@ -167,7 +167,8 @@ stdenv.mkDerivation {
# Create symlinks for rest of the binaries.
+ ''
for binary in objdump objcopy size strings as ar nm gprof dwp c++filt addr2line ranlib readelf elfedit; do
for binary in objdump objcopy size strings as ar nm gprof dwp c++filt addr2line \
ranlib readelf elfedit dlltool dllwrap windmc windres; do
if [ -e $ldPath/${targetPrefix}''${binary} ]; then
ln -s $ldPath/${targetPrefix}''${binary} $out/bin/${targetPrefix}''${binary}
fi