Skip to content

Commit a324f95

Browse files
committed
Tweak help text for --parallelism.
1 parent 2c2bcd5 commit a324f95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/NativeImageOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ public static CStandards getCStandard() {
190190
*/
191191
private static final String PARALLELISM_OPTION_NAME = "parallelism";
192192
@APIOption(name = PARALLELISM_OPTION_NAME)//
193-
@Option(help = "The maximum number of threads to use concurrently during native image generation.")//
193+
@Option(help = "The maximum number of threads the build process is allowed to use.")//
194194
public static final HostedOptionKey<Integer> NumberOfThreads = new HostedOptionKey<>(Math.max(1, Math.min(Runtime.getRuntime().availableProcessors(), 32)), key -> {
195195
int numberOfThreads = key.getValue();
196196
if (numberOfThreads < 1) {

0 commit comments

Comments
 (0)