Skip to content

Commit

Permalink
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions bin/jruby.bash
Original file line number Diff line number Diff line change
@@ -238,6 +238,12 @@ do
opt="${opt:1}=false" ;;
esac
java_args=("${java_args[@]}" "-Djvmci.option.$opt")
elif [ "${val:0:15}" = "-Djvmci.option." ]; then # Graal options
opt=${val:15}
java_args=("${java_args[@]}" "-Djvmci.option.$opt")
elif [ "${val:0:15}" = "-Dgraal.option." ]; then # Graal options
opt=${val:15}
java_args=("${java_args[@]}" "-Djvmci.option.$opt")
else
if [ "${val:0:3}" = "-ea" ]; then
VERIFY_JRUBY="yes"

2 comments on commit 9bb6cad

@eregon
Copy link
Member

@eregon eregon commented on 9bb6cad Dec 25, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this temporary? Is it needed after normalization to -G:...?

@chrisseaton
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But this is where the normalisation happens - so it will always be needed. I'll keep -J-Djvmci.option in and -J-Dgraal.option in as legacy options for the next few versions.

Sorry, something went wrong.

Please sign in to comment.