We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5059f6 commit 8fb3c73Copy full SHA for 8fb3c73
tool/jt.rb
@@ -741,6 +741,8 @@ def help
741
OPENSSL_PREFIX Where to find OpenSSL headers and libraries
742
ECLIPSE_EXE Where to find Eclipse
743
SYSTEM_RUBY The Ruby interpreter to run 'jt' itself, when using 'bin/jt'
744
+ JT_JDK The JDK version to use: 8 or 11 (default)
745
+ JT_PROFILE_SUBCOMMANDS Print the time each subprocess takes on stderr
746
TXT
747
end
748
@@ -2706,7 +2708,7 @@ def process_pre_args(args)
2706
2708
needs_build = false
2707
2709
needs_rebuild = false
2710
@silent = false
- @jdk_version = 11
2711
+ @jdk_version = Integer(ENV['JT_JDK'] || 11)
2712
2713
until args.empty?
2714
arg = args.shift
0 commit comments