diff options
author | Marc Poulhiès <dkm@kataplop.net> | 2021-10-05 05:43:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-04 22:43:49 -0500 |
commit | e104811b6b75d1b9228cab08a774530166f844f5 (patch) | |
tree | 5b2e67c490de48f9344be4bf5ccb4528d5360bc1 /lib/compilers/ada.js | |
parent | 511236c8ec0108fba6f06b60872d8877de28c69a (diff) | |
download | compiler-explorer-e104811b6b75d1b9228cab08a774530166f844f5.tar.gz compiler-explorer-e104811b6b75d1b9228cab08a774530166f844f5.zip |
Enable GCC dump for the GNAT Ada compiler (#2989)gh-1084
* Enable GCC dump for the GNAT Ada compiler
GNAT is part of GCC and can handle the regular GCC options for dump files.
Signed-off-by: Marc Poulhiès <dkm@kataplop.net>
Diffstat (limited to 'lib/compilers/ada.js')
-rw-r--r-- | lib/compilers/ada.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/ada.js b/lib/compilers/ada.js index 8814c1aab..d35adc1ce 100644 --- a/lib/compilers/ada.js +++ b/lib/compilers/ada.js @@ -32,7 +32,7 @@ export class AdaCompiler extends BaseCompiler { constructor(info, env) { super(info, env); - this.supportsOptOutput = false; + this.compiler.supportsGccDump = true; this.compiler.supportsIntel = true; } |