Skip to content

Commit 2f264ac

Browse files
committed
Merge branch 'topic/fix-gnatef' into 'master'
Fix passing `-gnatef` to GNAT in vscode tasks See merge request eng/ide/ada_language_server!1466
2 parents 2b9a25f + bb3d460 commit 2f264ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration/vscode/ada/src/taskProviders.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ async function computeProject(taskDef?: CustomTaskDefinition): Promise<string> {
8080

8181
// Call commonArgs on args and append `-gnatef` to generate full file names in errors/warnings
8282
export const getDiagnosticArgs = (): string[] => {
83-
const p_gnatef = ['-cargs', '-gnatef'];
83+
const p_gnatef = ['-cargs:ada', '-gnatef'];
8484
return p_gnatef;
8585
};
8686

0 commit comments

Comments
 (0)