Skip to content

Commit ef55006

Browse files
tamirddavidtgoldblatt
authored andcommitted
dumpbin doesn't exist in mingw
1 parent f9dfb8d commit ef55006

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

configure.ac

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,13 @@ case "${host}" in
630630
DSO_LDFLAGS="-shared"
631631
link_whole_archive="1"
632632
fi
633-
DUMP_SYMS="dumpbin /SYMBOLS"
633+
case "${host}" in
634+
*-*-cygwin*)
635+
DUMP_SYMS="dumpbin /SYMBOLS"
636+
;;
637+
*)
638+
;;
639+
esac
634640
a="lib"
635641
libprefix=""
636642
SOREV="${so}"

0 commit comments

Comments
 (0)