diff options
author | Sergey Rybin <rybin@adacore.com> | 2008-08-22 11:03:30 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2008-08-22 11:03:30 +0200 |
commit | b66cb57268bad05080062167eab68ef661a32231 (patch) | |
tree | 35f66f028878c46da69a3e9a4e81595bf72600d9 /gcc/ada/vms_data.ads | |
parent | 3ea52b2e24bf9ee4b7da044fb0b6af84ac1c5e36 (diff) | |
download | gcc-b66cb57268bad05080062167eab68ef661a32231.tar.gz |
vms_data.ads: Add entry for new gnatcheck -mNNN option
2008-08-22 Sergey Rybin <rybin@adacore.com>
* vms_data.ads: Add entry for new gnatcheck -mNNN option
* gnat_ugn.texi: Add description for gnatcheck option '-m'
From-SVN: r139431
Diffstat (limited to 'gcc/ada/vms_data.ads')
-rw-r--r-- | gcc/ada/vms_data.ads | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/ada/vms_data.ads b/gcc/ada/vms_data.ads index 46764ddb50e..b302791e144 100644 --- a/gcc/ada/vms_data.ads +++ b/gcc/ada/vms_data.ads @@ -774,6 +774,17 @@ package VMS_Data is -- -- Use full source locations references in the report file. + S_Diagnosis : aliased constant S := "/DIAGNOSIS_LIMIT=#" & + "-m#"; + -- /DIAGNOSIS_LIMIT=500 (D) + -- /ERROR_LIMIT=nnn + -- + -- NNN is a decimal integer in the range of 1 to 1000 and limits the + -- number of diagnostic messages to be generated into Stdoutto that + -- number. Once that number has been reached, gnatcheck stops + -- to print out diagnoses into Stderr. If NNN is equal to 0, this means + -- that there is no limit on the number of diagnoses in Stdout + S_Check_Mess : aliased constant S := "/MESSAGES_PROJECT_FILE=" & "DEFAULT " & "-vP0 " & @@ -867,6 +878,7 @@ package VMS_Data is Check_Switches : aliased constant Switches := (S_Check_Add 'Access, S_Check_All 'Access, + S_Diagnosis 'Access, S_Check_Ext 'Access, S_Check_Files 'Access, S_Check_Follow 'Access, |