Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Disable bytecode verification to improve JVM startup.
  • Loading branch information
donaldh committed Jan 5, 2015
1 parent a2e24a3 commit 66ce535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/build/create-jvm-runner.pl
Expand Up @@ -53,7 +53,7 @@ sub install {
File::Spec->catfile($jardir, $debugger ? 'perl6-debug.jar' : 'perl6.jar')));

my $classpath = join($cpsep, ($jardir, $libdir, $nqplibdir));
my $jopts = '-Xms100m -Xbootclasspath/a:' . $bootclasspath
my $jopts = '-noverify -Xms100m -Xbootclasspath/a:' . $bootclasspath
. ' -cp ' . ($^O eq 'MSWin32' ? '%CLASSPATH%' : '$CLASSPATH') . ":" . $classpath
. ' -Dperl6.prefix=' . $prefix
. ($^O eq 'MSWin32' ? ' -Dperl6.execname="%~dpf0"' : ' -Dperl6.execname="$0"');
Expand Down

0 comments on commit 66ce535

Please sign in to comment.