From: Alan Modra Date: Sat, 18 Aug 2007 01:36:57 +0000 (+0000) Subject: * ld.texinfo (Input Section Basics): Correct EXCLUDE_FILE example. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b4346c091b1deec0aabbefc2b9fcbd519c26bdea;p=binutils-gdb.git * ld.texinfo (Input Section Basics): Correct EXCLUDE_FILE example. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index 1f89ed2d59d..537766c0122 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2007-08-18 Alan Modra + + * ld.texinfo (Input Section Basics): Correct EXCLUDE_FILE example. + 2007-08-17 Jakub Jelinek * configure.host: Handle sparcv*-*-linux-* the same as diff --git a/ld/ld.texinfo b/ld/ld.texinfo index f27c08c8c60..4f4cb0bae95 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.