forked from Imagelibrary/binutils-gdb
PR binutils/13710
* defparse.y (keyword_as_name): Disable LIBRARY keyword. * doc/binutils.texi: Document LIBRARY exception. PR binutils/13710 * deffilep.y (keyword_as_name): Disable LIBRARY keyword.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2012-02-24 Kai Tietz <ktietz@redhat.com>
|
||||
|
||||
PR binutils/13710
|
||||
* deffilep.y (keyword_as_name): Disable LIBRARY
|
||||
keyword.
|
||||
|
||||
2012-02-22 Alan Modra <amodra@gmail.com>
|
||||
|
||||
PR ld/13683
|
||||
|
||||
@@ -249,7 +249,12 @@ keyword_as_name: BASE { $$ = "BASE"; }
|
||||
| EXPORTS { $$ = "EXPORTS"; }
|
||||
| HEAPSIZE { $$ = "HEAPSIZE"; }
|
||||
| IMPORTS { $$ = "IMPORTS"; }
|
||||
| LIBRARY { $$ = "LIBRARY"; }
|
||||
/* Disable LIBRARY keyword as valid symbol-name. This is necessary
|
||||
for libtool, which places this command after EXPORTS command.
|
||||
This behavior is illegal by specification, but sadly required by
|
||||
by compatibility reasons.
|
||||
See PR binutils/13710
|
||||
| LIBRARY { $$ = "LIBRARY"; } */
|
||||
| NAME { $$ = "NAME"; }
|
||||
| NONAMEU { $$ = "NONAME"; }
|
||||
| NONAMEL { $$ = "noname"; }
|
||||
|
||||
Reference in New Issue
Block a user