diff options
author | Bryce McKinlay <bryce@waitaki.otago.ac.nz> | 2002-06-10 03:50:41 +0000 |
---|---|---|
committer | Bryce McKinlay <bryce@gcc.gnu.org> | 2002-06-10 04:50:41 +0100 |
commit | 5f555088adbd3bf7253fd5b567f44a3c11999124 (patch) | |
tree | d2200b0a156b5dc94188e500f9ea5b1c5deff5d9 /libjava/configure.host | |
parent | 64e681975f04989ec97510232cca2218da327f11 (diff) | |
download | gcc-5f555088adbd3bf7253fd5b567f44a3c11999124.zip gcc-5f555088adbd3bf7253fd5b567f44a3c11999124.tar.gz gcc-5f555088adbd3bf7253fd5b567f44a3c11999124.tar.bz2 |
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
Diffstat (limited to 'libjava/configure.host')
-rw-r--r-- | libjava/configure.host | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libjava/configure.host b/libjava/configure.host index 0d9283e..5089b1d 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}" |