diff options
author | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-10 03:50:41 +0000 |
---|---|---|
committer | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-10 03:50:41 +0000 |
commit | 9e60f7e2a37b17b8f95e3ea4c2a832f00486f562 (patch) | |
tree | d2200b0a156b5dc94188e500f9ea5b1c5deff5d9 /libjava/configure.host | |
parent | 55fb7e7078ba2b32581ddf2afc725e25a0e41135 (diff) | |
download | gcc-9e60f7e2a37b17b8f95e3ea4c2a832f00486f562.tar.gz |
* configure.host: Disable hash synchronization and slow_pthread_self
for cygwin.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54428 138bc75d-0d04-0410-961f-82ee72b054a4
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 0d9283ea64e..5089b1dc9c6 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}" |