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 96fddbe commit 417cce7Copy full SHA for 417cce7
src/launcher/java/org/truffleruby/launcher/RubyLauncher.java
@@ -371,7 +371,7 @@ private void printPreRunInformation(CommandLineOptions config) {
371
372
private String getImplementationNameFromEngine() {
373
if (implementationName == null) {
374
- try (Engine engine = Engine.create()) {
+ try (Engine engine = Engine.newBuilder().option("engine.WarnInterpreterOnly", "false").build()) {
375
implementationName = engine.getImplementationName();
376
}
377
0 commit comments