diff options
author | Vincent Celier <celier@adacore.com> | 2014-08-01 08:34:02 +0000 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-08-01 10:34:02 +0200 |
commit | 3849c2468667a5f15e6dae5ec9ef8a8d4d99cba2 (patch) | |
tree | 100115cccc2eee78fbcc573f0a314fbc9d2692f5 /gcc/ada/make.adb | |
parent | 16b10ccc1f7d3deeaaa5b976fcbca04fba035e9c (diff) | |
download | gcc-3849c2468667a5f15e6dae5ec9ef8a8d4d99cba2.zip gcc-3849c2468667a5f15e6dae5ec9ef8a8d4d99cba2.tar.gz gcc-3849c2468667a5f15e6dae5ec9ef8a8d4d99cba2.tar.bz2 |
debug.adb: Remove doc for gnatmake/gprbuild switch -ds.
2014-08-01 Vincent Celier <celier@adacore.com>
* debug.adb: Remove doc for gnatmake/gprbuild switch -ds.
* make.adb (List_Bad_Compilations): Use Opt.No_Exit_Message
instead of Debug.Debug_Flag_S.
* makeutl.adb (Finish_Program, Fail_Program): Use Opt flag
No_Exit_Message instead of Debug.Debug_Flag_S to suppress exit
error messages.
* makeutl.ads (No_Exit_Message_Option): New constant string
for switch --no-exit-message.
* opt.ads (No_Exit_Message): New Boolean flag, defaulted to False.
* switch-m.adb (Scan_Make_Switches): Recognize new switch
--no-exit-message.
From-SVN: r213424
Diffstat (limited to 'gcc/ada/make.adb')
-rw-r--r-- | gcc/ada/make.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/make.adb b/gcc/ada/make.adb index 808ad00..05cb6f1 100644 --- a/gcc/ada/make.adb +++ b/gcc/ada/make.adb @@ -6948,7 +6948,7 @@ package body Make is procedure List_Bad_Compilations is begin - if not Debug.Debug_Flag_S then + if not No_Exit_Message then for J in Bad_Compilation.First .. Bad_Compilation.Last loop if Bad_Compilation.Table (J).File = No_File then null; |