Skip to content

Commit ca28997

Browse files
author
automatic-merge
committed
Merge remote branch 'origin/master' into edge
2 parents 397db7f + 56f7501 commit ca28997

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

integration/vscode/ada/src/taskProviders.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ const predefinedTasks: PredefinedTask[] = [
314314
taskDef: {
315315
type: TASK_TYPE_SPARK,
316316
command: 'gnatprove',
317-
args: ['${command:ada.gprProjectArgs}', '-cargs', '-gnatef'],
317+
args: ['${command:ada.gprProjectArgs}', '-j0', '-cargs', '-gnatef'],
318318
},
319319
problemMatchers: DEFAULT_PROBLEM_MATCHERS,
320320
},
@@ -323,7 +323,14 @@ const predefinedTasks: PredefinedTask[] = [
323323
taskDef: {
324324
type: TASK_TYPE_SPARK,
325325
command: 'gnatprove',
326-
args: ['${command:ada.gprProjectArgs}', '-u', '${fileBasename}', '-cargs', '-gnatef'],
326+
args: [
327+
'${command:ada.gprProjectArgs}',
328+
'-j0',
329+
'-u',
330+
'${fileBasename}',
331+
'-cargs',
332+
'-gnatef',
333+
],
327334
},
328335
problemMatchers: DEFAULT_PROBLEM_MATCHERS,
329336
},
@@ -348,6 +355,7 @@ const predefinedTasks: PredefinedTask[] = [
348355
command: 'gnatprove',
349356
args: [
350357
'${command:ada.gprProjectArgs}',
358+
'-j0',
351359
'-u',
352360
'${fileBasename}',
353361
'${command:ada.spark.limitRegionArg}',

0 commit comments

Comments
 (0)