OSDN Git Service

* jvspec.c (lang_specific_driver): Recognize --help.
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 Jun 1999 11:34:35 +0000 (11:34 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 Jun 1999 11:34:35 +0000 (11:34 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27814 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/java/ChangeLog
gcc/java/jvspec.c

index 8401611..0c14d37 100644 (file)
@@ -1,3 +1,7 @@
+1999-06-28  Tom Tromey  <tromey@cygnus.com>
+
+       * jvspec.c (lang_specific_driver): Recognize --help.
+
 Fri Jun 25 13:35:19 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
 
        * parse.y (resolve_package): Fixed bogus return statement.
index 815ff3f..eba801c 100644 (file)
@@ -223,6 +223,8 @@ lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
              main_class_name = argv[i] + 7;
              added--;
            }
+         else if (strcmp (argv[i], "-fhelp") == 0)
+           will_link = 0;
          else if (strcmp (argv[i], "-v") == 0)
            {
              saw_verbose_flag = 1;