diff options
Diffstat (limited to 'gcc/doc/invoke.texi')
-rw-r--r-- | gcc/doc/invoke.texi | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index ff5c7925491..81bfa4a50ef 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -1361,16 +1361,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 |