]>
Commit | Line | Data |
---|---|---|
bae7f79e ILT |
1 | // options.h -- handle command line options for gold -*- C++ -*- |
2 | ||
dde3f402 | 3 | // Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
6cb15b7f ILT |
4 | // Written by Ian Lance Taylor <[email protected]>. |
5 | ||
6 | // This file is part of gold. | |
7 | ||
8 | // This program is free software; you can redistribute it and/or modify | |
9 | // it under the terms of the GNU General Public License as published by | |
10 | // the Free Software Foundation; either version 3 of the License, or | |
11 | // (at your option) any later version. | |
12 | ||
13 | // This program is distributed in the hope that it will be useful, | |
14 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | // GNU General Public License for more details. | |
17 | ||
18 | // You should have received a copy of the GNU General Public License | |
19 | // along with this program; if not, write to the Free Software | |
20 | // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, | |
21 | // MA 02110-1301, USA. | |
22 | ||
bae7f79e | 23 | // General_options (from Command_line::options()) |
ee1fe73e | 24 | // All the options (a.k.a. command-line flags) |
bae7f79e ILT |
25 | // Input_argument (from Command_line::inputs()) |
26 | // The list of input files, including -l options. | |
ee1fe73e ILT |
27 | // Command_line |
28 | // Everything we get from the command line -- the General_options | |
29 | // plus the Input_arguments. | |
30 | // | |
31 | // There are also some smaller classes, such as | |
32 | // Position_dependent_options which hold a subset of General_options | |
33 | // that change as options are parsed (as opposed to the usual behavior | |
34 | // of the last instance of that option specified on the commandline wins). | |
bae7f79e ILT |
35 | |
36 | #ifndef GOLD_OPTIONS_H | |
37 | #define GOLD_OPTIONS_H | |
38 | ||
ca3a67a5 | 39 | #include <cstdlib> |
cbb93e63 | 40 | #include <cstring> |
bae7f79e | 41 | #include <list> |
a192ba05 | 42 | #include <map> |
61ba1cf9 | 43 | #include <string> |
92e059d8 | 44 | #include <vector> |
bae7f79e | 45 | |
0daa6f62 | 46 | #include "elfcpp.h" |
3c2fafa5 ILT |
47 | #include "script.h" |
48 | ||
bae7f79e ILT |
49 | namespace gold |
50 | { | |
51 | ||
52 | class Command_line; | |
ee1fe73e ILT |
53 | class General_options; |
54 | class Search_directory; | |
ead1e424 | 55 | class Input_file_group; |
3c2fafa5 | 56 | class Position_dependent_options; |
0daa6f62 | 57 | class Target; |
89fc3421 | 58 | class Plugin_manager; |
bae7f79e | 59 | |
266d0a74 ILT |
60 | // Incremental build action for a specific file, as selected by the user. |
61 | ||
62 | enum Incremental_disposition | |
63 | { | |
64 | // Determine the status from the timestamp (default). | |
65 | INCREMENTAL_CHECK, | |
66 | // Assume the file changed from the previous build. | |
67 | INCREMENTAL_CHANGED, | |
68 | // Assume the file didn't change from the previous build. | |
69 | INCREMENTAL_UNCHANGED | |
70 | }; | |
71 | ||
ee1fe73e ILT |
72 | // The nested namespace is to contain all the global variables and |
73 | // structs that need to be defined in the .h file, but do not need to | |
74 | // be used outside this class. | |
c7912668 ILT |
75 | namespace options |
76 | { | |
ee1fe73e | 77 | typedef std::vector<Search_directory> Dir_list; |
c5818ff1 | 78 | typedef Unordered_set<std::string> String_set; |
ee1fe73e ILT |
79 | |
80 | // These routines convert from a string option to various types. | |
81 | // Each gives a fatal error if it cannot parse the argument. | |
82 | ||
83 | extern void | |
84 | parse_bool(const char* option_name, const char* arg, bool* retval); | |
85 | ||
c0a62865 DK |
86 | extern void |
87 | parse_int(const char* option_name, const char* arg, int* retval); | |
88 | ||
ee1fe73e ILT |
89 | extern void |
90 | parse_uint(const char* option_name, const char* arg, int* retval); | |
91 | ||
92 | extern void | |
c18476e7 ILT |
93 | parse_uint64(const char* option_name, const char* arg, uint64_t* retval); |
94 | ||
95 | extern void | |
96 | parse_double(const char* option_name, const char* arg, double* retval); | |
ee1fe73e ILT |
97 | |
98 | extern void | |
99 | parse_string(const char* option_name, const char* arg, const char** retval); | |
100 | ||
086a1841 ILT |
101 | extern void |
102 | parse_optional_string(const char* option_name, const char* arg, | |
103 | const char** retval); | |
104 | ||
ee1fe73e ILT |
105 | extern void |
106 | parse_dirlist(const char* option_name, const char* arg, Dir_list* retval); | |
107 | ||
c5818ff1 CC |
108 | extern void |
109 | parse_set(const char* option_name, const char* arg, String_set* retval); | |
110 | ||
ee1fe73e ILT |
111 | extern void |
112 | parse_choices(const char* option_name, const char* arg, const char** retval, | |
113 | const char* choices[], int num_choices); | |
114 | ||
115 | struct Struct_var; | |
116 | ||
117 | // Most options have both a shortname (one letter) and a longname. | |
118 | // This enum controls how many dashes are expected for longname access | |
119 | // -- shortnames always use one dash. Most longnames will accept | |
120 | // either one dash or two; the only difference between ONE_DASH and | |
121 | // TWO_DASHES is how we print the option in --help. However, some | |
122 | // longnames require two dashes, and some require only one. The | |
123 | // special value DASH_Z means that the option is preceded by "-z". | |
124 | enum Dashes | |
125 | { | |
126 | ONE_DASH, TWO_DASHES, EXACTLY_ONE_DASH, EXACTLY_TWO_DASHES, DASH_Z | |
127 | }; | |
128 | ||
129 | // LONGNAME is the long-name of the option with dashes converted to | |
130 | // underscores, or else the short-name if the option has no long-name. | |
131 | // It is never the empty string. | |
132 | // DASHES is an instance of the Dashes enum: ONE_DASH, TWO_DASHES, etc. | |
133 | // SHORTNAME is the short-name of the option, as a char, or '\0' if the | |
134 | // option has no short-name. If the option has no long-name, you | |
135 | // should specify the short-name in *both* VARNAME and here. | |
136 | // DEFAULT_VALUE is the value of the option if not specified on the | |
137 | // commandline, as a string. | |
138 | // HELPSTRING is the descriptive text used with the option via --help | |
139 | // HELPARG is how you define the argument to the option. | |
140 | // --help output is "-shortname HELPARG, --longname HELPARG: HELPSTRING" | |
141 | // HELPARG should be NULL iff the option is a bool and takes no arg. | |
086a1841 ILT |
142 | // OPTIONAL_ARG is true if this option takes an optional argument. An |
143 | // optional argument must be specifid as --OPTION=VALUE, not | |
144 | // --OPTION VALUE. | |
ee1fe73e ILT |
145 | // READER provides parse_to_value, which is a function that will convert |
146 | // a char* argument into the proper type and store it in some variable. | |
147 | // A One_option struct initializes itself with the global list of options | |
148 | // at constructor time, so be careful making one of these. | |
149 | struct One_option | |
150 | { | |
151 | std::string longname; | |
152 | Dashes dashes; | |
153 | char shortname; | |
154 | const char* default_value; | |
155 | const char* helpstring; | |
156 | const char* helparg; | |
086a1841 | 157 | bool optional_arg; |
ee1fe73e ILT |
158 | Struct_var* reader; |
159 | ||
160 | One_option(const char* ln, Dashes d, char sn, const char* dv, | |
086a1841 | 161 | const char* hs, const char* ha, bool oa, Struct_var* r) |
ee1fe73e | 162 | : longname(ln), dashes(d), shortname(sn), default_value(dv ? dv : ""), |
086a1841 | 163 | helpstring(hs), helparg(ha), optional_arg(oa), reader(r) |
ee1fe73e ILT |
164 | { |
165 | // In longname, we convert all underscores to dashes, since GNU | |
166 | // style uses dashes in option names. longname is likely to have | |
167 | // underscores in it because it's also used to declare a C++ | |
168 | // function. | |
169 | const char* pos = strchr(this->longname.c_str(), '_'); | |
170 | for (; pos; pos = strchr(pos, '_')) | |
171 | this->longname[pos - this->longname.c_str()] = '-'; | |
172 | ||
173 | // We only register ourselves if our helpstring is not NULL. This | |
174 | // is to support the "no-VAR" boolean variables, which we | |
175 | // conditionally turn on by defining "no-VAR" help text. | |
176 | if (this->helpstring) | |
177 | this->register_option(); | |
178 | } | |
179 | ||
180 | // This option takes an argument iff helparg is not NULL. | |
181 | bool | |
182 | takes_argument() const | |
183 | { return this->helparg != NULL; } | |
184 | ||
086a1841 ILT |
185 | // Whether the argument is optional. |
186 | bool | |
187 | takes_optional_argument() const | |
188 | { return this->optional_arg; } | |
189 | ||
ee1fe73e ILT |
190 | // Register this option with the global list of options. |
191 | void | |
192 | register_option(); | |
193 | ||
194 | // Print this option to stdout (used with --help). | |
195 | void | |
196 | print() const; | |
197 | }; | |
198 | ||
199 | // All options have a Struct_##varname that inherits from this and | |
200 | // actually implements parse_to_value for that option. | |
201 | struct Struct_var | |
202 | { | |
203 | // OPTION: the name of the option as specified on the commandline, | |
204 | // including leading dashes, and any text following the option: | |
205 | // "-O", "--defsym=mysym=0x1000", etc. | |
206 | // ARG: the arg associated with this option, or NULL if the option | |
207 | // takes no argument: "2", "mysym=0x1000", etc. | |
208 | // CMDLINE: the global Command_line object. Used by DEFINE_special. | |
209 | // OPTIONS: the global General_options object. Used by DEFINE_special. | |
210 | virtual void | |
211 | parse_to_value(const char* option, const char* arg, | |
212 | Command_line* cmdline, General_options* options) = 0; | |
213 | virtual | |
214 | ~Struct_var() // To make gcc happy. | |
215 | { } | |
216 | }; | |
bae7f79e | 217 | |
ee1fe73e ILT |
218 | // This is for "special" options that aren't of any predefined type. |
219 | struct Struct_special : public Struct_var | |
220 | { | |
221 | // If you change this, change the parse-fn in DEFINE_special as well. | |
222 | typedef void (General_options::*Parse_function)(const char*, const char*, | |
223 | Command_line*); | |
224 | Struct_special(const char* varname, Dashes dashes, char shortname, | |
225 | Parse_function parse_function, | |
226 | const char* helpstring, const char* helparg) | |
086a1841 | 227 | : option(varname, dashes, shortname, "", helpstring, helparg, false, this), |
ee1fe73e ILT |
228 | parse(parse_function) |
229 | { } | |
230 | ||
2ea97941 | 231 | void parse_to_value(const char* option, const char* arg, |
ee1fe73e | 232 | Command_line* cmdline, General_options* options) |
2ea97941 | 233 | { (options->*(this->parse))(option, arg, cmdline); } |
ee1fe73e ILT |
234 | |
235 | One_option option; | |
236 | Parse_function parse; | |
237 | }; | |
238 | ||
239 | } // End namespace options. | |
240 | ||
241 | ||
242 | // These are helper macros use by DEFINE_uint64/etc below. | |
243 | // This macro is used inside the General_options_ class, so defines | |
244 | // var() and set_var() as General_options methods. Arguments as are | |
245 | // for the constructor for One_option. param_type__ is the same as | |
246 | // type__ for built-in types, and "const type__ &" otherwise. | |
247 | #define DEFINE_var(varname__, dashes__, shortname__, default_value__, \ | |
248 | default_value_as_string__, helpstring__, helparg__, \ | |
086a1841 | 249 | optional_arg__, type__, param_type__, parse_fn__) \ |
ee1fe73e ILT |
250 | public: \ |
251 | param_type__ \ | |
252 | varname__() const \ | |
253 | { return this->varname__##_.value; } \ | |
254 | \ | |
255 | bool \ | |
256 | user_set_##varname__() const \ | |
257 | { return this->varname__##_.user_set_via_option; } \ | |
258 | \ | |
2b706932 ILT |
259 | void \ |
260 | set_user_set_##varname__() \ | |
261 | { this->varname__##_.user_set_via_option = true; } \ | |
262 | \ | |
ee1fe73e ILT |
263 | private: \ |
264 | struct Struct_##varname__ : public options::Struct_var \ | |
265 | { \ | |
266 | Struct_##varname__() \ | |
267 | : option(#varname__, dashes__, shortname__, default_value_as_string__, \ | |
086a1841 | 268 | helpstring__, helparg__, optional_arg__, this), \ |
ee1fe73e ILT |
269 | user_set_via_option(false), value(default_value__) \ |
270 | { } \ | |
271 | \ | |
272 | void \ | |
273 | parse_to_value(const char* option_name, const char* arg, \ | |
274 | Command_line*, General_options*) \ | |
275 | { \ | |
276 | parse_fn__(option_name, arg, &this->value); \ | |
277 | this->user_set_via_option = true; \ | |
278 | } \ | |
279 | \ | |
280 | options::One_option option; \ | |
281 | bool user_set_via_option; \ | |
282 | type__ value; \ | |
283 | }; \ | |
284 | Struct_##varname__ varname__##_; \ | |
285 | void \ | |
286 | set_##varname__(param_type__ value) \ | |
287 | { this->varname__##_.value = value; } | |
288 | ||
289 | // These macros allow for easy addition of a new commandline option. | |
290 | ||
291 | // If no_helpstring__ is not NULL, then in addition to creating | |
d98bc257 ILT |
292 | // VARNAME, we also create an option called no-VARNAME (or, for a -z |
293 | // option, noVARNAME). | |
ee1fe73e ILT |
294 | #define DEFINE_bool(varname__, dashes__, shortname__, default_value__, \ |
295 | helpstring__, no_helpstring__) \ | |
296 | DEFINE_var(varname__, dashes__, shortname__, default_value__, \ | |
297 | default_value__ ? "true" : "false", helpstring__, NULL, \ | |
086a1841 | 298 | false, bool, bool, options::parse_bool) \ |
ee1fe73e ILT |
299 | struct Struct_no_##varname__ : public options::Struct_var \ |
300 | { \ | |
d98bc257 ILT |
301 | Struct_no_##varname__() : option((dashes__ == options::DASH_Z \ |
302 | ? "no" #varname__ \ | |
303 | : "no-" #varname__), \ | |
304 | dashes__, '\0', \ | |
ee1fe73e | 305 | default_value__ ? "false" : "true", \ |
086a1841 | 306 | no_helpstring__, NULL, false, this) \ |
ee1fe73e ILT |
307 | { } \ |
308 | \ | |
309 | void \ | |
310 | parse_to_value(const char*, const char*, \ | |
311 | Command_line*, General_options* options) \ | |
312 | { options->set_##varname__(false); } \ | |
313 | \ | |
314 | options::One_option option; \ | |
315 | }; \ | |
316 | Struct_no_##varname__ no_##varname__##_initializer_ | |
317 | ||
7c414435 DM |
318 | #define DEFINE_enable(varname__, dashes__, shortname__, default_value__, \ |
319 | helpstring__, no_helpstring__) \ | |
320 | DEFINE_var(enable_##varname__, dashes__, shortname__, default_value__, \ | |
321 | default_value__ ? "true" : "false", helpstring__, NULL, \ | |
322 | false, bool, bool, options::parse_bool) \ | |
323 | struct Struct_disable_##varname__ : public options::Struct_var \ | |
324 | { \ | |
325 | Struct_disable_##varname__() : option("disable-" #varname__, \ | |
326 | dashes__, '\0', \ | |
327 | default_value__ ? "false" : "true", \ | |
328 | no_helpstring__, NULL, false, this) \ | |
329 | { } \ | |
330 | \ | |
331 | void \ | |
332 | parse_to_value(const char*, const char*, \ | |
333 | Command_line*, General_options* options) \ | |
334 | { options->set_enable_##varname__(false); } \ | |
335 | \ | |
336 | options::One_option option; \ | |
337 | }; \ | |
338 | Struct_disable_##varname__ disable_##varname__##_initializer_ | |
339 | ||
c0a62865 DK |
340 | #define DEFINE_int(varname__, dashes__, shortname__, default_value__, \ |
341 | helpstring__, helparg__) \ | |
342 | DEFINE_var(varname__, dashes__, shortname__, default_value__, \ | |
343 | #default_value__, helpstring__, helparg__, false, \ | |
344 | int, int, options::parse_int) | |
345 | ||
ee1fe73e ILT |
346 | #define DEFINE_uint(varname__, dashes__, shortname__, default_value__, \ |
347 | helpstring__, helparg__) \ | |
348 | DEFINE_var(varname__, dashes__, shortname__, default_value__, \ | |
086a1841 | 349 | #default_value__, helpstring__, helparg__, false, \ |
ee1fe73e ILT |
350 | int, int, options::parse_uint) |
351 | ||
352 | #define DEFINE_uint64(varname__, dashes__, shortname__, default_value__, \ | |
353 | helpstring__, helparg__) \ | |
354 | DEFINE_var(varname__, dashes__, shortname__, default_value__, \ | |
086a1841 | 355 | #default_value__, helpstring__, helparg__, false, \ |
ee1fe73e ILT |
356 | uint64_t, uint64_t, options::parse_uint64) |
357 | ||
c18476e7 ILT |
358 | #define DEFINE_double(varname__, dashes__, shortname__, default_value__, \ |
359 | helpstring__, helparg__) \ | |
360 | DEFINE_var(varname__, dashes__, shortname__, default_value__, \ | |
086a1841 | 361 | #default_value__, helpstring__, helparg__, false, \ |
c18476e7 ILT |
362 | double, double, options::parse_double) |
363 | ||
ee1fe73e ILT |
364 | #define DEFINE_string(varname__, dashes__, shortname__, default_value__, \ |
365 | helpstring__, helparg__) \ | |
366 | DEFINE_var(varname__, dashes__, shortname__, default_value__, \ | |
086a1841 | 367 | default_value__, helpstring__, helparg__, false, \ |
ee1fe73e ILT |
368 | const char*, const char*, options::parse_string) |
369 | ||
370 | // This is like DEFINE_string, but we convert each occurrence to a | |
371 | // Search_directory and store it in a vector. Thus we also have the | |
372 | // add_to_VARNAME() method, to append to the vector. | |
373 | #define DEFINE_dirlist(varname__, dashes__, shortname__, \ | |
374 | helpstring__, helparg__) \ | |
375 | DEFINE_var(varname__, dashes__, shortname__, , \ | |
086a1841 | 376 | "", helpstring__, helparg__, false, options::Dir_list, \ |
ee1fe73e ILT |
377 | const options::Dir_list&, options::parse_dirlist) \ |
378 | void \ | |
379 | add_to_##varname__(const char* new_value) \ | |
380 | { options::parse_dirlist(NULL, new_value, &this->varname__##_.value); } \ | |
381 | void \ | |
382 | add_search_directory_to_##varname__(const Search_directory& dir) \ | |
383 | { this->varname__##_.value.push_back(dir); } | |
384 | ||
c5818ff1 CC |
385 | // This is like DEFINE_string, but we store a set of strings. |
386 | #define DEFINE_set(varname__, dashes__, shortname__, \ | |
387 | helpstring__, helparg__) \ | |
388 | DEFINE_var(varname__, dashes__, shortname__, , \ | |
389 | "", helpstring__, helparg__, false, options::String_set, \ | |
390 | const options::String_set&, options::parse_set) \ | |
391 | public: \ | |
392 | bool \ | |
393 | any_##varname__() const \ | |
394 | { return !this->varname__##_.value.empty(); } \ | |
f3e9c5c5 | 395 | \ |
c5818ff1 CC |
396 | bool \ |
397 | is_##varname__(const char* symbol) const \ | |
398 | { \ | |
399 | return (!this->varname__##_.value.empty() \ | |
400 | && (this->varname__##_.value.find(std::string(symbol)) \ | |
401 | != this->varname__##_.value.end())); \ | |
f3e9c5c5 ILT |
402 | } \ |
403 | \ | |
404 | options::String_set::const_iterator \ | |
405 | varname__##_begin() const \ | |
406 | { return this->varname__##_.value.begin(); } \ | |
407 | \ | |
408 | options::String_set::const_iterator \ | |
409 | varname__##_end() const \ | |
410 | { return this->varname__##_.value.end(); } | |
c5818ff1 | 411 | |
ee1fe73e ILT |
412 | // When you have a list of possible values (expressed as string) |
413 | // After helparg__ should come an initializer list, like | |
414 | // {"foo", "bar", "baz"} | |
415 | #define DEFINE_enum(varname__, dashes__, shortname__, default_value__, \ | |
416 | helpstring__, helparg__, ...) \ | |
417 | DEFINE_var(varname__, dashes__, shortname__, default_value__, \ | |
086a1841 | 418 | default_value__, helpstring__, helparg__, false, \ |
ee1fe73e ILT |
419 | const char*, const char*, parse_choices_##varname__) \ |
420 | private: \ | |
421 | static void parse_choices_##varname__(const char* option_name, \ | |
422 | const char* arg, \ | |
423 | const char** retval) { \ | |
424 | const char* choices[] = __VA_ARGS__; \ | |
425 | options::parse_choices(option_name, arg, retval, \ | |
426 | choices, sizeof(choices) / sizeof(*choices)); \ | |
427 | } | |
428 | ||
2b706932 ILT |
429 | // This is like DEFINE_bool, but VARNAME is the name of a different |
430 | // option. This option becomes an alias for that one. INVERT is true | |
431 | // if this option is an inversion of the other one. | |
432 | #define DEFINE_bool_alias(option__, varname__, dashes__, shortname__, \ | |
433 | helpstring__, no_helpstring__, invert__) \ | |
434 | private: \ | |
435 | struct Struct_##option__ : public options::Struct_var \ | |
436 | { \ | |
437 | Struct_##option__() \ | |
438 | : option(#option__, dashes__, shortname__, "", helpstring__, \ | |
439 | NULL, false, this) \ | |
440 | { } \ | |
441 | \ | |
442 | void \ | |
443 | parse_to_value(const char*, const char*, \ | |
444 | Command_line*, General_options* options) \ | |
445 | { \ | |
446 | options->set_##varname__(!invert__); \ | |
447 | options->set_user_set_##varname__(); \ | |
448 | } \ | |
449 | \ | |
450 | options::One_option option; \ | |
451 | }; \ | |
452 | Struct_##option__ option__##_; \ | |
453 | \ | |
454 | struct Struct_no_##option__ : public options::Struct_var \ | |
455 | { \ | |
456 | Struct_no_##option__() \ | |
457 | : option((dashes__ == options::DASH_Z \ | |
458 | ? "no" #option__ \ | |
459 | : "no-" #option__), \ | |
460 | dashes__, '\0', "", no_helpstring__, \ | |
461 | NULL, false, this) \ | |
462 | { } \ | |
463 | \ | |
464 | void \ | |
465 | parse_to_value(const char*, const char*, \ | |
466 | Command_line*, General_options* options) \ | |
467 | { \ | |
468 | options->set_##varname__(invert__); \ | |
469 | options->set_user_set_##varname__(); \ | |
470 | } \ | |
471 | \ | |
472 | options::One_option option; \ | |
473 | }; \ | |
474 | Struct_no_##option__ no_##option__##_initializer_ | |
475 | ||
ee1fe73e ILT |
476 | // This is used for non-standard flags. It defines no functions; it |
477 | // just calls General_options::parse_VARNAME whenever the flag is | |
478 | // seen. We declare parse_VARNAME as a static member of | |
479 | // General_options; you are responsible for defining it there. | |
480 | // helparg__ should be NULL iff this special-option is a boolean. | |
481 | #define DEFINE_special(varname__, dashes__, shortname__, \ | |
482 | helpstring__, helparg__) \ | |
483 | private: \ | |
484 | void parse_##varname__(const char* option, const char* arg, \ | |
485 | Command_line* inputs); \ | |
486 | struct Struct_##varname__ : public options::Struct_special \ | |
487 | { \ | |
488 | Struct_##varname__() \ | |
489 | : options::Struct_special(#varname__, dashes__, shortname__, \ | |
490 | &General_options::parse_##varname__, \ | |
491 | helpstring__, helparg__) \ | |
492 | { } \ | |
493 | }; \ | |
494 | Struct_##varname__ varname__##_initializer_ | |
bae7f79e | 495 | |
086a1841 ILT |
496 | // An option that takes an optional string argument. If the option is |
497 | // used with no argument, the value will be the default, and | |
498 | // user_set_via_option will be true. | |
499 | #define DEFINE_optional_string(varname__, dashes__, shortname__, \ | |
500 | default_value__, \ | |
501 | helpstring__, helparg__) \ | |
502 | DEFINE_var(varname__, dashes__, shortname__, default_value__, \ | |
503 | default_value__, helpstring__, helparg__, true, \ | |
504 | const char*, const char*, options::parse_optional_string) | |
bae7f79e | 505 | |
ad2d6943 ILT |
506 | // A directory to search. For each directory we record whether it is |
507 | // in the sysroot. We need to know this so that, if a linker script | |
508 | // is found within the sysroot, we will apply the sysroot to any files | |
509 | // named by that script. | |
510 | ||
511 | class Search_directory | |
512 | { | |
513 | public: | |
514 | // We need a default constructor because we put this in a | |
515 | // std::vector. | |
516 | Search_directory() | |
517 | : name_(NULL), put_in_sysroot_(false), is_in_sysroot_(false) | |
518 | { } | |
519 | ||
520 | // This is the usual constructor. | |
2ea97941 ILT |
521 | Search_directory(const char* name, bool put_in_sysroot) |
522 | : name_(name), put_in_sysroot_(put_in_sysroot), is_in_sysroot_(false) | |
15893b88 ILT |
523 | { |
524 | if (this->name_.empty()) | |
525 | this->name_ = "."; | |
526 | } | |
ad2d6943 ILT |
527 | |
528 | // This is called if we have a sysroot. The sysroot is prefixed to | |
529 | // any entries for which put_in_sysroot_ is true. is_in_sysroot_ is | |
530 | // set to true for any enries which are in the sysroot (this will | |
531 | // naturally include any entries for which put_in_sysroot_ is true). | |
532 | // SYSROOT is the sysroot, CANONICAL_SYSROOT is the result of | |
533 | // passing SYSROOT to lrealpath. | |
534 | void | |
535 | add_sysroot(const char* sysroot, const char* canonical_sysroot); | |
536 | ||
537 | // Get the directory name. | |
538 | const std::string& | |
539 | name() const | |
540 | { return this->name_; } | |
541 | ||
542 | // Return whether this directory is in the sysroot. | |
543 | bool | |
544 | is_in_sysroot() const | |
545 | { return this->is_in_sysroot_; } | |
546 | ||
fd9d194f ILT |
547 | // Return whether this is considered a system directory. |
548 | bool | |
549 | is_system_directory() const | |
550 | { return this->put_in_sysroot_ || this->is_in_sysroot_; } | |
551 | ||
ad2d6943 | 552 | private: |
fd9d194f | 553 | // The directory name. |
ad2d6943 | 554 | std::string name_; |
fd9d194f ILT |
555 | // True if the sysroot should be added as a prefix for this |
556 | // directory (if there is a sysroot). This is true for system | |
557 | // directories that we search by default. | |
ad2d6943 | 558 | bool put_in_sysroot_; |
fd9d194f ILT |
559 | // True if this directory is in the sysroot (if there is a sysroot). |
560 | // This is true if there is a sysroot and either 1) put_in_sysroot_ | |
561 | // is true, or 2) the directory happens to be in the sysroot based | |
562 | // on a pathname comparison. | |
ad2d6943 ILT |
563 | bool is_in_sysroot_; |
564 | }; | |
565 | ||
bae7f79e ILT |
566 | class General_options |
567 | { | |
ee1fe73e ILT |
568 | private: |
569 | // NOTE: For every option that you add here, also consider if you | |
570 | // should add it to Position_dependent_options. | |
571 | DEFINE_special(help, options::TWO_DASHES, '\0', | |
a4d4b13f | 572 | N_("Report usage information"), NULL); |
ee1fe73e | 573 | DEFINE_special(version, options::TWO_DASHES, 'v', |
a4d4b13f | 574 | N_("Report version information"), NULL); |
b5be4a7c DM |
575 | DEFINE_special(V, options::EXACTLY_ONE_DASH, '\0', |
576 | N_("Report version and target information"), NULL); | |
ee1fe73e | 577 | |
fee2edb1 ILT |
578 | // These options are sorted approximately so that for each letter in |
579 | // the alphabet, we show the option whose shortname is that letter | |
580 | // (if any) and then every longname that starts with that letter (in | |
581 | // alphabetical order). For both, lowercase sorts before uppercase. | |
582 | // The -z options come last. | |
583 | ||
7eaea549 ILT |
584 | DEFINE_bool(add_needed, options::TWO_DASHES, '\0', false, |
585 | N_("Not supported"), | |
586 | N_("Do not copy DT_NEEDED tags from shared libraries")); | |
587 | ||
9c4ae156 ILT |
588 | DEFINE_bool_alias(allow_multiple_definition, muldefs, options::TWO_DASHES, |
589 | '\0', N_("Allow multiple definitions of symbols"), | |
590 | N_("Do not allow multiple definitions"), false); | |
30bc8c46 | 591 | |
ee1fe73e | 592 | DEFINE_bool(allow_shlib_undefined, options::TWO_DASHES, '\0', false, |
a4d4b13f ILT |
593 | N_("Allow unresolved references in shared libraries"), |
594 | N_("Do not allow unresolved references in shared libraries")); | |
ee1fe73e ILT |
595 | |
596 | DEFINE_bool(as_needed, options::TWO_DASHES, '\0', false, | |
7eaea549 ILT |
597 | N_("Only set DT_NEEDED for shared libraries if used"), |
598 | N_("Always DT_NEEDED for shared libraries")); | |
ee1fe73e | 599 | |
fe35d28d ILT |
600 | DEFINE_enum(assert, options::ONE_DASH, '\0', NULL, |
601 | N_("Ignored"), N_("[ignored]"), | |
602 | {"definitions", "nodefinitions", "nosymbolic", "pure-text"}); | |
603 | ||
fee2edb1 ILT |
604 | // This should really be an "enum", but it's too easy for folks to |
605 | // forget to update the list as they add new targets. So we just | |
606 | // accept any string. We'll fail later (when the string is parsed), | |
607 | // if the target isn't actually supported. | |
608 | DEFINE_string(format, options::TWO_DASHES, 'b', "elf", | |
609 | N_("Set input format"), ("[elf,binary]")); | |
610 | ||
ee1fe73e | 611 | DEFINE_bool(Bdynamic, options::ONE_DASH, '\0', true, |
a4d4b13f | 612 | N_("-l searches for shared libraries"), NULL); |
2b706932 ILT |
613 | DEFINE_bool_alias(Bstatic, Bdynamic, options::ONE_DASH, '\0', |
614 | N_("-l does not search for shared libraries"), NULL, | |
615 | true); | |
ee1fe73e ILT |
616 | |
617 | DEFINE_bool(Bsymbolic, options::ONE_DASH, '\0', false, | |
a4d4b13f | 618 | N_("Bind defined symbols locally"), NULL); |
ee1fe73e | 619 | |
f1f70eae ILT |
620 | DEFINE_bool(Bsymbolic_functions, options::ONE_DASH, '\0', false, |
621 | N_("Bind defined function symbols locally"), NULL); | |
622 | ||
8ed814a9 ILT |
623 | DEFINE_optional_string(build_id, options::TWO_DASHES, '\0', "sha1", |
624 | N_("Generate build ID note"), | |
625 | N_("[=STYLE]")); | |
626 | ||
34810851 ILT |
627 | DEFINE_bool(check_sections, options::TWO_DASHES, '\0', true, |
628 | N_("Check segment addresses for overlaps (default)"), | |
629 | N_("Do not check segment addresses for overlaps")); | |
630 | ||
ee1fe73e ILT |
631 | #ifdef HAVE_ZLIB_H |
632 | DEFINE_enum(compress_debug_sections, options::TWO_DASHES, '\0', "none", | |
a4d4b13f ILT |
633 | N_("Compress .debug_* sections in the output file"), |
634 | ("[none,zlib]"), | |
ee1fe73e ILT |
635 | {"none", "zlib"}); |
636 | #else | |
637 | DEFINE_enum(compress_debug_sections, options::TWO_DASHES, '\0', "none", | |
a4d4b13f ILT |
638 | N_("Compress .debug_* sections in the output file"), |
639 | N_("[none]"), | |
ee1fe73e ILT |
640 | {"none"}); |
641 | #endif | |
0dfbdef4 | 642 | |
7eaea549 ILT |
643 | DEFINE_bool(copy_dt_needed_entries, options::TWO_DASHES, '\0', false, |
644 | N_("Not supported"), | |
645 | N_("Do not copy DT_NEEDED tags from shared libraries")); | |
646 | ||
dde3f402 ILT |
647 | DEFINE_bool(cref, options::TWO_DASHES, '\0', false, |
648 | N_("Output cross reference table"), | |
649 | N_("Do not output cross reference table")); | |
650 | ||
ee1fe73e | 651 | DEFINE_bool(define_common, options::TWO_DASHES, 'd', false, |
a4d4b13f ILT |
652 | N_("Define common symbols"), |
653 | N_("Do not define common symbols")); | |
ee1fe73e | 654 | DEFINE_bool(dc, options::ONE_DASH, '\0', false, |
a4d4b13f | 655 | N_("Alias for -d"), NULL); |
ee1fe73e | 656 | DEFINE_bool(dp, options::ONE_DASH, '\0', false, |
a4d4b13f | 657 | N_("Alias for -d"), NULL); |
d391083d | 658 | |
fee2edb1 | 659 | DEFINE_string(debug, options::TWO_DASHES, '\0', "", |
2285a610 ILT |
660 | N_("Turn on debugging"), |
661 | N_("[all,files,script,task][,...]")); | |
fee2edb1 | 662 | |
ee1fe73e | 663 | DEFINE_special(defsym, options::TWO_DASHES, '\0', |
a4d4b13f | 664 | N_("Define a symbol"), N_("SYMBOL=EXPRESSION")); |
a6badf5a | 665 | |
086a1841 ILT |
666 | DEFINE_optional_string(demangle, options::TWO_DASHES, '\0', NULL, |
667 | N_("Demangle C++ symbols in log messages"), | |
668 | N_("[=STYLE]")); | |
669 | ||
670 | DEFINE_bool(no_demangle, options::TWO_DASHES, '\0', false, | |
671 | N_("Do not demangle C++ symbols in log messages"), | |
672 | NULL); | |
fced7afd | 673 | |
ee1fe73e | 674 | DEFINE_bool(detect_odr_violations, options::TWO_DASHES, '\0', false, |
a4d4b13f | 675 | N_("Try to detect violations of the One Definition Rule"), |
ee1fe73e ILT |
676 | NULL); |
677 | ||
ebcc8304 ILT |
678 | DEFINE_bool(discard_all, options::TWO_DASHES, 'x', false, |
679 | N_("Delete all local symbols"), NULL); | |
bb04269c DK |
680 | DEFINE_bool(discard_locals, options::TWO_DASHES, 'X', false, |
681 | N_("Delete all temporary local symbols"), NULL); | |
682 | ||
c82fbeee CS |
683 | DEFINE_bool(dynamic_list_data, options::TWO_DASHES, '\0', false, |
684 | N_("Add data symbols to dynamic symbols"), NULL); | |
685 | ||
686 | DEFINE_bool(dynamic_list_cpp_new, options::TWO_DASHES, '\0', false, | |
687 | N_("Add C++ operator new/delete to dynamic symbols"), NULL); | |
688 | ||
689 | DEFINE_bool(dynamic_list_cpp_typeinfo, options::TWO_DASHES, '\0', false, | |
690 | N_("Add C++ typeinfo to dynamic symbols"), NULL); | |
691 | ||
692 | DEFINE_special(dynamic_list, options::TWO_DASHES, '\0', | |
693 | N_("Read a list of dynamic symbols"), N_("FILE")); | |
694 | ||
ee1fe73e | 695 | DEFINE_string(entry, options::TWO_DASHES, 'e', NULL, |
a4d4b13f | 696 | N_("Set program start address"), N_("ADDRESS")); |
ee1fe73e | 697 | |
65514900 CC |
698 | DEFINE_special(exclude_libs, options::TWO_DASHES, '\0', |
699 | N_("Exclude libraries from automatic export"), | |
700 | N_(("lib,lib ..."))); | |
701 | ||
ee1fe73e | 702 | DEFINE_bool(export_dynamic, options::TWO_DASHES, 'E', false, |
ee769c88 ILT |
703 | N_("Export all dynamic symbols"), |
704 | N_("Do not export all dynamic symbols (default)")); | |
dbe717ef | 705 | |
ee1fe73e | 706 | DEFINE_bool(eh_frame_hdr, options::TWO_DASHES, '\0', false, |
a4d4b13f | 707 | N_("Create exception frame header"), NULL); |
ee1fe73e | 708 | |
d82a5bcc ILT |
709 | DEFINE_bool(fatal_warnings, options::TWO_DASHES, '\0', false, |
710 | N_("Treat warnings as errors"), | |
711 | N_("Do not treat warnings as errors")); | |
712 | ||
c6585162 ILT |
713 | DEFINE_string(fini, options::ONE_DASH, '\0', "_fini", |
714 | N_("Call SYMBOL at unload-time"), N_("SYMBOL")); | |
715 | ||
fe35d28d ILT |
716 | DEFINE_bool(g, options::EXACTLY_ONE_DASH, '\0', false, |
717 | N_("Ignored"), NULL); | |
718 | ||
ee1fe73e | 719 | DEFINE_string(soname, options::ONE_DASH, 'h', NULL, |
a4d4b13f | 720 | N_("Set shared library name"), N_("FILENAME")); |
ee1fe73e | 721 | |
fe35d28d ILT |
722 | DEFINE_bool(i, options::EXACTLY_ONE_DASH, '\0', false, |
723 | N_("Ignored"), NULL); | |
724 | ||
c18476e7 ILT |
725 | DEFINE_double(hash_bucket_empty_fraction, options::TWO_DASHES, '\0', 0.0, |
726 | N_("Min fraction of empty buckets in dynamic hash"), | |
727 | N_("FRACTION")); | |
728 | ||
13670ee6 | 729 | DEFINE_enum(hash_style, options::TWO_DASHES, '\0', "sysv", |
a4d4b13f | 730 | N_("Dynamic hash style"), N_("[sysv,gnu,both]"), |
13670ee6 ILT |
731 | {"sysv", "gnu", "both"}); |
732 | ||
ee1fe73e | 733 | DEFINE_string(dynamic_linker, options::TWO_DASHES, 'I', NULL, |
a4d4b13f | 734 | N_("Set dynamic linker path"), N_("PROGRAM")); |
ee1fe73e | 735 | |
266d0a74 ILT |
736 | DEFINE_bool(incremental, options::TWO_DASHES, '\0', false, |
737 | N_("Work in progress; do not use"), | |
738 | N_("Do a full build")); | |
739 | ||
740 | DEFINE_special(incremental_changed, options::TWO_DASHES, '\0', | |
741 | N_("Assume files changed"), NULL); | |
742 | ||
743 | DEFINE_special(incremental_unchanged, options::TWO_DASHES, '\0', | |
744 | N_("Assume files didn't change"), NULL); | |
745 | ||
746 | DEFINE_special(incremental_unknown, options::TWO_DASHES, '\0', | |
747 | N_("Use timestamps to check files (default)"), NULL); | |
748 | ||
c6585162 ILT |
749 | DEFINE_string(init, options::ONE_DASH, '\0', "_init", |
750 | N_("Call SYMBOL at load-time"), N_("SYMBOL")); | |
751 | ||
fee2edb1 ILT |
752 | DEFINE_special(just_symbols, options::TWO_DASHES, '\0', |
753 | N_("Read only symbol values from FILE"), N_("FILE")); | |
754 | ||
2c849493 ILT |
755 | DEFINE_bool(keep_files_mapped, options::TWO_DASHES, '\0', |
756 | sizeof(void*) >= 8, | |
757 | N_("Map whole files to memory (default on 64-bit hosts)"), | |
758 | N_("Map relevant file parts to memory (default on 32-bit " | |
759 | "hosts)")); | |
760 | ||
ee1fe73e | 761 | DEFINE_special(library, options::TWO_DASHES, 'l', |
a4d4b13f | 762 | N_("Search for library LIBNAME"), N_("LIBNAME")); |
bae7f79e | 763 | |
ee1fe73e | 764 | DEFINE_dirlist(library_path, options::TWO_DASHES, 'L', |
a4d4b13f | 765 | N_("Add directory to search path"), N_("DIR")); |
ee1fe73e ILT |
766 | |
767 | DEFINE_string(m, options::EXACTLY_ONE_DASH, 'm', "", | |
a4d4b13f | 768 | N_("Ignored for compatibility"), N_("EMULATION")); |
ee1fe73e | 769 | |
7d9e3d98 ILT |
770 | DEFINE_bool(print_map, options::TWO_DASHES, 'M', false, |
771 | N_("Write map file on standard output"), NULL); | |
772 | DEFINE_string(Map, options::ONE_DASH, '\0', NULL, N_("Write map file"), | |
773 | N_("MAPFILENAME")); | |
774 | ||
af6156ef ILT |
775 | DEFINE_bool(nmagic, options::TWO_DASHES, 'n', false, |
776 | N_("Do not page align data"), NULL); | |
777 | DEFINE_bool(omagic, options::EXACTLY_TWO_DASHES, 'N', false, | |
778 | N_("Do not page align data, do not make text readonly"), | |
779 | N_("Page align data, make text readonly")); | |
780 | ||
7c414435 DM |
781 | DEFINE_enable(new_dtags, options::EXACTLY_TWO_DASHES, '\0', false, |
782 | N_("Enable use of DT_RUNPATH and DT_FLAGS"), | |
783 | N_("Disable use of DT_RUNPATH and DT_FLAGS")); | |
784 | ||
cdb0b8f5 ILT |
785 | DEFINE_bool(noinhibit_exec, options::TWO_DASHES, '\0', false, |
786 | N_("Create an output file even if errors occur"), NULL); | |
787 | ||
f3e9c5c5 ILT |
788 | DEFINE_bool_alias(no_undefined, defs, options::TWO_DASHES, '\0', |
789 | N_("Report undefined symbols (even with --shared)"), | |
790 | NULL, false); | |
791 | ||
ee1fe73e | 792 | DEFINE_string(output, options::TWO_DASHES, 'o', "a.out", |
a4d4b13f | 793 | N_("Set output file name"), N_("FILE")); |
ee1fe73e ILT |
794 | |
795 | DEFINE_uint(optimize, options::EXACTLY_ONE_DASH, 'O', 0, | |
a4d4b13f | 796 | N_("Optimize output file size"), N_("LEVEL")); |
ee1fe73e | 797 | |
a4d4b13f ILT |
798 | DEFINE_string(oformat, options::EXACTLY_TWO_DASHES, '\0', "elf", |
799 | N_("Set output format"), N_("[binary]")); | |
ee1fe73e | 800 | |
374ad285 ILT |
801 | DEFINE_bool(pie, options::ONE_DASH, '\0', false, |
802 | N_("Create a position independent executable"), NULL); | |
803 | DEFINE_bool_alias(pic_executable, pie, options::TWO_DASHES, '\0', | |
804 | N_("Create a position independent executable"), NULL, | |
805 | false); | |
806 | ||
89fc3421 CC |
807 | #ifdef ENABLE_PLUGINS |
808 | DEFINE_special(plugin, options::TWO_DASHES, '\0', | |
4674ecfc CC |
809 | N_("Load a plugin library"), N_("PLUGIN")); |
810 | DEFINE_special(plugin_opt, options::TWO_DASHES, '\0', | |
811 | N_("Pass an option to the plugin"), N_("OPTION")); | |
89fc3421 CC |
812 | #endif |
813 | ||
ac45a351 CC |
814 | DEFINE_bool(preread_archive_symbols, options::TWO_DASHES, '\0', false, |
815 | N_("Preread archive symbols when multi-threaded"), NULL); | |
89fc3421 | 816 | |
92de84a6 ILT |
817 | DEFINE_string(print_symbol_counts, options::TWO_DASHES, '\0', NULL, |
818 | N_("Print symbols defined and used for each input"), | |
819 | N_("FILENAME")); | |
820 | ||
b5be4a7c DM |
821 | DEFINE_bool(Qy, options::EXACTLY_ONE_DASH, '\0', false, |
822 | N_("Ignored for SVR4 compatibility"), NULL); | |
823 | ||
ee1fe73e | 824 | DEFINE_bool(emit_relocs, options::TWO_DASHES, 'q', false, |
a4d4b13f | 825 | N_("Generate relocations in output"), NULL); |
ee1fe73e ILT |
826 | |
827 | DEFINE_bool(relocatable, options::EXACTLY_ONE_DASH, 'r', false, | |
a4d4b13f | 828 | N_("Generate relocatable output"), NULL); |
ee1fe73e | 829 | |
706e1f5e ILT |
830 | DEFINE_bool(relax, options::TWO_DASHES, '\0', false, |
831 | N_("Relax branches on certain targets"), NULL); | |
832 | ||
719328e1 ILT |
833 | DEFINE_string(retain_symbols_file, options::TWO_DASHES, '\0', NULL, |
834 | N_("keep only symbols listed in this file"), N_("FILE")); | |
8c604651 | 835 | |
ee1fe73e ILT |
836 | // -R really means -rpath, but can mean --just-symbols for |
837 | // compatibility with GNU ld. -rpath is always -rpath, so we list | |
838 | // it separately. | |
839 | DEFINE_special(R, options::EXACTLY_ONE_DASH, 'R', | |
a4d4b13f | 840 | N_("Add DIR to runtime search path"), N_("DIR")); |
ee1fe73e ILT |
841 | |
842 | DEFINE_dirlist(rpath, options::ONE_DASH, '\0', | |
a4d4b13f | 843 | N_("Add DIR to runtime search path"), N_("DIR")); |
ee1fe73e | 844 | |
ee1fe73e | 845 | DEFINE_dirlist(rpath_link, options::TWO_DASHES, '\0', |
a4d4b13f ILT |
846 | N_("Add DIR to link time shared library search path"), |
847 | N_("DIR")); | |
ee1fe73e | 848 | |
a192ba05 ILT |
849 | DEFINE_special(section_start, options::TWO_DASHES, '\0', |
850 | N_("Set address of section"), N_("SECTION=ADDRESS")); | |
851 | ||
fc59c572 ILT |
852 | DEFINE_optional_string(sort_common, options::TWO_DASHES, '\0', NULL, |
853 | N_("Sort common symbols by alignment"), | |
854 | N_("[={ascending,descending}]")); | |
855 | ||
ee1fe73e | 856 | DEFINE_bool(strip_all, options::TWO_DASHES, 's', false, |
a4d4b13f | 857 | N_("Strip all symbols"), NULL); |
fee2edb1 ILT |
858 | DEFINE_bool(strip_debug, options::TWO_DASHES, 'S', false, |
859 | N_("Strip debugging information"), NULL); | |
62b01cb5 ILT |
860 | DEFINE_bool(strip_debug_non_line, options::TWO_DASHES, '\0', false, |
861 | N_("Emit only debug line number information"), NULL); | |
ee1fe73e | 862 | DEFINE_bool(strip_debug_gdb, options::TWO_DASHES, '\0', false, |
a4d4b13f | 863 | N_("Strip debug symbols that are unused by gdb " |
ee1fe73e | 864 | "(at least versions <= 6.7)"), NULL); |
fd06b4aa CC |
865 | DEFINE_bool(strip_lto_sections, options::TWO_DASHES, '\0', true, |
866 | N_("Strip LTO intermediate code sections"), NULL); | |
ee1fe73e | 867 | |
c0a62865 DK |
868 | DEFINE_int(stub_group_size, options::TWO_DASHES , '\0', 1, |
869 | N_("(ARM only) The maximum distance from instructions in a group " | |
870 | "of sections to their stubs. Negative values mean stubs " | |
871 | "are always after the group. 1 means using default size.\n"), | |
872 | N_("SIZE")); | |
873 | ||
f773f3d2 CC |
874 | DEFINE_bool(no_keep_memory, options::TWO_DASHES, '\0', false, |
875 | N_("Use less memory and more disk I/O " | |
876 | "(included only for compatibility with GNU ld)"), NULL); | |
3b293544 | 877 | |
fe35d28d | 878 | DEFINE_bool(shared, options::ONE_DASH, 'G', false, |
a4d4b13f | 879 | N_("Generate shared library"), NULL); |
ee1fe73e | 880 | |
3b293544 CF |
881 | DEFINE_bool(Bshareable, options::ONE_DASH, '\0', false, |
882 | N_("Generate shared library"), NULL); | |
883 | ||
364c7fa5 ILT |
884 | DEFINE_uint(split_stack_adjust_size, options::TWO_DASHES, '\0', 0x4000, |
885 | N_("Stack size when -fsplit-stack function calls non-split"), | |
886 | N_("SIZE")); | |
887 | ||
ee1fe73e ILT |
888 | // This is not actually special in any way, but I need to give it |
889 | // a non-standard accessor-function name because 'static' is a keyword. | |
890 | DEFINE_special(static, options::ONE_DASH, '\0', | |
a4d4b13f | 891 | N_("Do not link against shared libraries"), NULL); |
ee1fe73e | 892 | |
032ce4e9 ST |
893 | DEFINE_enum(icf, options::TWO_DASHES, '\0', "none", |
894 | N_("Identical Code Folding. " | |
895 | "\'--icf=safe\' folds only ctors and dtors."), | |
896 | ("[none,all,safe]"), | |
897 | {"none", "all", "safe"}); | |
ef15dade ST |
898 | |
899 | DEFINE_uint(icf_iterations, options::TWO_DASHES , '\0', 0, | |
900 | N_("Number of iterations of ICF (default 2)"), N_("COUNT")); | |
901 | ||
902 | DEFINE_bool(print_icf_sections, options::TWO_DASHES, '\0', false, | |
903 | N_("List folded identical sections on stderr"), | |
904 | N_("Do not list folded identical sections")); | |
905 | ||
48c187ce ST |
906 | DEFINE_set(keep_unique, options::TWO_DASHES, '\0', |
907 | N_("Do not fold this symbol during ICF"), N_("SYMBOL")); | |
908 | ||
6d03d481 | 909 | DEFINE_bool(gc_sections, options::TWO_DASHES, '\0', false, |
266d0a74 | 910 | N_("Remove unused sections"), |
6d03d481 | 911 | N_("Don't remove unused sections (default)")); |
266d0a74 | 912 | |
6d03d481 | 913 | DEFINE_bool(print_gc_sections, options::TWO_DASHES, '\0', false, |
266d0a74 | 914 | N_("List removed unused sections on stderr"), |
6d03d481 ST |
915 | N_("Do not list removed unused sections")); |
916 | ||
ee1fe73e | 917 | DEFINE_bool(stats, options::TWO_DASHES, '\0', false, |
a4d4b13f | 918 | N_("Print resource usage statistics"), NULL); |
ee1fe73e ILT |
919 | |
920 | DEFINE_string(sysroot, options::TWO_DASHES, '\0', "", | |
a4d4b13f | 921 | N_("Set target system root directory"), N_("DIR")); |
ee1fe73e | 922 | |
c5818ff1 CC |
923 | DEFINE_bool(trace, options::TWO_DASHES, 't', false, |
924 | N_("Print the name of each input file"), NULL); | |
925 | ||
ee1fe73e | 926 | DEFINE_special(script, options::TWO_DASHES, 'T', |
a4d4b13f | 927 | N_("Read linker script"), N_("FILE")); |
ee1fe73e ILT |
928 | |
929 | DEFINE_bool(threads, options::TWO_DASHES, '\0', false, | |
a4d4b13f ILT |
930 | N_("Run the linker multi-threaded"), |
931 | N_("Do not run the linker multi-threaded")); | |
ee1fe73e | 932 | DEFINE_uint(thread_count, options::TWO_DASHES, '\0', 0, |
a4d4b13f | 933 | N_("Number of threads to use"), N_("COUNT")); |
ee1fe73e | 934 | DEFINE_uint(thread_count_initial, options::TWO_DASHES, '\0', 0, |
a4d4b13f | 935 | N_("Number of threads to use in initial pass"), N_("COUNT")); |
ee1fe73e | 936 | DEFINE_uint(thread_count_middle, options::TWO_DASHES, '\0', 0, |
a4d4b13f | 937 | N_("Number of threads to use in middle pass"), N_("COUNT")); |
ee1fe73e | 938 | DEFINE_uint(thread_count_final, options::TWO_DASHES, '\0', 0, |
a4d4b13f | 939 | N_("Number of threads to use in final pass"), N_("COUNT")); |
ee1fe73e | 940 | |
fee2edb1 ILT |
941 | DEFINE_uint64(Tbss, options::ONE_DASH, '\0', -1U, |
942 | N_("Set the address of the bss segment"), N_("ADDRESS")); | |
943 | DEFINE_uint64(Tdata, options::ONE_DASH, '\0', -1U, | |
944 | N_("Set the address of the data segment"), N_("ADDRESS")); | |
945 | DEFINE_uint64(Ttext, options::ONE_DASH, '\0', -1U, | |
946 | N_("Set the address of the text segment"), N_("ADDRESS")); | |
947 | ||
f3e9c5c5 ILT |
948 | DEFINE_set(undefined, options::TWO_DASHES, 'u', |
949 | N_("Create undefined reference to SYMBOL"), N_("SYMBOL")); | |
2b706932 | 950 | |
2285a610 ILT |
951 | DEFINE_bool(verbose, options::TWO_DASHES, '\0', false, |
952 | N_("Synonym for --debug=files"), NULL); | |
953 | ||
fee2edb1 ILT |
954 | DEFINE_special(version_script, options::TWO_DASHES, '\0', |
955 | N_("Read version script"), N_("FILE")); | |
956 | ||
1ae4d23b ILT |
957 | DEFINE_bool(warn_common, options::TWO_DASHES, '\0', false, |
958 | N_("Warn about duplicate common symbols"), | |
959 | N_("Do not warn about duplicate common symbols (default)")); | |
960 | ||
37a9ac43 ILT |
961 | DEFINE_bool(warn_constructors, options::TWO_DASHES, '\0', false, |
962 | N_("Ignored"), N_("Ignored")); | |
963 | ||
6eda8c29 ILT |
964 | DEFINE_bool(warn_multiple_gp, options::TWO_DASHES, '\0', false, |
965 | N_("Ignored"), NULL); | |
966 | ||
15f8229b ILT |
967 | DEFINE_bool(warn_search_mismatch, options::TWO_DASHES, '\0', true, |
968 | N_("Warn when skipping an incompatible library"), | |
969 | N_("Don't warn when skipping an incompatible library")); | |
970 | ||
b9674e17 ILT |
971 | DEFINE_bool(warn_shared_textrel, options::TWO_DASHES, '\0', false, |
972 | N_("Warn if text segment is not shareable"), | |
973 | N_("Do not warn if text segment is not shareable (default)")); | |
974 | ||
ee1fe73e | 975 | DEFINE_bool(whole_archive, options::TWO_DASHES, '\0', false, |
a4d4b13f ILT |
976 | N_("Include all archive contents"), |
977 | N_("Include only needed archive contents")); | |
ee1fe73e | 978 | |
c5818ff1 CC |
979 | DEFINE_set(wrap, options::TWO_DASHES, '\0', |
980 | N_("Use wrapper functions for SYMBOL"), N_("SYMBOL")); | |
981 | ||
982 | DEFINE_set(trace_symbol, options::TWO_DASHES, 'y', | |
983 | N_("Trace references to symbol"), N_("SYMBOL")); | |
0864d551 | 984 | |
62dfdd4d ILT |
985 | DEFINE_bool(undefined_version, options::TWO_DASHES, '\0', true, |
986 | N_("Allow unused version in script (default)"), | |
987 | N_("Do not allow unused version in script")); | |
988 | ||
706e1f5e ILT |
989 | DEFINE_string(Y, options::EXACTLY_ONE_DASH, 'Y', "", |
990 | N_("Default search path for Solaris compatibility"), | |
991 | N_("PATH")); | |
992 | ||
ee1fe73e | 993 | DEFINE_special(start_group, options::TWO_DASHES, '(', |
a4d4b13f | 994 | N_("Start a library search group"), NULL); |
ee1fe73e | 995 | DEFINE_special(end_group, options::TWO_DASHES, ')', |
a4d4b13f | 996 | N_("End a library search group"), NULL); |
ee1fe73e | 997 | |
fee2edb1 | 998 | // The -z options. |
ee1fe73e | 999 | |
d98bc257 ILT |
1000 | DEFINE_bool(combreloc, options::DASH_Z, '\0', true, |
1001 | N_("Sort dynamic relocs"), | |
1002 | N_("Do not sort dynamic relocs")); | |
fee2edb1 ILT |
1003 | DEFINE_uint64(common_page_size, options::DASH_Z, '\0', 0, |
1004 | N_("Set common page size to SIZE"), N_("SIZE")); | |
eb42429a ILT |
1005 | DEFINE_bool(defs, options::DASH_Z, '\0', false, |
1006 | N_("Report undefined symbols (even with --shared)"), | |
1007 | NULL); | |
ee1fe73e | 1008 | DEFINE_bool(execstack, options::DASH_Z, '\0', false, |
a4d4b13f | 1009 | N_("Mark output as requiring executable stack"), NULL); |
7c414435 DM |
1010 | DEFINE_bool(initfirst, options::DASH_Z, '\0', false, |
1011 | N_("Mark DSO to be initialized first at runtime"), | |
1012 | NULL); | |
1013 | DEFINE_bool(interpose, options::DASH_Z, '\0', false, | |
1014 | N_("Mark object to interpose all DSOs but executable"), | |
1015 | NULL); | |
e1c74d60 ILT |
1016 | DEFINE_bool(lazy, options::DASH_Z, '\0', false, |
1017 | N_("Mark object for lazy runtime binding (default)"), | |
1018 | NULL); | |
7c414435 DM |
1019 | DEFINE_bool(loadfltr, options::DASH_Z, '\0', false, |
1020 | N_("Mark object requiring immediate process"), | |
1021 | NULL); | |
e1c74d60 ILT |
1022 | DEFINE_uint64(max_page_size, options::DASH_Z, '\0', 0, |
1023 | N_("Set maximum page size to SIZE"), N_("SIZE")); | |
30bc8c46 ILT |
1024 | DEFINE_bool(muldefs, options::DASH_Z, '\0', false, |
1025 | N_("Allow multiple definitions of symbols"), | |
1026 | NULL); | |
1027 | // copyreloc is here in the list because there is only -z | |
1028 | // nocopyreloc, not -z copyreloc. | |
966d4097 DK |
1029 | DEFINE_bool(copyreloc, options::DASH_Z, '\0', true, |
1030 | NULL, | |
1031 | N_("Do not create copy relocs")); | |
7c414435 DM |
1032 | DEFINE_bool(nodefaultlib, options::DASH_Z, '\0', false, |
1033 | N_("Mark object not to use default search paths"), | |
1034 | NULL); | |
1035 | DEFINE_bool(nodelete, options::DASH_Z, '\0', false, | |
1036 | N_("Mark DSO non-deletable at runtime"), | |
1037 | NULL); | |
1038 | DEFINE_bool(nodlopen, options::DASH_Z, '\0', false, | |
1039 | N_("Mark DSO not available to dlopen"), | |
1040 | NULL); | |
1041 | DEFINE_bool(nodump, options::DASH_Z, '\0', false, | |
1042 | N_("Mark DSO not available to dldump"), | |
1043 | NULL); | |
e1c74d60 ILT |
1044 | DEFINE_bool(noexecstack, options::DASH_Z, '\0', false, |
1045 | N_("Mark output as not requiring executable stack"), NULL); | |
1046 | DEFINE_bool(now, options::DASH_Z, '\0', false, | |
1047 | N_("Mark object for immediate function binding"), | |
1048 | NULL); | |
7be8330a CD |
1049 | DEFINE_bool(origin, options::DASH_Z, '\0', false, |
1050 | N_("Mark DSO to indicate that needs immediate $ORIGIN " | |
1051 | "processing at runtime"), NULL); | |
e1c74d60 ILT |
1052 | DEFINE_bool(relro, options::DASH_Z, '\0', false, |
1053 | N_("Where possible mark variables read-only after relocation"), | |
1054 | N_("Don't mark variables read-only after relocation")); | |
ffeef7df ILT |
1055 | DEFINE_bool(text, options::DASH_Z, '\0', false, |
1056 | N_("Do not permit relocations in read-only segments"), | |
1057 | NULL); | |
1058 | DEFINE_bool_alias(textoff, text, options::DASH_Z, '\0', | |
1059 | N_("Permit relocations in read-only segments (default)"), | |
1060 | NULL, true); | |
bae7f79e | 1061 | |
ee1fe73e ILT |
1062 | public: |
1063 | typedef options::Dir_list Dir_list; | |
ca3a67a5 | 1064 | |
ee1fe73e | 1065 | General_options(); |
61ba1cf9 | 1066 | |
ee1fe73e ILT |
1067 | // Does post-processing on flags, making sure they all have |
1068 | // non-conflicting values. Also converts some flags from their | |
1069 | // "standard" types (string, etc), to another type (enum, DirList), | |
1070 | // which can be accessed via a separate method. Dies if it notices | |
1071 | // any problems. | |
1072 | void finalize(); | |
516cb3d0 | 1073 | |
459c9f1c ILT |
1074 | // True if we printed the version information. |
1075 | bool | |
1076 | printed_version() const | |
1077 | { return this->printed_version_; } | |
1078 | ||
ee1fe73e ILT |
1079 | // The macro defines output() (based on --output), but that's a |
1080 | // generic name. Provide this alternative name, which is clearer. | |
8851ecca | 1081 | const char* |
ee1fe73e ILT |
1082 | output_file_name() const |
1083 | { return this->output(); } | |
92e059d8 | 1084 | |
8851ecca ILT |
1085 | // This is not defined via a flag, but combines flags to say whether |
1086 | // the output is position-independent or not. | |
1087 | bool | |
1088 | output_is_position_independent() const | |
374ad285 | 1089 | { return this->shared() || this->pie(); } |
8851ecca | 1090 | |
183fd0e3 AO |
1091 | // Return true if the output is something that can be exec()ed, such |
1092 | // as a static executable, or a position-dependent or | |
1093 | // position-independent executable, but not a dynamic library or an | |
1094 | // object file. | |
1095 | bool | |
1096 | output_is_executable() const | |
374ad285 | 1097 | { return !this->shared() && !this->relocatable(); } |
183fd0e3 | 1098 | |
ee1fe73e ILT |
1099 | // This would normally be static(), and defined automatically, but |
1100 | // since static is a keyword, we need to come up with our own name. | |
bae7f79e ILT |
1101 | bool |
1102 | is_static() const | |
ee1fe73e | 1103 | { return static_; } |
756ac4a8 | 1104 | |
ee1fe73e ILT |
1105 | // In addition to getting the input and output formats as a string |
1106 | // (via format() and oformat()), we also give access as an enum. | |
1107 | enum Object_format | |
1108 | { | |
1109 | // Ordinary ELF. | |
1110 | OBJECT_FORMAT_ELF, | |
1111 | // Straight binary format. | |
1112 | OBJECT_FORMAT_BINARY | |
1113 | }; | |
fe9a4c12 | 1114 | |
e6a307ba ILT |
1115 | // Convert a string to an Object_format. Gives an error if the |
1116 | // string is not recognized. | |
1117 | static Object_format | |
1118 | string_to_object_format(const char* arg); | |
1119 | ||
ee1fe73e ILT |
1120 | // Note: these functions are not very fast. |
1121 | Object_format format_enum() const; | |
1122 | Object_format oformat_enum() const; | |
fe9a4c12 | 1123 | |
fd9d194f ILT |
1124 | // Return whether FILENAME is in a system directory. |
1125 | bool | |
1126 | is_in_system_directory(const std::string& name) const; | |
1127 | ||
8c604651 CS |
1128 | // RETURN whether SYMBOL_NAME should be kept, according to symbols_to_retain_. |
1129 | bool | |
1130 | should_retain_symbol(const char* symbol_name) const | |
1131 | { | |
1132 | if (symbols_to_retain_.empty()) // means flag wasn't specified | |
1133 | return true; | |
1134 | return symbols_to_retain_.find(symbol_name) != symbols_to_retain_.end(); | |
1135 | } | |
1136 | ||
ee1fe73e ILT |
1137 | // These are the best way to get access to the execstack state, |
1138 | // not execstack() and noexecstack() which are hard to use properly. | |
35cdfc9a ILT |
1139 | bool |
1140 | is_execstack_set() const | |
ee1fe73e | 1141 | { return this->execstack_status_ != EXECSTACK_FROM_INPUT; } |
35cdfc9a ILT |
1142 | |
1143 | bool | |
1144 | is_stack_executable() const | |
ee1fe73e | 1145 | { return this->execstack_status_ == EXECSTACK_YES; } |
c7912668 | 1146 | |
032ce4e9 ST |
1147 | bool |
1148 | icf_enabled() const | |
1149 | { return this->icf_status_ != ICF_NONE; } | |
1150 | ||
1151 | bool | |
1152 | icf_safe_folding() const | |
1153 | { return this->icf_status_ == ICF_SAFE; } | |
1154 | ||
086a1841 ILT |
1155 | // The --demangle option takes an optional string, and there is also |
1156 | // a --no-demangle option. This is the best way to decide whether | |
1157 | // to demangle or not. | |
1158 | bool | |
1159 | do_demangle() const | |
1160 | { return this->do_demangle_; } | |
1161 | ||
89fc3421 CC |
1162 | // Returns TRUE if any plugin libraries have been loaded. |
1163 | bool | |
1164 | has_plugins() const | |
1165 | { return this->plugins_ != NULL; } | |
1166 | ||
1167 | // Return a pointer to the plugin manager. | |
1168 | Plugin_manager* | |
1169 | plugins() const | |
1170 | { return this->plugins_; } | |
1171 | ||
c82fbeee CS |
1172 | // True iff SYMBOL was found in the file specified by dynamic-list. |
1173 | bool | |
1174 | in_dynamic_list(const char* symbol) const | |
1175 | { return this->dynamic_list_.version_script_info()->symbol_is_local(symbol); } | |
1176 | ||
6affe781 ILT |
1177 | // Finalize the dynamic list. |
1178 | void | |
1179 | finalize_dynamic_list() | |
1180 | { this->dynamic_list_.version_script_info()->finalize(); } | |
1181 | ||
266d0a74 ILT |
1182 | // The disposition given by the --incremental-changed, |
1183 | // --incremental-unchanged or --incremental-unknown option. The | |
1184 | // value may change as we proceed parsing the command line flags. | |
1185 | Incremental_disposition | |
1186 | incremental_disposition() const | |
1187 | { return this->incremental_disposition_; } | |
1188 | ||
65514900 CC |
1189 | // Return true if S is the name of a library excluded from automatic |
1190 | // symbol export. | |
1191 | bool | |
1192 | check_excluded_libs (const std::string &s) const; | |
1193 | ||
a192ba05 ILT |
1194 | // If an explicit start address was given for section SECNAME with |
1195 | // the --section-start option, return true and set *PADDR to the | |
1196 | // address. Otherwise return false. | |
1197 | bool | |
1198 | section_start(const char* secname, uint64_t* paddr) const; | |
1199 | ||
bae7f79e | 1200 | private: |
dbe717ef ILT |
1201 | // Don't copy this structure. |
1202 | General_options(const General_options&); | |
1203 | General_options& operator=(const General_options&); | |
1204 | ||
35cdfc9a ILT |
1205 | // Whether to mark the stack as executable. |
1206 | enum Execstack | |
1207 | { | |
1208 | // Not set on command line. | |
1209 | EXECSTACK_FROM_INPUT, | |
ee1fe73e | 1210 | // Mark the stack as executable (-z execstack). |
35cdfc9a | 1211 | EXECSTACK_YES, |
ee1fe73e | 1212 | // Mark the stack as not executable (-z noexecstack). |
35cdfc9a ILT |
1213 | EXECSTACK_NO |
1214 | }; | |
1215 | ||
032ce4e9 ST |
1216 | enum Icf_status |
1217 | { | |
1218 | // Do not fold any functions (Default or --icf=none). | |
1219 | ICF_NONE, | |
1220 | // All functions are candidates for folding. (--icf=all). | |
1221 | ICF_ALL, | |
1222 | // Only ctors and dtors are candidates for folding. (--icf=safe). | |
1223 | ICF_SAFE | |
1224 | }; | |
1225 | ||
1226 | void | |
1227 | set_icf_status(Icf_status value) | |
1228 | { this->icf_status_ = value; } | |
1229 | ||
92e059d8 | 1230 | void |
ee1fe73e | 1231 | set_execstack_status(Execstack value) |
086a1841 ILT |
1232 | { this->execstack_status_ = value; } |
1233 | ||
1234 | void | |
1235 | set_do_demangle(bool value) | |
1236 | { this->do_demangle_ = value; } | |
92e059d8 | 1237 | |
bae7f79e | 1238 | void |
45aa233b | 1239 | set_static(bool value) |
ee1fe73e | 1240 | { static_ = value; } |
652ec9bd | 1241 | |
ee1fe73e | 1242 | // These are called by finalize() to set up the search-path correctly. |
35cdfc9a | 1243 | void |
ee1fe73e ILT |
1244 | add_to_library_path_with_sysroot(const char* arg) |
1245 | { this->add_search_directory_to_library_path(Search_directory(arg, true)); } | |
c7912668 | 1246 | |
ad2d6943 ILT |
1247 | // Apply any sysroot to the directory lists. |
1248 | void | |
1249 | add_sysroot(); | |
086a1841 | 1250 | |
89fc3421 CC |
1251 | // Add a plugin and its arguments to the list of plugins. |
1252 | void | |
4674ecfc CC |
1253 | add_plugin(const char *filename); |
1254 | ||
1255 | // Add a plugin option. | |
1256 | void | |
1257 | add_plugin_option(const char* opt); | |
89fc3421 | 1258 | |
459c9f1c ILT |
1259 | // Whether we printed version information. |
1260 | bool printed_version_; | |
086a1841 ILT |
1261 | // Whether to mark the stack as executable. |
1262 | Execstack execstack_status_; | |
032ce4e9 ST |
1263 | // Whether to do code folding. |
1264 | Icf_status icf_status_; | |
086a1841 ILT |
1265 | // Whether to do a static link. |
1266 | bool static_; | |
1267 | // Whether to do demangling. | |
1268 | bool do_demangle_; | |
89fc3421 CC |
1269 | // List of plugin libraries. |
1270 | Plugin_manager* plugins_; | |
c82fbeee CS |
1271 | // The parsed output of --dynamic-list files. For convenience in |
1272 | // script.cc, we store this as a Script_options object, even though | |
1273 | // we only use a single Version_tree from it. | |
1274 | Script_options dynamic_list_; | |
266d0a74 ILT |
1275 | // The disposition given by the --incremental-changed, |
1276 | // --incremental-unchanged or --incremental-unknown option. The | |
1277 | // value may change as we proceed parsing the command line flags. | |
1278 | Incremental_disposition incremental_disposition_; | |
459c9f1c | 1279 | // Whether we have seen one of the options that require incremental |
266d0a74 ILT |
1280 | // build (--incremental-changed, --incremental-unchanged or |
1281 | // --incremental-unknown) | |
1282 | bool implicit_incremental_; | |
8c604651 | 1283 | // Libraries excluded from automatic export, via --exclude-libs. |
65514900 | 1284 | Unordered_set<std::string> excluded_libs_; |
8c604651 CS |
1285 | // List of symbol-names to keep, via -retain-symbol-info. |
1286 | Unordered_set<std::string> symbols_to_retain_; | |
a192ba05 ILT |
1287 | // Map from section name to address from --section-start. |
1288 | std::map<std::string, uint64_t> section_starts_; | |
bae7f79e ILT |
1289 | }; |
1290 | ||
ee1fe73e ILT |
1291 | // The position-dependent options. We use this to store the state of |
1292 | // the commandline at a particular point in parsing for later | |
1293 | // reference. For instance, if we see "ld --whole-archive foo.a | |
1294 | // --no-whole-archive," we want to store the whole-archive option with | |
1295 | // foo.a, so when the time comes to parse foo.a we know we should do | |
1296 | // it in whole-archive mode. We could store all of General_options, | |
1297 | // but that's big, so we just pick the subset of flags that actually | |
1298 | // change in a position-dependent way. | |
1299 | ||
1300 | #define DEFINE_posdep(varname__, type__) \ | |
1301 | public: \ | |
1302 | type__ \ | |
1303 | varname__() const \ | |
1304 | { return this->varname__##_; } \ | |
1305 | \ | |
1306 | void \ | |
1307 | set_##varname__(type__ value) \ | |
1308 | { this->varname__##_ = value; } \ | |
1309 | private: \ | |
1310 | type__ varname__##_ | |
bae7f79e ILT |
1311 | |
1312 | class Position_dependent_options | |
1313 | { | |
1314 | public: | |
ee1fe73e ILT |
1315 | Position_dependent_options(const General_options& options |
1316 | = Position_dependent_options::default_options_) | |
1317 | { copy_from_options(options); } | |
bae7f79e | 1318 | |
ee1fe73e ILT |
1319 | void copy_from_options(const General_options& options) |
1320 | { | |
1321 | this->set_as_needed(options.as_needed()); | |
1322 | this->set_Bdynamic(options.Bdynamic()); | |
1323 | this->set_format_enum(options.format_enum()); | |
1324 | this->set_whole_archive(options.whole_archive()); | |
266d0a74 | 1325 | this->set_incremental_disposition(options.incremental_disposition()); |
ee1fe73e | 1326 | } |
bc644c6c | 1327 | |
ee1fe73e ILT |
1328 | DEFINE_posdep(as_needed, bool); |
1329 | DEFINE_posdep(Bdynamic, bool); | |
1330 | DEFINE_posdep(format_enum, General_options::Object_format); | |
1331 | DEFINE_posdep(whole_archive, bool); | |
266d0a74 | 1332 | DEFINE_posdep(incremental_disposition, Incremental_disposition); |
7cc619c3 | 1333 | |
dbe717ef | 1334 | private: |
ee1fe73e ILT |
1335 | // This is a General_options with everything set to its default |
1336 | // value. A Position_dependent_options created with no argument | |
1337 | // will take its values from here. | |
1338 | static General_options default_options_; | |
bae7f79e ILT |
1339 | }; |
1340 | ||
ee1fe73e | 1341 | |
bae7f79e ILT |
1342 | // A single file or library argument from the command line. |
1343 | ||
ead1e424 | 1344 | class Input_file_argument |
bae7f79e ILT |
1345 | { |
1346 | public: | |
ae3b5189 CD |
1347 | enum Input_file_type |
1348 | { | |
1349 | // A regular file, name used as-is, not searched. | |
1350 | INPUT_FILE_TYPE_FILE, | |
1351 | // A library name. When used, "lib" will be prepended and ".so" or | |
1352 | // ".a" appended to make a filename, and that filename will be searched | |
1353 | // for using the -L paths. | |
1354 | INPUT_FILE_TYPE_LIBRARY, | |
1355 | // A regular file, name used as-is, but searched using the -L paths. | |
1356 | INPUT_FILE_TYPE_SEARCHED_FILE | |
1357 | }; | |
1358 | ||
51dee2fe | 1359 | // name: file name or library name |
ae3b5189 | 1360 | // type: the type of this input file. |
51dee2fe ILT |
1361 | // extra_search_path: an extra directory to look for the file, prior |
1362 | // to checking the normal library search path. If this is "", | |
1363 | // then no extra directory is added. | |
88dd47ac | 1364 | // just_symbols: whether this file only defines symbols. |
51dee2fe | 1365 | // options: The position dependent options at this point in the |
ad2d6943 | 1366 | // command line, such as --whole-archive. |
ead1e424 | 1367 | Input_file_argument() |
ae3b5189 CD |
1368 | : name_(), type_(INPUT_FILE_TYPE_FILE), extra_search_path_(""), |
1369 | just_symbols_(false), options_() | |
ead1e424 ILT |
1370 | { } |
1371 | ||
2ea97941 ILT |
1372 | Input_file_argument(const char* name, Input_file_type type, |
1373 | const char* extra_search_path, | |
1374 | bool just_symbols, | |
1375 | const Position_dependent_options& options) | |
1376 | : name_(name), type_(type), extra_search_path_(extra_search_path), | |
1377 | just_symbols_(just_symbols), options_(options) | |
ee1fe73e ILT |
1378 | { } |
1379 | ||
1380 | // You can also pass in a General_options instance instead of a | |
1381 | // Position_dependent_options. In that case, we extract the | |
1382 | // position-independent vars from the General_options and only store | |
1383 | // those. | |
2ea97941 ILT |
1384 | Input_file_argument(const char* name, Input_file_type type, |
1385 | const char* extra_search_path, | |
1386 | bool just_symbols, | |
1387 | const General_options& options) | |
1388 | : name_(name), type_(type), extra_search_path_(extra_search_path), | |
1389 | just_symbols_(just_symbols), options_(options) | |
bae7f79e ILT |
1390 | { } |
1391 | ||
1392 | const char* | |
1393 | name() const | |
dbe717ef | 1394 | { return this->name_.c_str(); } |
bae7f79e ILT |
1395 | |
1396 | const Position_dependent_options& | |
1397 | options() const | |
1398 | { return this->options_; } | |
1399 | ||
1400 | bool | |
1401 | is_lib() const | |
ae3b5189 CD |
1402 | { return type_ == INPUT_FILE_TYPE_LIBRARY; } |
1403 | ||
1404 | bool | |
1405 | is_searched_file() const | |
1406 | { return type_ == INPUT_FILE_TYPE_SEARCHED_FILE; } | |
bae7f79e | 1407 | |
51dee2fe ILT |
1408 | const char* |
1409 | extra_search_path() const | |
1410 | { | |
1411 | return (this->extra_search_path_.empty() | |
1412 | ? NULL | |
ee1fe73e | 1413 | : this->extra_search_path_.c_str()); |
51dee2fe ILT |
1414 | } |
1415 | ||
88dd47ac ILT |
1416 | // Return whether we should only read symbols from this file. |
1417 | bool | |
1418 | just_symbols() const | |
1419 | { return this->just_symbols_; } | |
1420 | ||
51dee2fe ILT |
1421 | // Return whether this file may require a search using the -L |
1422 | // options. | |
1423 | bool | |
1424 | may_need_search() const | |
ae3b5189 CD |
1425 | { |
1426 | return (this->is_lib() | |
1427 | || this->is_searched_file() | |
1428 | || !this->extra_search_path_.empty()); | |
1429 | } | |
51dee2fe | 1430 | |
bae7f79e | 1431 | private: |
dbe717ef ILT |
1432 | // We use std::string, not const char*, here for convenience when |
1433 | // using script files, so that we do not have to preserve the string | |
1434 | // in that case. | |
1435 | std::string name_; | |
ae3b5189 | 1436 | Input_file_type type_; |
51dee2fe | 1437 | std::string extra_search_path_; |
88dd47ac | 1438 | bool just_symbols_; |
bae7f79e ILT |
1439 | Position_dependent_options options_; |
1440 | }; | |
1441 | ||
ead1e424 ILT |
1442 | // A file or library, or a group, from the command line. |
1443 | ||
1444 | class Input_argument | |
1445 | { | |
1446 | public: | |
1447 | // Create a file or library argument. | |
2ea97941 ILT |
1448 | explicit Input_argument(Input_file_argument file) |
1449 | : is_file_(true), file_(file), group_(NULL) | |
ead1e424 ILT |
1450 | { } |
1451 | ||
1452 | // Create a group argument. | |
2ea97941 ILT |
1453 | explicit Input_argument(Input_file_group* group) |
1454 | : is_file_(false), group_(group) | |
ead1e424 ILT |
1455 | { } |
1456 | ||
1457 | // Return whether this is a file. | |
1458 | bool | |
1459 | is_file() const | |
1460 | { return this->is_file_; } | |
1461 | ||
1462 | // Return whether this is a group. | |
1463 | bool | |
1464 | is_group() const | |
1465 | { return !this->is_file_; } | |
1466 | ||
1467 | // Return the information about the file. | |
1468 | const Input_file_argument& | |
1469 | file() const | |
1470 | { | |
a3ad94ed | 1471 | gold_assert(this->is_file_); |
ead1e424 ILT |
1472 | return this->file_; |
1473 | } | |
1474 | ||
1475 | // Return the information about the group. | |
1476 | const Input_file_group* | |
1477 | group() const | |
1478 | { | |
a3ad94ed | 1479 | gold_assert(!this->is_file_); |
ead1e424 ILT |
1480 | return this->group_; |
1481 | } | |
1482 | ||
1483 | Input_file_group* | |
1484 | group() | |
1485 | { | |
a3ad94ed | 1486 | gold_assert(!this->is_file_); |
ead1e424 ILT |
1487 | return this->group_; |
1488 | } | |
1489 | ||
1490 | private: | |
1491 | bool is_file_; | |
1492 | Input_file_argument file_; | |
1493 | Input_file_group* group_; | |
1494 | }; | |
1495 | ||
072fe7ce ILT |
1496 | typedef std::vector<Input_argument> Input_argument_list; |
1497 | ||
ead1e424 ILT |
1498 | // A group from the command line. This is a set of arguments within |
1499 | // --start-group ... --end-group. | |
1500 | ||
1501 | class Input_file_group | |
92e059d8 | 1502 | { |
ead1e424 | 1503 | public: |
072fe7ce | 1504 | typedef Input_argument_list::const_iterator const_iterator; |
ead1e424 ILT |
1505 | |
1506 | Input_file_group() | |
1507 | : files_() | |
1508 | { } | |
1509 | ||
1510 | // Add a file to the end of the group. | |
1511 | void | |
1512 | add_file(const Input_file_argument& arg) | |
1513 | { this->files_.push_back(Input_argument(arg)); } | |
1514 | ||
1515 | // Iterators to iterate over the group contents. | |
1516 | ||
1517 | const_iterator | |
1518 | begin() const | |
1519 | { return this->files_.begin(); } | |
1520 | ||
1521 | const_iterator | |
1522 | end() const | |
1523 | { return this->files_.end(); } | |
1524 | ||
1525 | private: | |
072fe7ce | 1526 | Input_argument_list files_; |
92e059d8 ILT |
1527 | }; |
1528 | ||
dbe717ef ILT |
1529 | // A list of files from the command line or a script. |
1530 | ||
1531 | class Input_arguments | |
1532 | { | |
1533 | public: | |
dbe717ef ILT |
1534 | typedef Input_argument_list::const_iterator const_iterator; |
1535 | ||
1536 | Input_arguments() | |
1537 | : input_argument_list_(), in_group_(false) | |
1538 | { } | |
1539 | ||
1540 | // Add a file. | |
1541 | void | |
1542 | add_file(const Input_file_argument& arg); | |
1543 | ||
1544 | // Start a group (the --start-group option). | |
1545 | void | |
1546 | start_group(); | |
1547 | ||
1548 | // End a group (the --end-group option). | |
1549 | void | |
1550 | end_group(); | |
1551 | ||
1552 | // Return whether we are currently in a group. | |
1553 | bool | |
1554 | in_group() const | |
1555 | { return this->in_group_; } | |
1556 | ||
fe9a4c12 ILT |
1557 | // The number of entries in the list. |
1558 | int | |
1559 | size() const | |
1560 | { return this->input_argument_list_.size(); } | |
1561 | ||
dbe717ef ILT |
1562 | // Iterators to iterate over the list of input files. |
1563 | ||
1564 | const_iterator | |
1565 | begin() const | |
1566 | { return this->input_argument_list_.begin(); } | |
1567 | ||
1568 | const_iterator | |
1569 | end() const | |
1570 | { return this->input_argument_list_.end(); } | |
1571 | ||
1572 | // Return whether the list is empty. | |
1573 | bool | |
1574 | empty() const | |
1575 | { return this->input_argument_list_.empty(); } | |
1576 | ||
1577 | private: | |
1578 | Input_argument_list input_argument_list_; | |
1579 | bool in_group_; | |
1580 | }; | |
1581 | ||
ee1fe73e ILT |
1582 | |
1583 | // All the information read from the command line. These are held in | |
1584 | // three separate structs: one to hold the options (--foo), one to | |
1585 | // hold the filenames listed on the commandline, and one to hold | |
1586 | // linker script information. This third is not a subset of the other | |
1587 | // two because linker scripts can be specified either as options (via | |
1588 | // -T) or as a file. | |
bae7f79e ILT |
1589 | |
1590 | class Command_line | |
1591 | { | |
1592 | public: | |
ead1e424 ILT |
1593 | typedef Input_arguments::const_iterator const_iterator; |
1594 | ||
a5dc0706 | 1595 | Command_line(); |
bae7f79e ILT |
1596 | |
1597 | // Process the command line options. This will exit with an | |
1598 | // appropriate error message if an unrecognized option is seen. | |
1599 | void | |
ee1fe73e | 1600 | process(int argc, const char** argv); |
bae7f79e | 1601 | |
a0451b38 | 1602 | // Process one command-line option. This takes the index of argv to |
ee1fe73e ILT |
1603 | // process, and returns the index for the next option. no_more_options |
1604 | // is set to true if argv[i] is "--". | |
61ba1cf9 | 1605 | int |
ee1fe73e ILT |
1606 | process_one_option(int argc, const char** argv, int i, |
1607 | bool* no_more_options); | |
3c2fafa5 | 1608 | |
61ba1cf9 | 1609 | // Get the general options. |
bae7f79e ILT |
1610 | const General_options& |
1611 | options() const | |
1612 | { return this->options_; } | |
1613 | ||
3c2fafa5 ILT |
1614 | // Get the position dependent options. |
1615 | const Position_dependent_options& | |
1616 | position_dependent_options() const | |
1617 | { return this->position_options_; } | |
1618 | ||
a5dc0706 ILT |
1619 | // Get the linker-script options. |
1620 | Script_options& | |
e5756efb | 1621 | script_options() |
a5dc0706 | 1622 | { return this->script_options_; } |
e5756efb | 1623 | |
6affe781 | 1624 | // Finalize the version-script options and return them. |
a5dc0706 | 1625 | const Version_script_info& |
6affe781 | 1626 | version_script(); |
e5756efb | 1627 | |
ee1fe73e ILT |
1628 | // Get the input files. |
1629 | Input_arguments& | |
1630 | inputs() | |
1631 | { return this->inputs_; } | |
1632 | ||
fe9a4c12 ILT |
1633 | // The number of input files. |
1634 | int | |
1635 | number_of_input_files() const | |
1636 | { return this->inputs_.size(); } | |
1637 | ||
ead1e424 ILT |
1638 | // Iterators to iterate over the list of input files. |
1639 | ||
1640 | const_iterator | |
1641 | begin() const | |
1642 | { return this->inputs_.begin(); } | |
1643 | ||
1644 | const_iterator | |
1645 | end() const | |
1646 | { return this->inputs_.end(); } | |
bae7f79e ILT |
1647 | |
1648 | private: | |
ead1e424 ILT |
1649 | Command_line(const Command_line&); |
1650 | Command_line& operator=(const Command_line&); | |
1651 | ||
293c1386 CC |
1652 | // This is a dummy class to provide a constructor that runs before |
1653 | // the constructor for the General_options. The Pre_options constructor | |
1654 | // is used as a hook to set the flag enabling the options to register | |
1655 | // themselves. | |
1656 | struct Pre_options { | |
1657 | Pre_options(); | |
1658 | }; | |
1659 | ||
1660 | // This must come before options_! | |
1661 | Pre_options pre_options_; | |
bae7f79e ILT |
1662 | General_options options_; |
1663 | Position_dependent_options position_options_; | |
a5dc0706 | 1664 | Script_options script_options_; |
ead1e424 | 1665 | Input_arguments inputs_; |
bae7f79e ILT |
1666 | }; |
1667 | ||
1668 | } // End namespace gold. | |
1669 | ||
1670 | #endif // !defined(GOLD_OPTIONS_H) |