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