diff options
Diffstat (limited to 'lib/compilers/ada.js')
-rw-r--r-- | lib/compilers/ada.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/ada.js b/lib/compilers/ada.js index 9a6fea6f8..6a93249de 100644 --- a/lib/compilers/ada.js +++ b/lib/compilers/ada.js @@ -46,9 +46,9 @@ export class AdaCompiler extends BaseCompiler { return path.join(dirPath, 'example.o'); } - optionsForBackend(backendOptions){ + optionsForBackend(backendOptions, outputFilename){ // super is needed as it handles the GCC Dump files. - const opts = super.optionsForBackend (backendOptions); + const opts = super.optionsForBackend (backendOptions, outputFilename); if (backendOptions.produceGnatDebug && this.compiler.supportsGnatDebugView) opts.push('-gnatDGL'); |