diff options
Diffstat (limited to 'libstdc++-v3/acinclude.m4')
-rw-r--r-- | libstdc++-v3/acinclude.m4 | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index 052515b2156..279c4f3e145 100644 --- a/libstdc++-v3/acinclude.m4 +++ b/libstdc++-v3/acinclude.m4 @@ -2637,7 +2637,12 @@ if test x$enable_symvers = xyes ; then enable_symvers=no else if test $with_gnu_ld = yes ; then - enable_symvers=gnu + case ${target_os} in + cygwin* | pe | mingw32*) + enable_symvers=no ;; + *) + enable_symvers=gnu ;; + esac else case ${target_os} in darwin*) |