Hi,
On Fri, 2004-11-12 at 17:45, Jeroen Frijters wrote:
Steven Augart wrote:
And, to that end, I have the following small patch that makes
the current Classpath CVS head work with Jikes RVM. If someone
else approves it, I'll commit it.
It works fine for me.
Thanks to you both for working on this issue.
This works for now, but I hope you won't mind if we rip it out again for
0.13. One Thing I don't like about this is that it creates a new compile
time constant which makes it harder to share an GNU Classpath glibj.zip
class byte code between runtimes installed on the same system. I would
like to see something like the following for breaking up the
initialization of java.lang.System into two phases in the future:
boolean explicitly_initialize = VMSystem.explicitlyInitializeStatics();
if (explicitly_initialize)
{
initLoadLibrary();
initProperties();
}
That way a runtime could introduce its own VMSystem, but still share the
system installed glibj.zip.