diff options
author | ktietz <ktietz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-02-03 09:42:42 +0000 |
---|---|---|
committer | ktietz <ktietz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-02-03 09:42:42 +0000 |
commit | 3b5dc11547a66e2986d16009b01b9c033fb16791 (patch) | |
tree | addc9098d6e26b4b83ab0b6bfdb7c9cbef156953 /libjava/configure | |
parent | 2a0abb3a6fb5526e6c792c8a2bbc8ddd7952c20e (diff) | |
download | gcc-3b5dc11547a66e2986d16009b01b9c033fb16791.tar.gz |
PR libjava/48512
* configure.ac (THREADSTARTFILESPEC): Don't add crtmet.o file for
w64 windows targets.
* configure: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@183867 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/configure')
-rwxr-xr-x | libjava/configure | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/libjava/configure b/libjava/configure index 2bce6894075..b8f23d3f593 100755 --- a/libjava/configure +++ b/libjava/configure @@ -20812,9 +20812,14 @@ $as_echo "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h # FIXME: In Java we are able to detect thread death at the end of # Thread.run() so we should be able to clean up the exception handling # contexts ourselves. - THREADSTARTFILESPEC='crtmt%O%s' + case "$host" in + *-w64-mingw*) + ;; + *) + THREADSTARTFILESPEC='crtmt%O%s' + ;; + esac ;; - none) THREADH=no-threads.h ;; |