diff options
author | Gerald Pfeifer <gerald@pfeifer.com> | 2011-01-06 19:37:01 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2011-01-06 19:37:01 +0000 |
commit | c73f67c50ef76e2b8b5797adf6e61ceb3ec9febd (patch) | |
tree | 193f6f443331641bedec35405590ba643de8aac6 /gcc | |
parent | bc4c6f9c3a41220d32278892f56b045023eea011 (diff) | |
download | gcc-c73f67c50ef76e2b8b5797adf6e61ceb3ec9febd.zip gcc-c73f67c50ef76e2b8b5797adf6e61ceb3ec9febd.tar.gz gcc-c73f67c50ef76e2b8b5797adf6e61ceb3ec9febd.tar.bz2 |
invoke.texi (Overall Options): Improve wording and markup of the description of -wrapper.
* doc/invoke.texi (Overall Options): Improve wording and markup
of the description of -wrapper.
From-SVN: r168552
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 11 |
2 files changed, 11 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dd0ee97..2a8cef0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-01-06 Gerald Pfeifer <gerald@pfeifer.com> + + * doc/invoke.texi (Overall Options): Improve wording and markup + of the description of -wrapper. + 2011-01-06 Joseph Myers <joseph@codesourcery.com> * config/sol2.opt (G, YP,, Ym,, compat-bsd, pthread, pthreads, diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 03d5d3d..8d67e96 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -1360,16 +1360,17 @@ Display the version number and copyrights of the invoked GCC@. @item -wrapper @opindex wrapper -Invoke all subcommands under a wrapper program. It takes a single -comma separated list as an argument, which will be used to invoke -the wrapper: +Invoke all subcommands under a wrapper program. The name of the +wrapper program and its parameters are passed as a comma separated +list. @smallexample gcc -c t.c -wrapper gdb,--args @end smallexample -This will invoke all subprograms of gcc under "gdb --args", -thus cc1 invocation will be "gdb --args cc1 ...". +This will invoke all subprograms of @command{gcc} under +@samp{gdb --args}, thus the invocation of @command{cc1} will be +@samp{gdb --args cc1 @dots{}}. @item -fplugin=@var{name}.so Load the plugin code in file @var{name}.so, assumed to be a |