diff options
author | Patrick Quist <partouf@gmail.com> | 2022-05-25 16:50:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-25 16:50:20 +0200 |
commit | d47191c9e9b4f6a402ce084d2d6645f60375f49e (patch) | |
tree | e94c7b570b9054b3dd4ea6c4acdb2070e5b033d9 /lib/compilers/ada.js | |
parent | f703928293fec9e93fb0d735dc0e7b4997e2fad1 (diff) | |
download | compiler-explorer-d47191c9e9b4f6a402ce084d2d6645f60375f49e.tar.gz compiler-explorer-d47191c9e9b4f6a402ce084d2d6645f60375f49e.zip |
bugfix ada intel asm options
Diffstat (limited to 'lib/compilers/ada.js')
-rw-r--r-- | lib/compilers/ada.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/compilers/ada.js b/lib/compilers/ada.js index b8dc3b786..cfd5a3940 100644 --- a/lib/compilers/ada.js +++ b/lib/compilers/ada.js @@ -104,7 +104,9 @@ export class AdaCompiler extends BaseCompiler { compiler_opts.push('-o', outputFilename); if (this.compiler.intelAsm && filters.intel) { - gnatmake_opts.push(this.compiler.intelAsm.split(' ')); + this.compiler.intelAsm.split(' ').forEach((opt) => { + gnatmake_opts.push(opt); + }); } } else { gnatmake_opts.push('-o', outputFilename); |