This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [PATCH] Speedup gij/libjava loading on darwin
- From: Mike Stump <mrs at apple dot com>
- To: Andrew Pinski <pinskia at physics dot uc dot edu>
- Cc: patch Patches <gcc-patches at gcc dot gnu dot org>, GCJ Patches <java-patches at gcc dot gnu dot org>
- Date: Fri, 19 Aug 2005 14:16:12 -0700
- Subject: Re: [PATCH] Speedup gij/libjava loading on darwin
On Thursday, August 18, 2005, at 08:26 PM, Andrew Pinski wrote:
On Darwin, libjava testing takes for ever. The issue is that loading
gij (and
the native programs) is slow and most of the time is spent dyld (the
dynamic
loader, like ld.so). If we link with -single_module, the issue goes
away
because the dynamic loader have less symbols to resolve at load time.
Seems reasonable to me, as long as everyone likes the semantics (cannot
override/replace funcs from that lib).