+2018-09-30 Alexandre Oliva <oliva@adacore.com>
+
+ * gcc-interface/lang-specs.h (default_compilers): When given
+ fcompare-debug-second, adjust auxbase like cc1, and pass
+ gnatd_A.
+ * gcc-interface/misc.c (flag_compare_debug): Remove variable.
+ (gnat_post_options): Do not set it.
+ * lib-writ.adb (flag_compare_debug): Remove import.
+ (Write_ALI): Do not test it.
+
2018-09-28 Eric Botcazou <ebotcazou@adacore.com>
Pierre-Marie de Rodat <derodat@adacore.com>
gnat1 %{I*} %{k8:-gnatk8} %{Wall:-gnatwa} %{w:-gnatws} %{!Q:-quiet}\
%{nostdinc*} %{nostdlib*}\
-dumpbase %{.adb:%b.adb}%{.ads:%b.ads}%{!.adb:%{!.ads:%b.ada}}\
- %{c|S:%{o*:-auxbase-strip %*}%{!o*:-auxbase %b}}%{!c:%{!S:-auxbase %b}} \
+ %{fcompare-debug-second:%:compare-debug-auxbase-opt(%b) -gnatd_A} \
+ %{!fcompare-debug-second:%{c|S:%{o*:-auxbase-strip %*}%{!o*:-auxbase %b}}%{!c:%{!S:-auxbase %b}}} \
%{O*} %{W*} %{w} %{p} %{pg:-p} %{d*} \
%{coverage:-fprofile-arcs -ftest-coverage} "
#if defined(TARGET_VXWORKS_RTP)
#undef optimize_size
int optimize_size;
-#undef flag_compare_debug
-int flag_compare_debug;
-
#undef flag_short_enums
int flag_short_enums;
gnat_encodings = global_options.x_gnat_encodings;
optimize = global_options.x_optimize;
optimize_size = global_options.x_optimize_size;
- flag_compare_debug = global_options.x_flag_compare_debug;
flag_stack_check = global_options.x_flag_stack_check;
flag_short_enums = global_options.x_flag_short_enums;
Num_Sdep : Nat := 0;
-- Number of active entries in Sdep_Table
- flag_compare_debug : Int;
- pragma Import (C, flag_compare_debug);
- -- Import from toplev.c
-
-----------------------
-- Local Subprograms --
-----------------------
-- We never write an ALI file if the original operating mode was
-- syntax-only (-gnats switch used in compiler invocation line)
- if Original_Operating_Mode = Check_Syntax
- or flag_compare_debug /= 0
- then
+ if Original_Operating_Mode = Check_Syntax then
return;
end if;