* jump.c: Remove prototypes for delete_computation and
[official-gcc.git] / gcc / ada / bindusg.adb
blob427793467959c004d9155b4b93e9e8e6e5a63844
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- B I N D U S G --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2006, Free Software Foundation, Inc. --
10 -- --
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 2, 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 COPYING. If not, write --
19 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
21 -- --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 -- --
25 ------------------------------------------------------------------------------
27 with Osint; use Osint;
28 with Output; use Output;
30 package body Bindusg is
32 Already_Displayed : Boolean := False;
33 -- Set True if Display called, used to avoid showing usage information
34 -- more than once.
36 -------------
37 -- Display --
38 -------------
40 procedure Display is
41 begin
42 if Already_Displayed then
43 return;
44 else
45 Already_Displayed := True;
46 end if;
48 -- Usage line
50 Write_Str ("Usage: ");
51 Write_Program_Name;
52 Write_Char (' ');
53 Write_Str ("switches lfile");
54 Write_Eol;
55 Write_Eol;
57 -- Line for -aO switch
59 Write_Line (" -aOdir Specify library files search path");
61 -- Line for -aI switch
63 Write_Line (" -aIdir Specify source files search path");
65 -- Line for a switch
67 Write_Line (" -a Automatically initialize elaboration " &
68 "procedure");
70 -- Line for A switch
72 Write_Line (" -A Generate binder program in Ada (default)");
74 -- Line for -b switch
76 Write_Line (" -b Generate brief messages to stderr " &
77 "even if verbose mode set");
79 -- Line for -c switch
81 Write_Line (" -c Check only, no generation of " &
82 "binder output file");
84 -- Line for C switch
86 Write_Line (" -C Generate binder program in C");
88 -- Line for -d switch
90 Write_Line (" -dnn[k|m] Default primary stack " &
91 "size = nn [kilo|mega] bytes");
93 -- Line for D switch
95 Write_Line (" -Dnn[k|m] Default secondary stack " &
96 "size = nnn [kilo|mega] bytes");
98 -- Line for -e switch
100 Write_Line (" -e Output complete list of elaboration " &
101 "order dependencies");
103 -- Line for -E switch
105 Write_Line (" -E Store tracebacks in Exception occurrences");
107 -- The -f switch is voluntarily omitted, because it is obsolete
109 -- Line for -F switch
111 Write_Line (" -F Force checking of elaboration Flags");
113 -- Line for -h switch
115 Write_Line (" -h Output this usage (help) information");
117 -- Lines for -I switch
119 Write_Line (" -Idir Specify library and source files search path");
120 Write_Line (" -I- Don't look for sources & library files " &
121 "in default directory");
123 -- Line for -K switch
125 Write_Line (" -K Give list of linker options specified " &
126 "for link");
128 -- Line for -l switch
130 Write_Line (" -l Output chosen elaboration order");
132 -- Line of -L switch
134 Write_Line (" -Lxyz Library build: adainit/final " &
135 "renamed to xyzinit/final, implies -n");
137 -- Line for -m switch
139 Write_Line (" -mnnn Limit number of detected errors " &
140 "to nnn (1-999999)");
142 -- Line for -M switch
144 Write_Line (" -Mxyz Rename generated main program from " &
145 "main to xyz");
147 -- Line for -n switch
149 Write_Line (" -n No Ada main program (foreign main routine)");
151 -- Line for -nostdinc
153 Write_Line (" -nostdinc Don't look for source files " &
154 "in the system default directory");
156 -- Line for -nostdlib
158 Write_Line (" -nostdlib Don't look for library files " &
159 "in the system default directory");
161 -- Line for -o switch
163 Write_Line (" -o file Give the output file name " &
164 "(default is b~xxx.adb)");
166 -- Line for -O switch
168 Write_Line (" -O Give list of objects required for link");
170 -- Line for -p switch
172 Write_Line (" -p Pessimistic (worst-case) elaboration order");
174 -- Line for -r switch
176 Write_Line (" -r List restrictions that could be applied " &
177 "to this partition");
179 -- Line for -s switch
181 Write_Line (" -s Require all source files to be present");
183 -- Line for -Sxx switch
185 Write_Line (" -S?? Sin/lo/hi/xx for Initialize_Scalars " &
186 "invalid/low/high/hex");
188 -- Line for -static
190 Write_Line (" -static Link against a static GNAT run time");
192 -- Line for -shared
194 Write_Line (" -shared Link against a shared GNAT run time");
196 -- Line for -t switch
198 Write_Line (" -t Tolerate time stamp and other " &
199 "consistency errors");
201 -- Line for -T switch
203 Write_Line (" -Tn Set time slice value to n " &
204 "milliseconds (n >= 0)");
206 -- Line for -u switch
208 Write_Line (" -un Enable dynamic stack analysis, with " &
209 "n results stored");
211 -- Line for -v switch
213 Write_Line (" -v Verbose mode. Error messages, " &
214 "header, summary output to stdout");
216 -- Lines for -w switch
218 Write_Line (" -wx Warning mode. (x=s/e for " &
219 "suppress/treat as error)");
221 -- Line for -x switch
223 Write_Line (" -x Exclude source files (check object " &
224 "consistency only)");
226 -- Line for X switch
228 Write_Line (" -Xnnn Default exit status value = nnn");
230 -- Line for -z switch
232 Write_Line (" -z No main subprogram (zero main)");
234 -- Line for --RTS
236 Write_Line (" --RTS=dir specify the default source and " &
237 "object search path");
239 -- Line for sfile
241 Write_Line (" lfile Library file names");
242 end Display;
244 end Bindusg;