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 f9dfb8db73
commit ef55006c1d

View File

@ -630,7 +630,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}"