Re: JRuby can't compile benchmark. Also package renaming

2011-04-26 Thread Kirill Shirokov
On 04/06/2011 07:17 PM, Charles Oliver Nutter wrote: > 1. You can pass -d to JRuby to get the debug output from the failure, > or -Xjit.logging.verbose=true. I can take a look at this as soon as I > can update to java.lang.invoke. The compilation error is most probably caused by package rename: w

Re: JRuby can't compile benchmark. Also package renaming

2011-04-07 Thread Charles Oliver Nutter
On Wed, Apr 6, 2011 at 5:45 PM, Kirill Shirokov wrote: > The compilation error is most probably caused by package rename: > > warning: could not compile: bench/bench_fib_recursive.rb; full trace follows > java.lang.NoClassDefFoundError: java/dyn/CallSite >        at > org.jruby.runtime.invokedyna

Re: JRuby can't compile benchmark. Also package renaming

2011-04-06 Thread Charles Oliver Nutter
Ok, running off jsr292-mock 1.6 and a prerelease build of ASM 4.0 (thanks Rémi for your help) I have pushed an updated branch that's all java.lang.invoke, new bootstrap style, and properly compiling and loading code. https://github.com/jruby/jruby/tree/indy_update The compile failure was because

Re: JRuby can't compile benchmark. Also package renaming

2011-04-06 Thread John Rose
On Apr 6, 2011, at 9:35 AM, Charles Oliver Nutter wrote: > And the flag does not seem to work either :( > > [apt] Warning: The flag +AllowTransitionalJSR292 has been EOL'd as of > 7.0 and will be ignored There might be ways you could combine a previous build with an even older meth.jar (contain

Re: JRuby can't compile benchmark. Also package renaming

2011-04-06 Thread Rémi Forax
On 04/06/2011 06:35 PM, Charles Oliver Nutter wrote: > On Wed, Apr 6, 2011 at 11:24 AM, Charles Oliver Nutter > wrote: >> On Wed, Apr 6, 2011 at 11:22 AM, Charles Oliver Nutter >> wrote: >>> Ok, I'll do that for now. I assume Linkage is still in the mock? >> Linkage does not appear to be in the

Re: JRuby can't compile benchmark. Also package renaming

2011-04-06 Thread Rémi Forax
On 04/06/2011 06:24 PM, Charles Oliver Nutter wrote: > On Wed, Apr 6, 2011 at 11:22 AM, Charles Oliver Nutter > wrote: >> Ok, I'll do that for now. I assume Linkage is still in the mock? > Linkage does not appear to be in the mock, either under java.dyn or > java.lang.invoke. > > - Charlie Yes,

Re: JRuby can't compile benchmark. Also package renaming

2011-04-06 Thread Charles Oliver Nutter
On Wed, Apr 6, 2011 at 11:24 AM, Charles Oliver Nutter wrote: > On Wed, Apr 6, 2011 at 11:22 AM, Charles Oliver Nutter > wrote: >> Ok, I'll do that for now. I assume Linkage is still in the mock? > > Linkage does not appear to be in the mock, either under java.dyn or > java.lang.invoke. And the

Re: JRuby can't compile benchmark. Also package renaming

2011-04-06 Thread Charles Oliver Nutter
On Wed, Apr 6, 2011 at 11:22 AM, Charles Oliver Nutter wrote: > Ok, I'll do that for now. I assume Linkage is still in the mock? Linkage does not appear to be in the mock, either under java.dyn or java.lang.invoke. - Charlie ___ mlvm-dev mailing list m

Re: JRuby can't compile benchmark. Also package renaming

2011-04-06 Thread Charles Oliver Nutter
On Wed, Apr 6, 2011 at 11:17 AM, Rémi Forax wrote: > you can still run using the old linkage API (for 2 or 3 builds) > using -XX:+allowTransitionalJSR292 Ok, I'll do that for now. I assume Linkage is still in the mock? >> >> What's the golden path forward at this point? Is indy solidified >> eno

Re: JRuby can't compile benchmark. Also package renaming

2011-04-06 Thread Rémi Forax
On 04/06/2011 06:06 PM, Charles Oliver Nutter wrote: > On Wed, Apr 6, 2011 at 10:36 AM, Rémi Forax wrote: >> On 04/06/2011 05:17 PM, Charles Oliver Nutter wrote: >>> 2. I can fix the package reference quickly, but I'm using Rémi's >>> backport/mock which is still on java.dyn. I can't commit change

Re: JRuby can't compile benchmark. Also package renaming

2011-04-06 Thread Rémi Forax
On 04/06/2011 05:36 PM, Rémi Forax wrote: > On 04/06/2011 05:17 PM, Charles Oliver Nutter wrote: >> 1. You can pass -d to JRuby to get the debug output from the failure, >> or -Xjit.logging.verbose=true. I can take a look at this as soon as I >> can update to java.lang.invoke. >> >> 2. I can fix th

Re: JRuby can't compile benchmark. Also package renaming

2011-04-06 Thread Charles Oliver Nutter
On Wed, Apr 6, 2011 at 10:36 AM, Rémi Forax wrote: > On 04/06/2011 05:17 PM, Charles Oliver Nutter wrote: >> 2. I can fix the package reference quickly, but I'm using Rémi's >> backport/mock which is still on java.dyn. I can't commit changes to >> JRuby master that won't build on Java 6 and below,

Re: JRuby can't compile benchmark. Also package renaming

2011-04-06 Thread Rémi Forax
On 04/06/2011 05:17 PM, Charles Oliver Nutter wrote: > 1. You can pass -d to JRuby to get the debug output from the failure, > or -Xjit.logging.verbose=true. I can take a look at this as soon as I > can update to java.lang.invoke. > > 2. I can fix the package reference quickly, but I'm using Rémi's

Re: JRuby can't compile benchmark. Also package renaming

2011-04-06 Thread Charles Oliver Nutter
1. You can pass -d to JRuby to get the debug output from the failure, or -Xjit.logging.verbose=true. I can take a look at this as soon as I can update to java.lang.invoke. 2. I can fix the package reference quickly, but I'm using Rémi's backport/mock which is still on java.dyn. I can't commit chan