* jump.c: Remove prototypes for delete_computation and
[official-gcc.git] / gcc / ada / switch-c.adb
blobbd30fb9b14ddc06174fdef044a5b725098762fb9
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S W I T C H - C --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 2001-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 GNAT.OS_Lib; use GNAT.OS_Lib;
29 with Debug; use Debug;
30 with Lib; use Lib;
31 with Osint; use Osint;
32 with Opt; use Opt;
33 with Prepcomp; use Prepcomp;
34 with Validsw; use Validsw;
35 with Sem_Warn; use Sem_Warn;
36 with Stylesw; use Stylesw;
38 with System.WCh_Con; use System.WCh_Con;
40 package body Switch.C is
42 RTS_Specified : String_Access := null;
43 -- Used to detect multiple use of --RTS= flag
45 -----------------------------
46 -- Scan_Front_End_Switches --
47 -----------------------------
49 procedure Scan_Front_End_Switches (Switch_Chars : String) is
50 Switch_Starts_With_Gnat : Boolean;
51 -- True if first four switch characters are "gnat"
53 First_Switch : Boolean := True;
54 -- False for all but first switch
56 Ptr : Integer := Switch_Chars'First;
57 Max : constant Integer := Switch_Chars'Last;
58 C : Character := ' ';
59 Dot : Boolean;
61 Store_Switch : Boolean := True;
62 First_Char : Integer := Ptr;
63 Storing : String := Switch_Chars;
64 First_Stored : Positive := Ptr + 1;
65 -- The above need comments ???
67 begin
68 -- Skip past the initial character (must be the switch character)
70 if Ptr = Max then
71 Bad_Switch (C);
72 else
73 Ptr := Ptr + 1;
74 end if;
76 -- Remove "gnat" from the switch, if present
78 Switch_Starts_With_Gnat :=
79 Ptr + 3 <= Max and then Switch_Chars (Ptr .. Ptr + 3) = "gnat";
81 if Switch_Starts_With_Gnat then
82 Ptr := Ptr + 4;
83 First_Stored := Ptr;
84 end if;
86 -- Loop to scan through switches given in switch string
88 while Ptr <= Max loop
89 Store_Switch := True;
90 First_Char := Ptr;
91 C := Switch_Chars (Ptr);
93 -- Processing for a switch
95 case Switch_Starts_With_Gnat is
97 when False =>
99 -- There are few front-end switches that
100 -- do not start with -gnat: -I, --RTS
102 if Switch_Chars (Ptr) = 'I' then
103 Store_Switch := False;
105 -- Set flag Search_Directory_Present if switch is "-I" only:
106 -- the directory will be the next argument.
108 if Ptr = Max then
109 Search_Directory_Present := True;
110 return;
111 end if;
113 Ptr := Ptr + 1;
115 -- Find out whether this is a -I- or regular -Ixxx switch
117 if Ptr = Max and then Switch_Chars (Ptr) = '-' then
118 Look_In_Primary_Dir := False;
120 else
121 Add_Src_Search_Dir (Switch_Chars (Ptr .. Max));
122 end if;
124 Ptr := Max + 1;
126 -- Processing of the --RTS switch. --RTS has been modified by
127 -- gcc and is now of the form -fRTS
129 elsif Ptr + 3 <= Max
130 and then Switch_Chars (Ptr .. Ptr + 3) = "fRTS"
131 then
132 Ptr := Ptr + 1;
134 if Ptr + 4 > Max
135 or else Switch_Chars (Ptr + 3) /= '='
136 then
137 Osint.Fail ("missing path for --RTS");
138 else
139 -- Check that this is the first time --RTS is specified
140 -- or if it is not the first time, the same path has
141 -- been specified.
143 if RTS_Specified = null then
144 RTS_Specified :=
145 new String'(Switch_Chars (Ptr + 4 .. Max));
147 elsif
148 RTS_Specified.all /= Switch_Chars (Ptr + 4 .. Max)
149 then
150 Osint.Fail
151 ("--RTS cannot be specified multiple times");
152 end if;
154 -- Valid --RTS switch
156 Opt.No_Stdinc := True;
157 Opt.RTS_Switch := True;
159 RTS_Src_Path_Name := Get_RTS_Search_Dir
160 (Switch_Chars (Ptr + 4 .. Max),
161 Include);
162 RTS_Lib_Path_Name := Get_RTS_Search_Dir
163 (Switch_Chars (Ptr + 4 .. Max),
164 Objects);
166 if RTS_Src_Path_Name /= null and then
167 RTS_Lib_Path_Name /= null
168 then
169 Ptr := Max + 1;
171 elsif RTS_Src_Path_Name = null and then
172 RTS_Lib_Path_Name = null
173 then
174 Osint.Fail ("RTS path not valid: missing " &
175 "adainclude and adalib directories");
177 elsif RTS_Src_Path_Name = null then
178 Osint.Fail ("RTS path not valid: missing " &
179 "adainclude directory");
181 elsif RTS_Lib_Path_Name = null then
182 Osint.Fail ("RTS path not valid: missing " &
183 "adalib directory");
184 end if;
185 end if;
186 else
187 Bad_Switch (C);
188 end if;
190 when True =>
192 -- Process -gnat* options
194 case C is
196 when 'a' =>
197 Ptr := Ptr + 1;
198 Assertions_Enabled := True;
199 Debug_Pragmas_Enabled := True;
201 -- Processing for A switch
203 when 'A' =>
204 Ptr := Ptr + 1;
205 Config_File := False;
207 -- Processing for b switch
209 when 'b' =>
210 Ptr := Ptr + 1;
211 Brief_Output := True;
213 -- Processing for c switch
215 when 'c' =>
216 if not First_Switch then
217 Osint.Fail
218 ("-gnatc must be first if combined with other switches");
219 end if;
221 Ptr := Ptr + 1;
222 Operating_Mode := Check_Semantics;
224 if Tree_Output then
225 ASIS_Mode := True;
226 end if;
228 -- Processing for d switch
230 when 'd' =>
231 Store_Switch := False;
232 Storing (First_Stored) := 'd';
233 Dot := False;
235 -- Note: for the debug switch, the remaining characters in this
236 -- switch field must all be debug flags, since all valid switch
237 -- characters are also valid debug characters.
239 -- Loop to scan out debug flags
241 while Ptr < Max loop
242 Ptr := Ptr + 1;
243 C := Switch_Chars (Ptr);
244 exit when C = ASCII.NUL or else C = '/' or else C = '-';
246 if C in '1' .. '9' or else
247 C in 'a' .. 'z' or else
248 C in 'A' .. 'Z'
249 then
250 if Dot then
251 Set_Dotted_Debug_Flag (C);
252 Storing (First_Stored + 1) := '.';
253 Storing (First_Stored + 2) := C;
254 Store_Compilation_Switch
255 (Storing (Storing'First .. First_Stored + 2));
256 Dot := False;
258 else
259 Set_Debug_Flag (C);
260 Storing (First_Stored + 1) := C;
261 Store_Compilation_Switch
262 (Storing (Storing'First .. First_Stored + 1));
263 end if;
265 elsif C = '.' then
266 Dot := True;
268 else
269 Bad_Switch (C);
270 end if;
271 end loop;
273 return;
275 -- Processing for D switch
277 when 'D' =>
278 Ptr := Ptr + 1;
280 -- Note: -gnatD also sets -gnatx (to turn off cross-reference
281 -- generation in the ali file) since otherwise this generation
282 -- gets confused by the "wrong" Sloc values put in the tree.
284 Debug_Generated_Code := True;
285 Xref_Active := False;
286 Set_Debug_Flag ('g');
288 -- -gnate? (extended switches)
290 when 'e' =>
291 Ptr := Ptr + 1;
293 -- The -gnate? switches are all double character switches
294 -- so we must always have a character after the e.
296 if Ptr > Max then
297 Bad_Switch (C);
298 end if;
300 case Switch_Chars (Ptr) is
302 -- -gnatec (configuration pragmas)
304 when 'c' =>
305 Store_Switch := False;
306 Ptr := Ptr + 1;
308 -- There may be an equal sign between -gnatec and
309 -- the path name of the config file.
311 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
312 Ptr := Ptr + 1;
313 end if;
315 if Ptr > Max then
316 Bad_Switch (C);
317 end if;
319 declare
320 Config_File_Name : constant String_Access :=
321 new String'
322 (Switch_Chars (Ptr .. Max));
324 begin
325 if Config_File_Names = null then
326 Config_File_Names :=
327 new String_List'(1 => Config_File_Name);
329 else
330 declare
331 New_Names : constant String_List_Access :=
332 new String_List
333 (1 ..
334 Config_File_Names'Length + 1);
336 begin
337 for Index in Config_File_Names'Range loop
338 New_Names (Index) :=
339 Config_File_Names (Index);
340 Config_File_Names (Index) := null;
341 end loop;
343 New_Names (New_Names'Last) := Config_File_Name;
344 Free (Config_File_Names);
345 Config_File_Names := New_Names;
346 end;
347 end if;
348 end;
350 return;
352 -- -gnateD switch (symbol definition)
354 when 'D' =>
355 Store_Switch := False;
356 Ptr := Ptr + 1;
358 if Ptr > Max then
359 Bad_Switch (C);
360 end if;
362 Add_Symbol_Definition (Switch_Chars (Ptr .. Max));
364 -- Store the switch
366 Storing (First_Stored .. First_Stored + 1) := "eD";
367 Storing
368 (First_Stored + 2 .. First_Stored + Max - Ptr + 2) :=
369 Switch_Chars (Ptr .. Max);
370 Store_Compilation_Switch (Storing
371 (Storing'First .. First_Stored + Max - Ptr + 2));
372 return;
374 -- -gnatef (full source path for brief error messages)
376 when 'f' =>
377 Store_Switch := False;
378 Ptr := Ptr + 1;
379 Full_Path_Name_For_Brief_Errors := True;
380 return;
382 -- -gnateI (index of unit in multi-unit source)
384 when 'I' =>
385 Ptr := Ptr + 1;
386 Scan_Pos
387 (Switch_Chars, Max, Ptr, Multiple_Unit_Index, C);
389 -- -gnatem (mapping file)
391 when 'm' =>
392 Store_Switch := False;
393 Ptr := Ptr + 1;
395 -- There may be an equal sign between -gnatem and
396 -- the path name of the mapping file.
398 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
399 Ptr := Ptr + 1;
400 end if;
402 if Ptr > Max then
403 Bad_Switch (C);
404 end if;
406 Mapping_File_Name :=
407 new String'(Switch_Chars (Ptr .. Max));
408 return;
410 -- -gnatep (preprocessing data file)
412 when 'p' =>
413 Store_Switch := False;
414 Ptr := Ptr + 1;
416 -- There may be an equal sign between -gnatep and
417 -- the path name of the mapping file.
419 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
420 Ptr := Ptr + 1;
421 end if;
423 if Ptr > Max then
424 Bad_Switch (C);
425 end if;
427 Preprocessing_Data_File :=
428 new String'(Switch_Chars (Ptr .. Max));
430 -- Store the switch.
431 -- Because we may store a longer switch (we normalize
432 -- to -gnatep=), use a local variable.
434 declare
435 To_Store : String
436 (1 .. Preprocessing_Data_File'Length + 8);
438 begin
439 To_Store (1 .. 8) := "-gnatep=";
440 To_Store (9 .. Preprocessing_Data_File'Length + 8) :=
441 Preprocessing_Data_File.all;
442 Store_Compilation_Switch (To_Store);
443 end;
445 return;
447 when 'z' =>
448 Store_Switch := False;
449 Disable_Switch_Storing;
450 Ptr := Ptr + 1;
452 -- All other -gnate? switches are unassigned
454 when others =>
455 Bad_Switch (C);
456 end case;
458 -- -gnatE (dynamic elaboration checks)
460 when 'E' =>
461 Ptr := Ptr + 1;
462 Dynamic_Elaboration_Checks := True;
464 -- -gnatf (full error messages)
466 when 'f' =>
467 Ptr := Ptr + 1;
468 All_Errors_Mode := True;
470 -- Processing for F switch
472 when 'F' =>
473 Ptr := Ptr + 1;
474 External_Name_Exp_Casing := Uppercase;
475 External_Name_Imp_Casing := Uppercase;
477 -- Processing for g switch
479 when 'g' =>
480 Ptr := Ptr + 1;
481 GNAT_Mode := True;
482 Identifier_Character_Set := 'n';
483 System_Extend_Unit := Empty;
484 Warning_Mode := Treat_As_Error;
486 -- Set Ada 2005 mode explicitly. We don't want to rely on the
487 -- implicit setting here, since for example, we want
488 -- Preelaborate_05 treated as Preelaborate
490 Ada_Version := Ada_05;
491 Ada_Version_Explicit := Ada_Version;
493 -- Set default warnings for -gnatg (same set as -gnatwa)
495 Check_Unreferenced := True;
496 Check_Unreferenced_Formals := True;
497 Check_Withs := True;
498 Constant_Condition_Warnings := True;
499 Implementation_Unit_Warnings := True;
500 Ineffective_Inline_Warnings := True;
501 Warn_On_Assumed_Low_Bound := True;
502 Warn_On_Bad_Fixed_Value := True;
503 Warn_On_Constant := True;
504 Warn_On_Export_Import := True;
505 Warn_On_Modified_Unread := True;
506 Warn_On_No_Value_Assigned := True;
507 Warn_On_Obsolescent_Feature := True;
508 Warn_On_Redundant_Constructs := True;
509 Warn_On_Unchecked_Conversion := True;
510 Warn_On_Unrecognized_Pragma := True;
512 Set_Style_Check_Options ("3abcdefhiklmnprstux");
514 -- Processing for G switch
516 when 'G' =>
517 Ptr := Ptr + 1;
518 Print_Generated_Code := True;
520 -- Processing for h switch
522 when 'h' =>
523 Ptr := Ptr + 1;
524 Usage_Requested := True;
526 -- Processing for H switch
528 when 'H' =>
529 Ptr := Ptr + 1;
530 HLO_Active := True;
532 -- Processing for i switch
534 when 'i' =>
535 if Ptr = Max then
536 Bad_Switch (C);
537 end if;
539 Ptr := Ptr + 1;
540 C := Switch_Chars (Ptr);
542 if C in '1' .. '5'
543 or else C = '8'
544 or else C = '9'
545 or else C = 'p'
546 or else C = 'f'
547 or else C = 'n'
548 or else C = 'w'
549 then
550 Identifier_Character_Set := C;
551 Ptr := Ptr + 1;
553 else
554 Bad_Switch (C);
555 end if;
557 -- Processing for j switch
559 when 'j' =>
560 Ptr := Ptr + 1;
562 -- There may be an equal sign between -gnatj and the value
564 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
565 Ptr := Ptr + 1;
566 end if;
568 Scan_Nat (Switch_Chars, Max, Ptr, Error_Msg_Line_Length, C);
570 -- Processing for k switch
572 when 'k' =>
573 Ptr := Ptr + 1;
574 Scan_Pos
575 (Switch_Chars, Max, Ptr, Maximum_File_Name_Length, C);
577 -- Processing for l switch
579 when 'l' =>
580 Ptr := Ptr + 1;
581 Full_List := True;
583 -- There may be an equal sign between -gnatl and a file name
585 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
586 if Ptr = Max then
587 Osint.Fail ("file name for -gnatl= is null");
588 else
589 Opt.Full_List_File_Name :=
590 new String'(Switch_Chars (Ptr + 1 .. Max));
591 Ptr := Max + 1;
592 end if;
593 end if;
595 -- Processing for L switch
597 when 'L' =>
598 Ptr := Ptr + 1;
599 Dump_Source_Text := True;
601 -- Processing for m switch
603 when 'm' =>
604 Ptr := Ptr + 1;
606 -- There may be an equal sign between -gnatm and the value
608 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
609 Ptr := Ptr + 1;
610 end if;
612 Scan_Nat (Switch_Chars, Max, Ptr, Maximum_Errors, C);
614 -- Processing for n switch
616 when 'n' =>
617 Ptr := Ptr + 1;
618 Inline_Active := True;
620 -- Processing for N switch
622 when 'N' =>
623 Ptr := Ptr + 1;
624 Inline_Active := True;
625 Front_End_Inlining := True;
627 -- Processing for o switch
629 when 'o' =>
630 Ptr := Ptr + 1;
631 Suppress_Options (Overflow_Check) := False;
632 Opt.Enable_Overflow_Checks := True;
634 -- Processing for O switch
636 when 'O' =>
637 Store_Switch := False;
638 Ptr := Ptr + 1;
639 Output_File_Name_Present := True;
641 -- Processing for p switch
643 when 'p' =>
644 Ptr := Ptr + 1;
646 -- Set all specific options as well as All_Checks in the
647 -- Suppress_Options array, excluding Elaboration_Check, since
648 -- this is treated specially because we do not want -gnatp to
649 -- disable static elaboration processing.
651 for J in Suppress_Options'Range loop
652 if J /= Elaboration_Check then
653 Suppress_Options (J) := True;
654 end if;
655 end loop;
657 Validity_Checks_On := False;
658 Opt.Suppress_Checks := True;
659 Opt.Enable_Overflow_Checks := False;
661 -- Processing for P switch
663 when 'P' =>
664 Ptr := Ptr + 1;
665 Polling_Required := True;
667 -- Processing for q switch
669 when 'q' =>
670 Ptr := Ptr + 1;
671 Try_Semantics := True;
673 -- Processing for q switch
675 when 'Q' =>
676 Ptr := Ptr + 1;
677 Force_ALI_Tree_File := True;
678 Try_Semantics := True;
680 -- Processing for R switch
682 when 'R' =>
683 Ptr := Ptr + 1;
684 Back_Annotate_Rep_Info := True;
685 List_Representation_Info := 1;
687 while Ptr <= Max loop
688 C := Switch_Chars (Ptr);
690 if C in '1' .. '3' then
691 List_Representation_Info :=
692 Character'Pos (C) - Character'Pos ('0');
694 elsif Switch_Chars (Ptr) = 's' then
695 List_Representation_Info_To_File := True;
697 elsif Switch_Chars (Ptr) = 'm' then
698 List_Representation_Info_Mechanisms := True;
700 else
701 Bad_Switch (C);
702 end if;
704 Ptr := Ptr + 1;
705 end loop;
707 -- Processing for s switch
709 when 's' =>
710 if not First_Switch then
711 Osint.Fail
712 ("-gnats must be first if combined with other switches");
713 end if;
715 Ptr := Ptr + 1;
716 Operating_Mode := Check_Syntax;
718 -- Processing for S switch
720 when 'S' =>
721 Print_Standard := True;
722 Ptr := Ptr + 1;
724 -- Processing for t switch
726 when 't' =>
727 Ptr := Ptr + 1;
728 Tree_Output := True;
730 if Operating_Mode = Check_Semantics then
731 ASIS_Mode := True;
732 end if;
734 Back_Annotate_Rep_Info := True;
736 -- Processing for T switch
738 when 'T' =>
739 Ptr := Ptr + 1;
740 Scan_Pos (Switch_Chars, Max, Ptr, Table_Factor, C);
742 -- Processing for u switch
744 when 'u' =>
745 Ptr := Ptr + 1;
746 List_Units := True;
748 -- Processing for U switch
750 when 'U' =>
751 Ptr := Ptr + 1;
752 Unique_Error_Tag := True;
754 -- Processing for v switch
756 when 'v' =>
757 Ptr := Ptr + 1;
758 Verbose_Mode := True;
760 -- Processing for V switch
762 when 'V' =>
763 Store_Switch := False;
764 Storing (First_Stored) := 'V';
765 Ptr := Ptr + 1;
767 if Ptr > Max then
768 Bad_Switch (C);
770 else
771 declare
772 OK : Boolean;
774 begin
775 Set_Validity_Check_Options
776 (Switch_Chars (Ptr .. Max), OK, Ptr);
778 if not OK then
779 Bad_Switch (C);
780 end if;
782 for Index in First_Char + 1 .. Max loop
783 Storing (First_Stored + 1) :=
784 Switch_Chars (Index);
785 Store_Compilation_Switch
786 (Storing (Storing'First .. First_Stored + 1));
787 end loop;
788 end;
789 end if;
791 Ptr := Max + 1;
793 -- Processing for w switch
795 when 'w' =>
796 Store_Switch := False;
797 Storing (First_Stored) := 'w';
798 Ptr := Ptr + 1;
800 if Ptr > Max then
801 Bad_Switch (C);
802 end if;
804 while Ptr <= Max loop
805 C := Switch_Chars (Ptr);
807 if Set_Warning_Switch (C) then
808 null;
809 else
810 Bad_Switch (C);
811 end if;
813 if C /= 'w' then
814 Storing (First_Stored + 1) := C;
815 Store_Compilation_Switch
816 (Storing (Storing'First .. First_Stored + 1));
817 end if;
819 Ptr := Ptr + 1;
820 end loop;
822 return;
824 -- Processing for W switch
826 when 'W' =>
827 Ptr := Ptr + 1;
829 if Ptr > Max then
830 Bad_Switch (C);
831 end if;
833 begin
834 Wide_Character_Encoding_Method :=
835 Get_WC_Encoding_Method (Switch_Chars (Ptr));
836 exception
837 when Constraint_Error =>
838 Bad_Switch (C);
839 end;
841 Upper_Half_Encoding :=
842 Wide_Character_Encoding_Method in
843 WC_Upper_Half_Encoding_Method;
845 Ptr := Ptr + 1;
847 -- Processing for x switch
849 when 'x' =>
850 Ptr := Ptr + 1;
851 Xref_Active := False;
853 -- Processing for X switch
855 when 'X' =>
856 Ptr := Ptr + 1;
857 Extensions_Allowed := True;
858 Ada_Version := Ada_Version_Type'Last;
859 Ada_Version_Explicit := Ada_Version;
861 -- Processing for y switch
863 when 'y' =>
864 Ptr := Ptr + 1;
866 if Ptr > Max then
867 Set_Default_Style_Check_Options;
869 else
870 Store_Switch := False;
871 Storing (First_Stored) := 'y';
873 declare
874 OK : Boolean;
875 Last_Stored : Integer;
877 begin
878 Set_Style_Check_Options
879 (Switch_Chars (Ptr .. Max), OK, Ptr);
881 if not OK then
882 Osint.Fail
883 ("bad -gnaty switch (" &
884 Style_Msg_Buf (1 .. Style_Msg_Len) & ')');
885 end if;
887 Ptr := First_Char + 1;
888 while Ptr <= Max loop
889 Last_Stored := First_Stored + 1;
890 Storing (Last_Stored) := Switch_Chars (Ptr);
892 if Switch_Chars (Ptr) = 'M' then
893 loop
894 Ptr := Ptr + 1;
895 exit when Ptr > Max
896 or else Switch_Chars (Ptr) not in '0' .. '9';
897 Last_Stored := Last_Stored + 1;
898 Storing (Last_Stored) := Switch_Chars (Ptr);
899 end loop;
901 else
902 Ptr := Ptr + 1;
903 end if;
905 Store_Compilation_Switch
906 (Storing (Storing'First .. Last_Stored));
907 end loop;
908 end;
909 end if;
911 -- Processing for z switch
913 when 'z' =>
914 Ptr := Ptr + 1;
916 -- Allowed for compiler only if this is the only
917 -- -z switch, we do not allow multiple occurrences
919 if Distribution_Stub_Mode = No_Stubs then
920 case Switch_Chars (Ptr) is
921 when 'r' =>
922 Distribution_Stub_Mode := Generate_Receiver_Stub_Body;
924 when 'c' =>
925 Distribution_Stub_Mode := Generate_Caller_Stub_Body;
927 when others =>
928 Bad_Switch (C);
929 end case;
931 Ptr := Ptr + 1;
933 end if;
935 -- Processing for Z switch
937 when 'Z' =>
938 Ptr := Ptr + 1;
939 Osint.Fail
940 ("-gnatZ is no longer supported: consider using --RTS=zcx");
942 -- Processing for 83 switch
944 when '8' =>
945 if Ptr = Max then
946 Bad_Switch (C);
947 end if;
949 Ptr := Ptr + 1;
951 if Switch_Chars (Ptr) /= '3' then
952 Bad_Switch (C);
953 else
954 Ptr := Ptr + 1;
955 Ada_Version := Ada_83;
956 Ada_Version_Explicit := Ada_Version;
957 end if;
959 -- Processing for 95 switch
961 when '9' =>
962 if Ptr = Max then
963 Bad_Switch (C);
964 end if;
966 Ptr := Ptr + 1;
968 if Switch_Chars (Ptr) /= '5' then
969 Bad_Switch (C);
970 else
971 Ptr := Ptr + 1;
972 Ada_Version := Ada_95;
973 Ada_Version_Explicit := Ada_Version;
974 end if;
976 -- Processing for 05 switch
978 when '0' =>
979 if Ptr = Max then
980 Bad_Switch (C);
981 end if;
983 Ptr := Ptr + 1;
985 if Switch_Chars (Ptr) /= '5' then
986 Bad_Switch (C);
987 else
988 Ptr := Ptr + 1;
989 Ada_Version := Ada_05;
990 Ada_Version_Explicit := Ada_Version;
991 end if;
993 -- Ignore extra switch character
995 when '/' | '-' =>
996 Ptr := Ptr + 1;
998 -- Anything else is an error (illegal switch character)
1000 when others =>
1001 Bad_Switch (C);
1002 end case;
1003 end case;
1005 if Store_Switch then
1006 Storing (First_Stored .. First_Stored + Ptr - First_Char - 1) :=
1007 Switch_Chars (First_Char .. Ptr - 1);
1008 Store_Compilation_Switch
1009 (Storing (Storing'First .. First_Stored + Ptr - First_Char - 1));
1010 end if;
1012 First_Switch := False;
1013 end loop;
1014 end Scan_Front_End_Switches;
1016 end Switch.C;