2 Copyright 1991, 1992, 1993, 1994, 1995, 1997, 2000, 2003, 2005, 2006,
3 2007, 2012 Free Software Foundation, Inc.
5 This file is part of the GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
27 /* Codes used for the long options with no short synonyms. 150 isn't
28 special; it's just an arbitrary non-ASCII char value. */
36 OPTION_DYNAMIC_LINKER
,
40 OPTION_EMBEDDED_RELOCS
,
41 OPTION_EXPORT_DYNAMIC
,
42 OPTION_NO_EXPORT_DYNAMIC
,
47 OPTION_NO_KEEP_MEMORY
,
48 OPTION_NO_WARN_MISMATCH
,
49 OPTION_NO_WARN_SEARCH_MISMATCH
,
50 OPTION_NOINHIBIT_EXEC
,
52 OPTION_NO_WHOLE_ARCHIVE
,
56 OPTION_RETAIN_SYMBOLS_FILE
,
65 OPTION_SYMBOLIC_FUNCTIONS
,
71 OPTION_TRODATA_SEGMENT
,
72 OPTION_TLDATA_SEGMENT
,
73 OPTION_TRADITIONAL_FORMAT
,
77 OPTION_VERSION_SCRIPT
,
78 OPTION_VERSION_EXPORTS_SECTION
,
80 OPTION_DYNAMIC_LIST_CPP_NEW
,
81 OPTION_DYNAMIC_LIST_CPP_TYPEINFO
,
82 OPTION_DYNAMIC_LIST_DATA
,
84 OPTION_WARN_CONSTRUCTORS
,
87 OPTION_WARN_MULTIPLE_GP
,
89 OPTION_WARN_SECTION_ALIGN
,
90 OPTION_SPLIT_BY_RELOC
,
91 OPTION_SPLIT_BY_FILE
,
93 OPTION_ADD_DT_NEEDED_FOR_DYNAMIC
,
94 OPTION_NO_ADD_DT_NEEDED_FOR_DYNAMIC
,
95 OPTION_ADD_DT_NEEDED_FOR_REGULAR
,
96 OPTION_NO_ADD_DT_NEEDED_FOR_REGULAR
,
98 OPTION_FORCE_EXE_SUFFIX
,
100 OPTION_NO_GC_SECTIONS
,
101 OPTION_PRINT_GC_SECTIONS
,
102 OPTION_NO_PRINT_GC_SECTIONS
,
104 OPTION_CHECK_SECTIONS
,
105 OPTION_NO_CHECK_SECTIONS
,
109 OPTION_SECTION_START
,
112 OPTION_ALLOW_SHLIB_UNDEFINED
,
113 OPTION_NO_ALLOW_SHLIB_UNDEFINED
,
114 OPTION_ALLOW_MULTIPLE_DEFINITION
,
115 OPTION_NO_UNDEFINED_VERSION
,
116 OPTION_DEFAULT_SYMVER
,
117 OPTION_DEFAULT_IMPORTED_SYMVER
,
119 OPTION_SPARE_DYNAMIC_TAGS
,
120 OPTION_NO_DEFINE_COMMON
,
123 OPTION_STRIP_DISCARDED
,
124 OPTION_NO_STRIP_DISCARDED
,
125 OPTION_ACCEPT_UNKNOWN_INPUT_ARCH
,
126 OPTION_NO_ACCEPT_UNKNOWN_INPUT_ARCH
,
128 OPTION_UNRESOLVED_SYMBOLS
,
129 OPTION_WARN_UNRESOLVED_SYMBOLS
,
130 OPTION_ERROR_UNRESOLVED_SYMBOLS
,
131 OPTION_WARN_SHARED_TEXTREL
,
132 OPTION_WARN_ALTERNATE_EM
,
133 OPTION_REDUCE_MEMORY_OVERHEADS
,
134 #ifdef ENABLE_PLUGINS
137 #endif /* ENABLE_PLUGINS */
138 OPTION_DEFAULT_SCRIPT
,
139 OPTION_PRINT_OUTPUT_FORMAT
,
140 OPTION_IGNORE_UNRESOLVED_SYMBOL
,
143 /* The initial parser states. */
144 typedef enum input_enum
{
145 input_selected
, /* We've set the initial state. */
148 input_version_script
,
153 extern input_type parser_input
;
155 extern unsigned int lineno
;
156 extern const char *lex_string
;
159 extern int yylex (void);
160 extern void lex_push_file (FILE *, const char *, unsigned int);
161 extern void lex_redirect (const char *, const char *, unsigned int);
162 extern void ldlex_script (void);
163 extern void ldlex_mri_script (void);
164 extern void ldlex_version_script (void);
165 extern void ldlex_version_file (void);
166 extern void ldlex_defsym (void);
167 extern void ldlex_expression (void);
168 extern void ldlex_both (void);
169 extern void ldlex_command (void);
170 extern void ldlex_popstate (void);
171 extern const char* ldlex_filename (void);
174 extern int lex_input (void);
175 extern void lex_unput (int);
177 extern int yywrap (void);
179 extern void parse_args (unsigned, char **);