diff options
author | Alan Modra <amodra@gmail.com> | 2007-08-18 01:36:57 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2007-08-18 01:36:57 +0000 |
commit | b4346c091b1deec0aabbefc2b9fcbd519c26bdea (patch) | |
tree | fcba94a45c93dc8685c577e65726a9b622939ec3 /ld/ld.texinfo | |
parent | b9c34f673c60f5cea06adef594fb3a8967d50498 (diff) | |
download | gdb-b4346c091b1deec0aabbefc2b9fcbd519c26bdea.zip gdb-b4346c091b1deec0aabbefc2b9fcbd519c26bdea.tar.gz gdb-b4346c091b1deec0aabbefc2b9fcbd519c26bdea.tar.bz2 |
* ld.texinfo (Input Section Basics): Correct EXCLUDE_FILE example.
Diffstat (limited to 'ld/ld.texinfo')
-rw-r--r-- | ld/ld.texinfo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/ld.texinfo b/ld/ld.texinfo index f27c08c..4f4cb0b 100644 --- a/ld/ld.texinfo +++ b/ld/ld.texinfo @@ -3327,7 +3327,7 @@ of files from matching the file name wildcard, EXCLUDE_FILE may be used to match all files except the ones specified in the EXCLUDE_FILE list. For example: @smallexample -(*(EXCLUDE_FILE (*crtend.o *otherfile.o) .ctors)) +*(EXCLUDE_FILE (*crtend.o *otherfile.o) .ctors) @end smallexample will cause all .ctors sections from all files except @file{crtend.o} and @file{otherfile.o} to be included. |