summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--proj/common.gpr6
1 files changed, 4 insertions, 2 deletions
diff --git a/proj/common.gpr b/proj/common.gpr
index a30082c..c12e2c7 100644
--- a/proj/common.gpr
+++ b/proj/common.gpr
@@ -53,10 +53,12 @@ abstract project Common is
case Ver is
when "release" =>
- for Default_Switches ("Ada") use Ada_Common & "-O3" & "-gnatn";
+ for Default_Switches ("Ada") use Ada_Common &
+ "-O3" & "-gnatn";
when "debug" =>
- for Default_Switches ("Ada") use Ada_Common & "-O0" & "-gnata" & "-gnato" & "-g";
+ for Default_Switches ("Ada") use Ada_Common &
+ "-O0" & "-gnata" & "-gnateE" & "-gnato" & "-g";
end case;
end Compiler;