diff options
author | Matt Godbolt <matt@godbolt.org> | 2022-12-28 11:42:14 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-28 11:42:14 -0600 |
commit | 749319f7912ff479d25d9afb1e751f4ea704b0e2 (patch) | |
tree | 6f1504440fcdaf033dc406d454bb00299b0d8fa6 /lib/compilers/ada.ts | |
parent | b597095f6ee657e6b1fde4b02f9bb2f61457d225 (diff) | |
download | compiler-explorer-749319f7912ff479d25d9afb1e751f4ea704b0e2.tar.gz compiler-explorer-749319f7912ff479d25d9afb1e751f4ea704b0e2.zip |
Slightly more controversial bumpings (#4503)gh-5552
- latest sentry, tar-stream, which, some yamljs versions
- latest eslint-* stuff
- latest webpack manifest
- Applies all the automatic fixes for newer lint rules
- Bump the webpack version
applies new tslint stuff
Diffstat (limited to 'lib/compilers/ada.ts')
-rw-r--r-- | lib/compilers/ada.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compilers/ada.ts b/lib/compilers/ada.ts index 45a1d1079..89f500f4b 100644 --- a/lib/compilers/ada.ts +++ b/lib/compilers/ada.ts @@ -95,7 +95,9 @@ export class AdaCompiler extends BaseCompiler { inputFilename, ); - if (!filters.binary) { + if (filters.binary) { + gnatmake_opts.push('-o', outputFilename); + } else { gnatmake_opts.push( '-S', // Generate ASM '-c', // Compile only @@ -110,8 +112,6 @@ export class AdaCompiler extends BaseCompiler { gnatmake_opts.push(opt); } } - } else { - gnatmake_opts.push('-o', outputFilename); } // Spread the options coming from outside (user, backend or config options) |