Re: minimal hack to classpath for ORP 1.0.9

2002-03-25 Thread Eric Blake
Fred Gray wrote: I did a cvs update to get your changes, and I copied the native method insertSystemProperties() from VMSystem to Runtime. ORP still crashed. *Dictionary, Hashtable, and Properties have no dependencies This is the where the chain broke. Adding the properties to

Re: minimal hack to classpath for ORP 1.0.9

2002-03-25 Thread Fred Gray
On Mon, Mar 25, 2002 at 12:51:22AM -0700, Eric Blake wrote: I did some shuffling and analysis, and I think the latest version in Classpath has a safe bootstrap sequence. Can you please test it for me? Thanks for all of your quick work. It _almost_ solved the problem. I did a cvs update

minimal hack to classpath for ORP 1.0.9

2002-03-24 Thread Fred Gray
I think I've figured out the minimal hack to the current classpath CVS to work with ORP 1.0.9 (at least for programs of the complexity of Hello world). Hopefully, this will give the people who understand ORP some ideas on how to fix things up properly. Issue 1: Calling methods in

Re: minimal hack to classpath for ORP 1.0.9

2002-03-24 Thread Eric Blake
Fred Gray wrote: I think I've figured out the minimal hack to the current classpath CVS to work with ORP 1.0.9 (at least for programs of the complexity of Hello world). Hopefully, this will give the people who understand ORP some ideas on how to fix things up properly. Issue 1: Calling

Re: minimal hack to classpath for ORP 1.0.9

2002-03-24 Thread Fred Gray
On Sun, Mar 24, 2002 at 05:27:25PM -0700, Eric Blake wrote: Fred Gray wrote: Issue 1: Calling methods in java.lang.System from the constructor of java.lang.Runtime seems to cause a crash. What is the crash you are getting? This is the one where ORP prints No Java handlers found No

Re: minimal hack to classpath for ORP 1.0.9

2002-03-24 Thread Fred Gray
[Any further messages should probably go to only the classpath list, not the ORP list.] On Sun, Mar 24, 2002 at 08:56:23PM -0600, Fred Gray wrote: On Sun, Mar 24, 2002 at 05:27:25PM -0700, Eric Blake wrote: Would it be worth moving the default properties from System over to Runtime (the

Re: minimal hack to classpath for ORP 1.0.9

2002-03-24 Thread Eric Blake
Fred Gray wrote: It's a straightforward bootstrapping problem, and it's apparently already been solved once in the past. See the javadoc for Runtime.setSecurityManager(): This was moved to Runtime so that Runtime would no longer trigger System's class initializer. Runtime does