1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2018, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 with Osint
; use Osint
;
27 with Output
; use Output
;
28 with Switch
; use Switch
;
30 with System
.WCh_Con
; use System
.WCh_Con
;
32 package body Bindusg
is
34 Already_Displayed
: Boolean := False;
35 -- Set True if Display called, used to avoid showing usage information
44 if Already_Displayed
then
47 Already_Displayed
:= True;
52 Write_Str
("Usage: ");
55 Write_Str
("switches lfile");
59 Display_Usage_Version_And_Help
;
61 -- Line for @response_file
64 (" @<resp_file> Get arguments from response file");
67 -- Line for -aO switch
70 (" -aOdir Specify library files search path");
72 -- Line for -aI switch
75 (" -aIdir Specify source files search path");
80 (" -a Automatically initialize elaboration procedure");
82 -- Lines for -A switch
85 (" -A Give list of ALI files in partition");
87 (" -A=file Write ALI file list to named file");
92 (" -b Generate brief messages to stderr even if verbose mode "
98 (" -c Check only, no generation of binder output file");
100 -- Line for -d switch
103 (" -dnn[k|m] Default primary stack size = nn [kilo|mega] bytes");
108 (" -Dnn[k|m] Default secondary stack size = nn [kilo|mega] bytes");
110 -- Line for -e switch
113 (" -e Output complete list of elaboration order dependencies");
115 -- Line for -E switch
118 (" -Ea Store tracebacks in exception occurrences");
120 (" -Es Store tracebacks in exception occurrences,");
122 (" and enable symbolic tracebacks");
126 -- Line for -f switch
129 (" -ffile Force elaboration order from given file");
131 -- Line for -F switch
134 (" -F Force checking of elaboration Flags");
136 -- Line for -h switch
139 (" -h Output this usage (help) information");
141 -- Lines for -I switch
144 (" -Idir Specify library and source files search path");
146 (" -I- Don't look for sources & library files in default "
149 -- Line for -K switch
152 (" -K Give list of linker options specified for link");
154 -- Line for -l switch
157 (" -l Output chosen elaboration order");
162 (" -Lxyz Library build: adainit/final renamed to xyzinit/final, "
165 -- Line for -m switch
168 (" -mnnn Limit number of detected errors/warnings to nnn "
171 -- Line for -M switch
174 (" -Mxyz Rename generated main program from main to xyz");
176 -- Line for -n switch
179 (" -n No Ada main program (foreign main routine)");
181 -- Line for -nostdinc
184 (" -nostdinc Don't look for source files in the system default "
187 -- Line for -nostdlib
190 (" -nostdlib Don't look for library files in the system default "
193 -- Line for -o switch
196 (" -o file Give the output file name (default is b~xxx.adb)");
198 -- Line for -O switch
201 (" -O Give list of objects required for link");
203 -- Line for -p switch
206 (" -p Pessimistic (worst-case) elaboration order");
208 -- Line for -P switch
211 (" -P Generate binder file suitable for CodePeer");
216 (" -Qnnn Generate nnn default-sized secondary stacks");
218 -- Line for -r switch
221 (" -r List restrictions that could be applied to this "
224 -- Line for -R switch
227 (" -R List sources referenced in closure");
229 -- Line for -s switch
232 (" -s Require all source files to be present");
234 -- Line for -S?? switch
237 (" -S?? Sin/lo/hi/xx/ev Initialize_Scalars "
238 & "invalid/low/high/hex/env var");
243 (" -static Link against a static GNAT run time");
248 (" -shared Link against a shared GNAT run time");
250 -- Line for -t switch
253 (" -t Tolerate time stamp and other consistency errors");
255 -- Line for -T switch
258 (" -Tn Set time slice value to n milliseconds (n >= 0)");
260 -- Line for -u switch
263 (" -un Enable dynamic stack analysis, with n results stored");
265 -- Line for -v switch
268 (" -v Verbose mode. Error messages, header, summary output to "
271 -- Line for -V switch
274 (" -Vkey=val Record bind-time variable key with value val");
275 -- Line for -w switch
278 (" -wx Warning mode. (x=s/e for suppress/treat as error)");
280 -- Line for -W switch
283 (" -W? Wide character encoding method (");
285 for J
in WC_Encoding_Method
loop
286 Write_Char
(WC_Encoding_Letters
(J
));
288 if J
= WC_Encoding_Method
'Last then
297 -- Line for -x switch
300 (" -x Exclude source files (check object consistency only)");
302 -- Line for -X switch
305 (" -Xnnn Default exit status value = nnn");
307 -- Line for -y switch
310 (" -y Enable leap seconds");
312 -- Line for -z switch
315 (" -z No main subprogram (zero main)");
317 -- Line for -Z switch
320 (" -Z Zero formatting in auxiliary outputs (-e, -K, -l, -R)");
325 (" --RTS=dir Specify the default source and object search path");
330 (" lfile Library file names");