diff options
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/ld.texinfo | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 1f89ed2..537766c 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -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 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. |