From: Bryce McKinlay Date: Mon, 10 Jun 2002 03:50:41 +0000 (+0000) Subject: configure.host: Disable hash synchronization and slow_pthread_self for cygwin. X-Git-Tag: releases/gcc-3.3.0~4452 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5f555088adbd3bf7253fd5b567f44a3c11999124;p=thirdparty%2Fgcc.git configure.host: Disable hash synchronization and slow_pthread_self for cygwin. * configure.host: Disable hash synchronization and slow_pthread_self for cygwin. From-SVN: r54428 --- diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 86938b1becf2..118270ae40fa 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,8 @@ +2002-06-10 Bryce McKinlay + + * configure.host: Disable hash synchronization and slow_pthread_self + for cygwin. + 2002-06-06 Adam Megacz * java/io/natFileDescriptorWin32.cc (open): Disable Win32 file diff --git a/libjava/configure.host b/libjava/configure.host index 0d9283ea64e5..5089b1dc9c68 100644 --- a/libjava/configure.host +++ b/libjava/configure.host @@ -137,6 +137,12 @@ case "${host}" in *-*-freebsd*) slow_pthread_self= ;; + *-cygwin*) + # The cygwin linker doesn't do 8-byte alignment by default, so + # disable hash synchronization for now. + enable_hash_synchronization_default=no + slow_pthread_self= + ;; esac libgcj_cflags="${libgcj_cflags} ${libgcj_flags}"