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