From Craig Silverstein: preliminary support for OPTION in linker script.

This commit is contained in:
Ian Lance Taylor
2007-10-26 22:16:06 +00:00
parent df2a60d01d
commit 195e7dc6c1
3 changed files with 23 additions and 0 deletions

View File

@@ -151,6 +151,13 @@
%token TRUNCATE
%token VERSIONK /* VERSION */
/* Keywords, part 2. These are keywords that are unique to gold,
and not present in the old GNU linker. As before, unless the
comments say otherwise, the keyword is recognized as the token
name in upper case. */
%token OPTION
%%
file_list:
@@ -164,6 +171,8 @@ file_cmd:
{ script_start_group(closure); }
'(' input_list ')'
{ script_end_group(closure); }
| OPTION '(' STRING ')'
{ script_parse_option(closure, $3); }
;
input_list: