mirror of git://gcc.gnu.org/git/gcc.git
re PR java/48512 ([4.6] gcj spec files references incorrectly crtmt.o on i686-w64-mingw32 target)
PR libjava/48512
* configure.ac (THREADSTARTFILESPEC): Don't add crtmet.o file for
w64 windows targets.
* configure: Regenerated.
From-SVN: r183867
This commit is contained in:
parent
a5c1501406
commit
5b5b0fa908
|
|
@ -1,3 +1,10 @@
|
||||||
|
2012-02-02 Kai Tietz <ktietz@redhat.com>
|
||||||
|
|
||||||
|
PR libjava/48512
|
||||||
|
* configure.ac (THREADSTARTFILESPEC): Don't add crtmet.o file for
|
||||||
|
w64 windows targets.
|
||||||
|
* configure: Regenerated.
|
||||||
|
|
||||||
2012-02-01 Kai Tietz <ktietz@redhat.com>
|
2012-02-01 Kai Tietz <ktietz@redhat.com>
|
||||||
|
|
||||||
PR target/51500
|
PR target/51500
|
||||||
|
|
|
||||||
|
|
@ -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
|
# 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
|
# Thread.run() so we should be able to clean up the exception handling
|
||||||
# contexts ourselves.
|
# contexts ourselves.
|
||||||
THREADSTARTFILESPEC='crtmt%O%s'
|
case "$host" in
|
||||||
|
*-w64-mingw*)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
THREADSTARTFILESPEC='crtmt%O%s'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
none)
|
none)
|
||||||
THREADH=no-threads.h
|
THREADH=no-threads.h
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
|
|
@ -1150,9 +1150,14 @@ case "$THREADS" in
|
||||||
# FIXME: In Java we are able to detect thread death at the end of
|
# 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
|
# Thread.run() so we should be able to clean up the exception handling
|
||||||
# contexts ourselves.
|
# contexts ourselves.
|
||||||
THREADSTARTFILESPEC='crtmt%O%s'
|
case "$host" in
|
||||||
|
*-w64-mingw*)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
THREADSTARTFILESPEC='crtmt%O%s'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
none)
|
none)
|
||||||
THREADH=no-threads.h
|
THREADH=no-threads.h
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue