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" DSO_LDFLAGS="-shared"
link_whole_archive="1" link_whole_archive="1"
fi fi
DUMP_SYMS="dumpbin /SYMBOLS" case "${host}" in
*-*-cygwin*)
DUMP_SYMS="dumpbin /SYMBOLS"
;;
*)
;;
esac
a="lib" a="lib"
libprefix="" libprefix=""
SOREV="${so}" SOREV="${so}"