aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Brolley <brolley@cygnus.com>1999-05-11 08:49:39 +0000
committerDave Brolley <brolley@gcc.gnu.org>1999-05-11 04:49:39 -0400
commit593d78538da155206573f806a6f1ab8c4b8ae770 (patch)
tree434e1bd1baa9088be93ff54ccedd36b93d77d0e3
parent54e7fb26d5155cc53fae29f40c4b1a9e3c03d8be (diff)
downloadgcc-593d78538da155206573f806a6f1ab8c4b8ae770.zip
gcc-593d78538da155206573f806a6f1ab8c4b8ae770.tar.gz
gcc-593d78538da155206573f806a6f1ab8c4b8ae770.tar.bz2
toplev.c (documented_lang_options): Add -MD, -MMD, -M and -MM for cpplib-enabled compilers.
Tue May 11 11:45:16 1999 Dave Brolley <brolley@cygnus.com> * toplev.c (documented_lang_options): Add -MD, -MMD, -M and -MM for cpplib-enabled compilers. From-SVN: r26881
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/toplev.c6
2 files changed, 11 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index cc08edb..0f120ff 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+Tue May 11 11:45:16 1999 Dave Brolley <brolley@cygnus.com>
+
+ * toplev.c (documented_lang_options): Add -MD, -MMD, -M and -MM for
+ cpplib-enabled compilers.
+
Tue May 11 11:34:56 1999 Vladimir Makarov <vmakarov@tofu.to.cygnus.com>
* config/sparc/sparc.h (GO_IF_LEGITIMATE_ADDRESS): Add parentheses
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 1fe439a..6920b26 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -1093,6 +1093,12 @@ documented_lang_options[] =
{ "-A", "" },
{ "-D", "" },
{ "-I", "" },
+#if USE_CPPLIB
+ { "-MD", "Print dependencies to FILE.d" },
+ { "-MMD", "Print dependencies to FILE.d" },
+ { "-M", "Print dependencies to stdout" },
+ { "-MM", "Print dependencies to stdout" },
+#endif /* USE_CPPLIB */
{ "-U", "" },
{ "-H", "" },
{ "-idirafter", "" },