diff options
author | Marc Poulhiès <dkm@kataplop.net> | 2022-02-03 00:24:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-03 00:24:45 +0100 |
commit | ef74c3aa0ea46dadab92d5571f3615d2b9290ada (patch) | |
tree | 9b710bb1d8071d13d287ef801e003f8455deb1d8 /lib/compilers/ada.js | |
parent | d883a0f3a1799cb69ada1c09f36ee98967c93c03 (diff) | |
download | compiler-explorer-ef74c3aa0ea46dadab92d5571f3615d2b9290ada.tar.gz compiler-explorer-ef74c3aa0ea46dadab92d5571f3615d2b9290ada.zip |
Ada: Fix intel filter active even for cross compilers (#3318)gh-1826
The property was incorrectly hardcoded in the AdaCompiler class.
As GNAT does not have an argument-parser, we can't rely on autodetecting the
-masm support. The easiest way is to simply define the intelAsm property for
GNAT compilers known to support it.
Fixes #3310
Signed-off-by: Marc Poulhiès <dkm@kataplop.net>
Diffstat (limited to 'lib/compilers/ada.js')
-rw-r--r-- | lib/compilers/ada.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/compilers/ada.js b/lib/compilers/ada.js index 8219f9b35..8b33ae269 100644 --- a/lib/compilers/ada.js +++ b/lib/compilers/ada.js @@ -34,7 +34,6 @@ export class AdaCompiler extends BaseCompiler { super(info, env); this.compiler.supportsGccDump = true; this.compiler.removeEmptyGccDump = true; - this.compiler.supportsIntel = true; // used for all GNAT related panes (Expanded code, Tree) this.compiler.supportsGnatDebugViews = true; |