* ld.texinfo (Input Section Basics): Correct EXCLUDE_FILE example.

This commit is contained in:
Alan Modra 2007-08-18 01:36:57 +00:00
parent b9c34f673c
commit b4346c091b
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-08-18 Alan Modra <amodra@bigpond.net.au>
* ld.texinfo (Input Section Basics): Correct EXCLUDE_FILE example.
2007-08-17 Jakub Jelinek <jakub@redhat.com>
* configure.host: Handle sparcv*-*-linux-* the same as

View File

@ -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.