------- Comment #29 from matz at suse dot de 2006-03-25 01:07 -------
There is a minor glitch in the patch from Richard, which went in when
cleaning it up. This line:
+ __asm__ (".symver pthread_create, pthread_create@@" GC_PTHREAD_SYM_VERSION);
which creates the right version of the overriding symbol actually needs
to read
+ __asm__ (".symver GC_pthread_create,pthread_create@@"GC_PTHREAD_SYM_VERSION);
as that is how the function now is called. regtesting of libjava with
that change in the patch on x86_64 looks good now (it doesn't with the
patch as posted).
--
matz at suse dot de changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |matz at suse dot de
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13212