aboutsummaryrefslogtreecommitdiff
path: root/gcc/toplev.c
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-03-30 21:39:24 +0000
committerRichard Stallman <rms@gnu.org>1992-03-30 21:39:24 +0000
commitd68c507dffe8657a9703d6396a573047b0b7066b (patch)
tree3862b0c81eb8923842e1f48dc153bb6e5c058481 /gcc/toplev.c
parent82f9fd122dfcdcb08cb5282330bb2da240c8c851 (diff)
downloadgcc-d68c507dffe8657a9703d6396a573047b0b7066b.zip
gcc-d68c507dffe8657a9703d6396a573047b0b7066b.tar.gz
gcc-d68c507dffe8657a9703d6396a573047b0b7066b.tar.bz2
*** empty log message ***
From-SVN: r638
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r--gcc/toplev.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 1ddfce4..257f52f 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -423,8 +423,13 @@ int flag_schedule_insns_after_reload = 0;
int flag_inhibit_size_directive = 0;
/* -fgnu-linker specifies use of the GNU linker for initializations.
- -fno-gnu-linker says that collect will be used. */
+ (Or, more generally, a linker that handles initializations.)
+ -fno-gnu-linker says that collect2 will be used. */
+#ifdef USE_COLLECT2
+int flag_gnu_linker = 0;
+#else
int flag_gnu_linker = 1;
+#endif
/* Table of language-independent -f options.
STRING is the option name. VARIABLE is the address of the variable.
@@ -2919,7 +2924,7 @@ You Lose! You must define PREFERRED_DEBUGGING_TYPE!
else if (level == 0)
write_symbols = NO_DEBUG;
else
- debug_info_level = level;
+ debug_info_level = (enum debug_info_level) level;
}
else if (!strcmp (str, "o"))
{