From 5ec13dbc9b57599de0ffc254bc9ef928ba620c3c Mon Sep 17 00:00:00 2001 From: Josef Eisl Date: Wed, 11 May 2022 13:35:08 +0000 Subject: [PATCH] svm: use whitespace valueSeparator for -o --- .../src/com/oracle/svm/core/SubstrateOptions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/SubstrateOptions.java b/substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/SubstrateOptions.java index 3afe0e3c742..c06db802a7d 100644 --- a/substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/SubstrateOptions.java +++ b/substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/SubstrateOptions.java @@ -84,7 +84,7 @@ public static boolean parseOnce() { @Option(help = "Name of the main entry point method. Optional if --shared is used.")// public static final HostedOptionKey Method = new HostedOptionKey<>("main"); - @APIOption(name = "o")// + @APIOption(name = "o", valueSeparator = APIOption.WHITESPACE_SEPARATOR)// @Option(help = "Name of the output file to be generated", type = OptionType.User)// public static final HostedOptionKey Name = new HostedOptionKey<>("");