From ef74c3aa0ea46dadab92d5571f3615d2b9290ada Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Poulhi=C3=A8s?= Date: Thu, 3 Feb 2022 00:24:45 +0100 Subject: [PATCH] Ada: Fix intel filter active even for cross compilers (#3318) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- lib/compilers/ada.js | 1 - 1 file changed, 1 deletion(-) 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;