]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* as.c (show_usage): Document "@FILE".
authorMark Mitchell <mark@codesourcery.com>
Sun, 30 Oct 2005 18:08:52 +0000 (18:08 +0000)
committerMark Mitchell <mark@codesourcery.com>
Sun, 30 Oct 2005 18:08:52 +0000 (18:08 +0000)
* gprof.c (usage): Document "@FILE".

* lexsup.c (help): Document "@FILE".

gas/ChangeLog
gas/as.c
gprof/ChangeLog
gprof/gprof.c
ld/ChangeLog
ld/lexsup.c

index c0af442ea612b5840756b6bba2d1e06da411261e..9ea3a40307e1ffa6c9c84b7972452529c001fc3a 100644 (file)
@@ -1,3 +1,7 @@
+2005-10-30  Mark Mitchell  <mark@codesourcery.com>
+
+       * as.c (show_usage): Document "@FILE".
+
 2005-10-30  H.J. Lu  <hongjiu.lu@intel.com>
 
        * Makefile.am (OBJ_FORMATS): Remove vms.
index 10e20e3995c25656915494b0d77dbfe88abe10c1..16711b1f819682449ace023a3e2c6a6c4ea9bbdd 100644 (file)
--- a/gas/as.c
+++ b/gas/as.c
@@ -346,6 +346,8 @@ Options:\n\
   fprintf (stream, _("\
   --listing-cont-lines    set the maximum number of continuation lines used\n\
                           for the output data column of the listing\n"));
+  fprintf (stream, _("\
+  @FILE                   read options from FILE\n")); 
 
   md_show_usage (stream);
 
index f6544de320a966c530ff6dc8a8efcda413db99c1..d5a5f368deb928adb39e41a04b3bf87f8c456d70 100644 (file)
@@ -1,6 +1,6 @@
-2005-10-25  Alan Modra  <amodra@bigpond.net.au>
+2005-10-30  Mark Mitchell  <mark@codesourcery.com>
 
-       * po/gprof.pot: Regenerate.
+       * gprof.c (usage): Document "@FILE".
 
 2005-09-30  Nick Clifton  <nickc@redhat.com>
 
index 2ac43408eeea35ed6392f5f662c4446860d4e377..dc6b618fdfd437155a7f742b8b2c07c84d9709c0 100644 (file)
@@ -167,7 +167,7 @@ Usage: %s [-[abcDhilLsTvwxyz]] [-[ACeEfFJnNOpPqQZ][name]] [-I dirs]\n\
        [--no-static] [--print-path] [--separate-files]\n\
        [--static-call-graph] [--sum] [--table-length=len] [--traditional]\n\
        [--version] [--width=n] [--ignore-non-functions]\n\
-       [--demangle[=STYLE]] [--no-demangle]\n\
+       [--demangle[=STYLE]] [--no-demangle] [@FILE]\n\
        [image-file] [profile-file...]\n"),
           whoami);
   if (status == 0)
index dce2bd1e34fce400c11bba4b67d5374737e5ca8b..e8861458159198abdf011c2ce2398f072cd841e2 100644 (file)
@@ -1,3 +1,7 @@
+2005-10-30  Mark Mitchell  <mark@codesourcery.com>
+
+       * lexsup.c (help): Document "@FILE".
+
 2005-10-30  H.J. Lu  <hongjiu.lu@intel.com>
 
        * Makefile.am: Run "make dep-am".
index f5ee817c6dffd962ed817bc19edb8a4b2ac63f72..c2bef1dd4829b381c148ffda12f40206e4fe0c94 100644 (file)
@@ -1442,6 +1442,7 @@ help (void)
 {
   unsigned i;
   const char **targets, **pp;
+  int len;
 
   printf (_("Usage: %s [options] file...\n"), program_name);
 
@@ -1451,7 +1452,6 @@ help (void)
       if (ld_options[i].doc != NULL)
        {
          bfd_boolean comma;
-         int len;
          unsigned j;
 
          printf ("  ");
@@ -1524,6 +1524,10 @@ help (void)
          printf ("%s\n", _(ld_options[i].doc));
        }
     }
+  printf (_("  @FILE"));
+  for (len = strlen ("  @FILE"); len < 30; len++)
+    putchar (' ');
+  printf (_("Read options from FILE\n"));
 
   /* Note: Various tools (such as libtool) depend upon the
      format of the listings below - do not change them.  */