Rawr / compliance level

i am trying to compile my jruby script (and hopefully hpricot gem)
with RAWR, however getting the following error. Any ideas here ?

Compliance level ‘1.4’ is incompatible with target level ‘1.5’. A
compliance level ‘1.5’ or better is required

Thanks
Adam


To unsubscribe from this list, please visit:

http://xircles.codehaus.org/manage_email

On Feb 23, 2009, at 7:36 PM, AD wrote:

i am trying to compile my jruby script (and hopefully hpricot gem)
with RAWR, however getting the following error. Any ideas here ?

Compliance level ‘1.4’ is incompatible with target level ‘1.5’. A
compliance level ‘1.5’ or better is required

You need to be on Java 1.5 or greater to use JRuby. Rawr by default
targets 1.5, although you can set this to be 1.6 or greater as well.
However, there’s still some quirks here (jrubyc doesn’t take a JVM
target yet, for example, so it’ll always build against whatever JVM
you’re using at the time).


To unsubscribe from this list, please visit:

http://xircles.codehaus.org/manage_email

Just FYI: it is possible to set the JVM target version with jrubyc. You
need
to set the java property jruby.bytecode.version.
We do something like this:
java -Djruby.bytecode.version=1.5 -classpath jruby-complete-1.1.4.jar
org.jruby.Main jrubyc.rb

This command is manually retyped here since I’m chunking out the
important
bits from out actual command. The important part is the
-Djruby.bytecode.version piece.

On Feb 24, 2009, at 11:32 AM, Matt Fletcher wrote:

Just FYI: it is possible to set the JVM target version with jrubyc.
You need to set the java property jruby.bytecode.version.

We do something like this:
java -Djruby.bytecode.version=1.5 -classpath jruby-
complete-1.1.4.jar org.jruby.Main jrubyc.rb

Thanks Matt! I’ll be sure to get that into Rawr ASAP!

i am using java 1.6, and try setting compliance to 1.5 and 1.6 but
still receive the same errors.

On Tue, Feb 24, 2009 at 1:35 PM, Logan B. [email protected]
wrote:

Compliance level ‘1.4’ is incompatible with target level ‘1.5’. A


To unsubscribe from this list, please visit:

http://xircles.codehaus.org/manage_email


To unsubscribe from this list, please visit:

http://xircles.codehaus.org/manage_email