dumpbin doesn't exist in mingw

This commit is contained in:
Tamir Duberstein 2017-07-06 15:14:48 -04:00 committed by David Goldblatt
parent 24766ccd5b
commit a545f1804a

View File

@ -645,7 +645,13 @@ case "${host}" in
DSO_LDFLAGS="-shared"
link_whole_archive="1"
fi
DUMP_SYMS="dumpbin /SYMBOLS"
case "${host}" in
*-*-cygwin*)
DUMP_SYMS="dumpbin /SYMBOLS"
;;
*)
;;
esac
a="lib"
libprefix=""
SOREV="${so}"