Keep current_inferior in sync with event_child.
[deliverable/binutils-gdb.git] / gold / options.cc
CommitLineData
bae7f79e
ILT
1// options.c -- handle command line options for gold
2
bbc5ae17
RM
3// Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2013
4// Free Software Foundation, Inc.
6cb15b7f
ILT
5// Written by Ian Lance Taylor <iant@google.com>.
6
7// This file is part of gold.
8
9// This program is free software; you can redistribute it and/or modify
10// it under the terms of the GNU General Public License as published by
11// the Free Software Foundation; either version 3 of the License, or
12// (at your option) any later version.
13
14// This program is distributed in the hope that it will be useful,
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17// GNU General Public License for more details.
18
19// You should have received a copy of the GNU General Public License
20// along with this program; if not, write to the Free Software
21// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22// MA 02110-1301, USA.
23
ad2d6943
ILT
24#include "gold.h"
25
8c604651 26#include <cerrno>
a2b1aa12 27#include <cstdlib>
04bf7072 28#include <cstring>
8c604651 29#include <fstream>
ee1fe73e 30#include <vector>
bae7f79e 31#include <iostream>
ad2d6943
ILT
32#include <sys/stat.h>
33#include "filenames.h"
34#include "libiberty.h"
086a1841 35#include "demangle.h"
819d6c3a 36#include "../bfd/bfdver.h"
bae7f79e 37
c7912668 38#include "debug.h"
e5756efb 39#include "script.h"
ee1fe73e 40#include "target-select.h"
bae7f79e 41#include "options.h"
89fc3421 42#include "plugin.h"
bae7f79e 43
61ba1cf9
ILT
44namespace gold
45{
46
ee1fe73e
ILT
47General_options
48Position_dependent_options::default_options_;
bae7f79e 49
ee1fe73e 50namespace options
bae7f79e 51{
bae7f79e 52
293c1386 53// This flag is TRUE if we should register the command-line options as they
9b547ce6 54// are constructed. It is set after construction of the options within
293c1386
CC
55// class Position_dependent_options.
56static bool ready_to_register = false;
57
ee1fe73e
ILT
58// This global variable is set up as General_options is constructed.
59static std::vector<const One_option*> registered_options;
bae7f79e 60
ee1fe73e
ILT
61// These are set up at the same time -- the variables that accept one
62// dash, two, or require -z. A single variable may be in more than
9b547ce6 63// one of these data structures.
ee1fe73e
ILT
64typedef Unordered_map<std::string, One_option*> Option_map;
65static Option_map* long_options = NULL;
66static One_option* short_options[128];
bae7f79e 67
ee1fe73e
ILT
68void
69One_option::register_option()
35cdfc9a 70{
293c1386
CC
71 if (!ready_to_register)
72 return;
73
ee1fe73e 74 registered_options.push_back(this);
35cdfc9a 75
ee1fe73e
ILT
76 // We can't make long_options a static Option_map because we can't
77 // guarantee that will be initialized before register_option() is
78 // first called.
79 if (long_options == NULL)
80 long_options = new Option_map;
cd72c291 81
ee1fe73e
ILT
82 // TWO_DASHES means that two dashes are preferred, but one is ok too.
83 if (!this->longname.empty())
84 (*long_options)[this->longname] = this;
35cdfc9a 85
ee1fe73e
ILT
86 const int shortname_as_int = static_cast<int>(this->shortname);
87 gold_assert(shortname_as_int >= 0 && shortname_as_int < 128);
88 if (this->shortname != '\0')
293c1386
CC
89 {
90 gold_assert(short_options[shortname_as_int] == NULL);
91 short_options[shortname_as_int] = this;
92 }
ee1fe73e 93}
c7912668 94
ee1fe73e
ILT
95void
96One_option::print() const
c7912668 97{
ee1fe73e
ILT
98 bool comma = false;
99 printf(" ");
100 int len = 2;
101 if (this->shortname != '\0')
102 {
103 len += printf("-%c", this->shortname);
104 if (this->helparg)
bbc5ae17
RM
105 {
106 // -z takes long-names only.
107 gold_assert(this->dashes != DASH_Z);
108 len += printf(" %s", gettext(this->helparg));
109 }
ee1fe73e
ILT
110 comma = true;
111 }
112 if (!this->longname.empty()
113 && !(this->longname[0] == this->shortname
114 && this->longname[1] == '\0'))
115 {
116 if (comma)
bbc5ae17 117 len += printf(", ");
ee1fe73e 118 switch (this->dashes)
bbc5ae17
RM
119 {
120 case options::ONE_DASH: case options::EXACTLY_ONE_DASH:
121 len += printf("-");
122 break;
123 case options::TWO_DASHES: case options::EXACTLY_TWO_DASHES:
124 len += printf("--");
125 break;
126 case options::DASH_Z:
127 len += printf("-z ");
128 break;
129 default:
130 gold_unreachable();
131 }
ee1fe73e
ILT
132 len += printf("%s", this->longname.c_str());
133 if (this->helparg)
bbc5ae17
RM
134 {
135 // For most options, we print "--frob FOO". But for -z
136 // we print "-z frob=FOO".
137 len += printf("%c%s", this->dashes == options::DASH_Z ? '=' : ' ',
138 gettext(this->helparg));
139 }
ee1fe73e
ILT
140 }
141
142 if (len >= 30)
143 {
144 printf("\n");
145 len = 0;
146 }
147 for (; len < 30; ++len)
148 std::putchar(' ');
c7912668 149
ee1fe73e 150 // TODO: if we're boolean, add " (default)" when appropriate.
a4d4b13f 151 printf("%s\n", gettext(this->helpstring));
ee1fe73e 152}
c7912668 153
ee1fe73e
ILT
154void
155help()
bae7f79e 156{
ee1fe73e 157 printf(_("Usage: %s [options] file...\nOptions:\n"), gold::program_name);
bae7f79e 158
ee1fe73e
ILT
159 std::vector<const One_option*>::const_iterator it;
160 for (it = registered_options.begin(); it != registered_options.end(); ++it)
161 (*it)->print();
e96caa79
ILT
162
163 // config.guess and libtool.m4 look in ld --help output for the
164 // string "supported targets".
165 printf(_("%s: supported targets:"), gold::program_name);
166 std::vector<const char*> supported_names;
167 gold::supported_target_names(&supported_names);
168 for (std::vector<const char*>::const_iterator p = supported_names.begin();
169 p != supported_names.end();
170 ++p)
171 printf(" %s", *p);
172 printf("\n");
819d6c3a 173
03ef7571
ILT
174 printf(_("%s: supported emulations:"), gold::program_name);
175 supported_names.clear();
176 gold::supported_emulation_names(&supported_names);
177 for (std::vector<const char*>::const_iterator p = supported_names.begin();
178 p != supported_names.end();
179 ++p)
180 printf(" %s", *p);
181 printf("\n");
182
819d6c3a
ILT
183 // REPORT_BUGS_TO is defined in bfd/bfdver.h.
184 const char* report = REPORT_BUGS_TO;
185 if (*report != '\0')
186 printf(_("Report bugs to %s\n"), report);
ee1fe73e 187}
61ba1cf9 188
ee1fe73e
ILT
189// For bool, arg will be NULL (boolean options take no argument);
190// we always just set to true.
191void
192parse_bool(const char*, const char*, bool* retval)
bae7f79e 193{
ee1fe73e
ILT
194 *retval = true;
195}
bae7f79e 196
ee1fe73e
ILT
197void
198parse_uint(const char* option_name, const char* arg, int* retval)
199{
200 char* endptr;
201 *retval = strtol(arg, &endptr, 0);
6a59a5c2 202 if (*endptr != '\0' || *retval < 0)
ee1fe73e 203 gold_fatal(_("%s: invalid option value (expected an integer): %s"),
bbc5ae17 204 option_name, arg);
ee1fe73e 205}
bc644c6c 206
c0a62865
DK
207void
208parse_int(const char* option_name, const char* arg, int* retval)
209{
210 char* endptr;
211 *retval = strtol(arg, &endptr, 0);
212 if (*endptr != '\0')
213 gold_fatal(_("%s: invalid option value (expected an integer): %s"),
bbc5ae17 214 option_name, arg);
c0a62865
DK
215}
216
ee1fe73e 217void
ca09d69a 218parse_uint64(const char* option_name, const char* arg, uint64_t* retval)
bc644c6c 219{
ee1fe73e
ILT
220 char* endptr;
221 *retval = strtoull(arg, &endptr, 0);
222 if (*endptr != '\0')
223 gold_fatal(_("%s: invalid option value (expected an integer): %s"),
bbc5ae17 224 option_name, arg);
ee1fe73e
ILT
225}
226
c18476e7
ILT
227void
228parse_double(const char* option_name, const char* arg, double* retval)
229{
230 char* endptr;
231 *retval = strtod(arg, &endptr);
232 if (*endptr != '\0')
233 gold_fatal(_("%s: invalid option value "
234 "(expected a floating point number): %s"),
235 option_name, arg);
236}
237
9fbd3822
CC
238void
239parse_percent(const char* option_name, const char* arg, double* retval)
240{
241 char* endptr;
242 *retval = strtod(arg, &endptr) / 100.0;
243 if (*endptr != '\0')
244 gold_fatal(_("%s: invalid option value "
245 "(expected a floating point number): %s"),
246 option_name, arg);
247}
248
ee1fe73e
ILT
249void
250parse_string(const char* option_name, const char* arg, const char** retval)
251{
252 if (*arg == '\0')
253 gold_fatal(_("%s: must take a non-empty argument"), option_name);
254 *retval = arg;
255}
256
086a1841
ILT
257void
258parse_optional_string(const char*, const char* arg, const char** retval)
259{
260 *retval = arg;
261}
262
ee1fe73e
ILT
263void
264parse_dirlist(const char*, const char* arg, Dir_list* retval)
265{
266 retval->push_back(Search_directory(arg, false));
267}
268
c5818ff1
CC
269void
270parse_set(const char*, const char* arg, String_set* retval)
271{
272 retval->insert(std::string(arg));
273}
274
ee1fe73e
ILT
275void
276parse_choices(const char* option_name, const char* arg, const char** retval,
bbc5ae17 277 const char* choices[], int num_choices)
ee1fe73e
ILT
278{
279 for (int i = 0; i < num_choices; i++)
280 if (strcmp(choices[i], arg) == 0)
281 {
bbc5ae17
RM
282 *retval = arg;
283 return;
ee1fe73e
ILT
284 }
285
286 // If we get here, the user did not enter a valid choice, so we die.
287 std::string choices_list;
288 for (int i = 0; i < num_choices; i++)
bc644c6c 289 {
ee1fe73e
ILT
290 choices_list += choices[i];
291 if (i != num_choices - 1)
bbc5ae17 292 choices_list += ", ";
bc644c6c 293 }
ee1fe73e 294 gold_fatal(_("%s: must take one of the following arguments: %s"),
bbc5ae17 295 option_name, choices_list.c_str());
bc644c6c
ILT
296}
297
ee1fe73e 298} // End namespace options.
a5dc0706 299
ee1fe73e
ILT
300// Define the handler for "special" options (set via DEFINE_special).
301
302void
303General_options::parse_help(const char*, const char*, Command_line*)
a5dc0706 304{
ee1fe73e
ILT
305 options::help();
306 ::exit(EXIT_SUCCESS);
a5dc0706
ILT
307}
308
ee1fe73e
ILT
309void
310General_options::parse_version(const char* opt, const char*, Command_line*)
311{
329ca2b1
ST
312 bool print_short = (opt[0] == '-' && opt[1] == 'v');
313 gold::print_version(print_short);
3dcad376 314 this->printed_version_ = true;
329ca2b1
ST
315 if (!print_short)
316 ::exit(EXIT_SUCCESS);
ee1fe73e 317}
61ba1cf9 318
b5be4a7c
DM
319void
320General_options::parse_V(const char*, const char*, Command_line*)
321{
322 gold::print_version(true);
459c9f1c 323 this->printed_version_ = true;
03ef7571 324
b5be4a7c
DM
325 printf(_(" Supported targets:\n"));
326 std::vector<const char*> supported_names;
327 gold::supported_target_names(&supported_names);
328 for (std::vector<const char*>::const_iterator p = supported_names.begin();
329 p != supported_names.end();
330 ++p)
331 printf(" %s\n", *p);
03ef7571
ILT
332
333 printf(_(" Supported emulations:\n"));
334 supported_names.clear();
335 gold::supported_emulation_names(&supported_names);
336 for (std::vector<const char*>::const_iterator p = supported_names.begin();
337 p != supported_names.end();
338 ++p)
339 printf(" %s\n", *p);
b5be4a7c
DM
340}
341
ee1fe73e
ILT
342void
343General_options::parse_defsym(const char*, const char* arg,
bbc5ae17 344 Command_line* cmdline)
ee1fe73e
ILT
345{
346 cmdline->script_options().define_symbol(arg);
347}
88dd47ac 348
8c21d9d3
CC
349void
350General_options::parse_incremental(const char*, const char*,
bbc5ae17 351 Command_line*)
8c21d9d3
CC
352{
353 this->incremental_mode_ = INCREMENTAL_AUTO;
354}
355
356void
357General_options::parse_no_incremental(const char*, const char*,
bbc5ae17 358 Command_line*)
8c21d9d3
CC
359{
360 this->incremental_mode_ = INCREMENTAL_OFF;
361}
362
363void
364General_options::parse_incremental_full(const char*, const char*,
365 Command_line*)
366{
367 this->incremental_mode_ = INCREMENTAL_FULL;
368}
369
370void
371General_options::parse_incremental_update(const char*, const char*,
372 Command_line*)
373{
374 this->incremental_mode_ = INCREMENTAL_UPDATE;
375}
376
266d0a74
ILT
377void
378General_options::parse_incremental_changed(const char*, const char*,
bbc5ae17 379 Command_line*)
266d0a74
ILT
380{
381 this->implicit_incremental_ = true;
382 this->incremental_disposition_ = INCREMENTAL_CHANGED;
383}
384
385void
386General_options::parse_incremental_unchanged(const char*, const char*,
bbc5ae17 387 Command_line*)
266d0a74
ILT
388{
389 this->implicit_incremental_ = true;
390 this->incremental_disposition_ = INCREMENTAL_UNCHANGED;
391}
392
393void
394General_options::parse_incremental_unknown(const char*, const char*,
bbc5ae17 395 Command_line*)
266d0a74
ILT
396{
397 this->implicit_incremental_ = true;
398 this->incremental_disposition_ = INCREMENTAL_CHECK;
399}
400
221597a5
CC
401void
402General_options::parse_incremental_startup_unchanged(const char*, const char*,
403 Command_line*)
404{
405 this->implicit_incremental_ = true;
406 this->incremental_startup_disposition_ = INCREMENTAL_UNCHANGED;
407}
408
ee1fe73e
ILT
409void
410General_options::parse_library(const char*, const char* arg,
bbc5ae17 411 Command_line* cmdline)
ee1fe73e 412{
ae3b5189 413 Input_file_argument::Input_file_type type;
ca09d69a 414 const char* name;
ae3b5189
CD
415 if (arg[0] == ':')
416 {
417 type = Input_file_argument::INPUT_FILE_TYPE_SEARCHED_FILE;
418 name = arg + 1;
419 }
420 else
421 {
422 type = Input_file_argument::INPUT_FILE_TYPE_LIBRARY;
423 name = arg;
424 }
425 Input_file_argument file(name, type, "", false, *this);
ee1fe73e
ILT
426 cmdline->inputs().add_file(file);
427}
428
89fc3421
CC
429#ifdef ENABLE_PLUGINS
430void
431General_options::parse_plugin(const char*, const char* arg,
bbc5ae17 432 Command_line*)
89fc3421
CC
433{
434 this->add_plugin(arg);
435}
4674ecfc
CC
436
437// Parse --plugin-opt.
438
439void
440General_options::parse_plugin_opt(const char*, const char* arg,
bbc5ae17 441 Command_line*)
4674ecfc
CC
442{
443 this->add_plugin_option(arg);
444}
89fc3421
CC
445#endif // ENABLE_PLUGINS
446
ee1fe73e
ILT
447void
448General_options::parse_R(const char* option, const char* arg,
bbc5ae17 449 Command_line* cmdline)
88dd47ac 450{
88dd47ac 451 struct stat s;
ee1fe73e
ILT
452 if (::stat(arg, &s) != 0 || S_ISDIR(s.st_mode))
453 this->add_to_rpath(arg);
88dd47ac 454 else
ee1fe73e 455 this->parse_just_symbols(option, arg, cmdline);
88dd47ac
ILT
456}
457
ee1fe73e
ILT
458void
459General_options::parse_just_symbols(const char*, const char* arg,
bbc5ae17 460 Command_line* cmdline)
88dd47ac 461{
ae3b5189
CD
462 Input_file_argument file(arg, Input_file_argument::INPUT_FILE_TYPE_FILE,
463 "", true, *this);
ee1fe73e 464 cmdline->inputs().add_file(file);
88dd47ac
ILT
465}
466
a192ba05
ILT
467// Handle --section-start.
468
469void
470General_options::parse_section_start(const char*, const char* arg,
471 Command_line*)
472{
473 const char* eq = strchr(arg, '=');
474 if (eq == NULL)
475 {
476 gold_error(_("invalid argument to --section-start; "
477 "must be SECTION=ADDRESS"));
478 return;
479 }
480
481 std::string section_name(arg, eq - arg);
482
483 ++eq;
484 const char* val_start = eq;
485 if (eq[0] == '0' && (eq[1] == 'x' || eq[1] == 'X'))
486 eq += 2;
487 if (*eq == '\0')
488 {
489 gold_error(_("--section-start address missing"));
490 return;
491 }
492 uint64_t addr = 0;
493 hex_init();
494 for (; *eq != '\0'; ++eq)
495 {
496 if (!hex_p(*eq))
497 {
498 gold_error(_("--section-start argument %s is not a valid hex number"),
499 val_start);
500 return;
501 }
502 addr <<= 4;
503 addr += hex_value(*eq);
504 }
505
506 this->section_starts_[section_name] = addr;
507}
508
509// Look up a --section-start value.
510
511bool
512General_options::section_start(const char* secname, uint64_t* paddr) const
513{
514 if (this->section_starts_.empty())
515 return false;
516 std::map<std::string, uint64_t>::const_iterator p =
517 this->section_starts_.find(secname);
518 if (p == this->section_starts_.end())
519 return false;
520 *paddr = p->second;
521 return true;
522}
523
ee1fe73e
ILT
524void
525General_options::parse_static(const char*, const char*, Command_line*)
3c2fafa5 526{
ee1fe73e 527 this->set_static(true);
09124467
ILT
528}
529
ee1fe73e
ILT
530void
531General_options::parse_script(const char*, const char* arg,
bbc5ae17 532 Command_line* cmdline)
09124467 533{
ee1fe73e
ILT
534 if (!read_commandline_script(arg, cmdline))
535 gold::gold_fatal(_("unable to parse script file %s"), arg);
61ba1cf9
ILT
536}
537
ee1fe73e
ILT
538void
539General_options::parse_version_script(const char*, const char* arg,
bbc5ae17 540 Command_line* cmdline)
ead1e424 541{
ee1fe73e
ILT
542 if (!read_version_script(arg, cmdline))
543 gold::gold_fatal(_("unable to parse version script file %s"), arg);
ead1e424
ILT
544}
545
c82fbeee
CS
546void
547General_options::parse_dynamic_list(const char*, const char* arg,
bbc5ae17 548 Command_line* cmdline)
c82fbeee
CS
549{
550 if (!read_dynamic_list(arg, cmdline, &this->dynamic_list_))
551 gold::gold_fatal(_("unable to parse dynamic-list script file %s"), arg);
552}
553
ee1fe73e
ILT
554void
555General_options::parse_start_group(const char*, const char*,
bbc5ae17 556 Command_line* cmdline)
ee1fe73e
ILT
557{
558 cmdline->inputs().start_group();
559}
ead1e424 560
ee1fe73e
ILT
561void
562General_options::parse_end_group(const char*, const char*,
bbc5ae17 563 Command_line* cmdline)
ead1e424 564{
ee1fe73e 565 cmdline->inputs().end_group();
ead1e424
ILT
566}
567
b0193076
RÁE
568void
569General_options::parse_start_lib(const char*, const char*,
bbc5ae17 570 Command_line* cmdline)
b0193076
RÁE
571{
572 cmdline->inputs().start_lib(cmdline->position_dependent_options());
573}
574
575void
576General_options::parse_end_lib(const char*, const char*,
bbc5ae17 577 Command_line* cmdline)
b0193076
RÁE
578{
579 cmdline->inputs().end_lib();
580}
581
65514900 582// The function add_excluded_libs() in ld/ldlang.c of GNU ld breaks up a list
9b547ce6 583// of names separated by commas or colons and puts them in a linked list.
65514900
CC
584// We implement the same parsing of names here but store names in an unordered
585// map to speed up searching of names.
586
587void
588General_options::parse_exclude_libs(const char*, const char* arg,
bbc5ae17 589 Command_line*)
65514900 590{
ca09d69a 591 const char* p = arg;
65514900
CC
592
593 while (*p != '\0')
594 {
595 size_t length = strcspn(p, ",:");
596 this->excluded_libs_.insert(std::string(p, length));
597 p += (p[length] ? length + 1 : length);
598 }
599}
600
601// The checking logic is based on the function check_excluded_libs() in
602// ld/ldlang.c of GNU ld but our implementation is different because we use
603// an unordered map instead of a linked list, which is what GNU ld uses. GNU
604// ld searches sequentially in the excluded libs list. For a given archive,
605// a match is found if the archive's name matches exactly one of the list
606// entry or if the archive's name is of the form FOO.a and FOO matches exactly
607// one of the list entry. An entry "ALL" in the list is considered as a
608// wild-card and matches any given name.
609
610bool
ca09d69a 611General_options::check_excluded_libs(const std::string &name) const
65514900
CC
612{
613 Unordered_set<std::string>::const_iterator p;
614
615 // Exit early for the most common case.
616 if (excluded_libs_.empty())
617 return false;
618
619 // If we see "ALL", all archives are excluded from automatic export.
620 p = excluded_libs_.find(std::string("ALL"));
621 if (p != excluded_libs_.end())
622 return true;
623
2fdd743f 624 // First strip off any directories in name.
ca09d69a 625 const char* basename = lbasename(name.c_str());
2fdd743f 626
65514900 627 // Try finding an exact match.
2fdd743f 628 p = excluded_libs_.find(std::string(basename));
65514900
CC
629 if (p != excluded_libs_.end())
630 return true;
631
632 // Try matching NAME without ".a" at the end.
2fdd743f 633 size_t length = strlen(basename);
65514900 634 if ((length >= 2)
2fdd743f
DK
635 && (basename[length - 2] == '.')
636 && (basename[length - 1] == 'a'))
65514900 637 {
2fdd743f 638 p = excluded_libs_.find(std::string(basename, length - 2));
65514900
CC
639 if (p != excluded_libs_.end())
640 return true;
641 }
642
643 return false;
644}
645
e6a307ba
ILT
646// Recognize input and output target names. The GNU linker accepts
647// these with --format and --oformat. This code is intended to be
648// minimally compatible. In practice for an ELF target this would be
649// the same target as the input files; that name always start with
650// "elf". Non-ELF targets would be "srec", "symbolsrec", "tekhex",
651// "binary", "ihex".
652
653General_options::Object_format
654General_options::string_to_object_format(const char* arg)
655{
956b03bb 656 if (strncmp(arg, "elf", 3) == 0 || strcmp(arg, "default") == 0)
e6a307ba
ILT
657 return gold::General_options::OBJECT_FORMAT_ELF;
658 else if (strcmp(arg, "binary") == 0)
659 return gold::General_options::OBJECT_FORMAT_BINARY;
660 else
661 {
662 gold::gold_error(_("format '%s' not supported; treating as elf "
bbc5ae17
RM
663 "(supported formats: elf, binary)"),
664 arg);
e6a307ba
ILT
665 return gold::General_options::OBJECT_FORMAT_ELF;
666 }
667}
668
9b2fd367
DK
669void
670General_options::parse_fix_v4bx(const char*, const char*,
bbc5ae17 671 Command_line*)
9b2fd367
DK
672{
673 this->fix_v4bx_ = FIX_V4BX_REPLACE;
674}
675
676void
677General_options::parse_fix_v4bx_interworking(const char*, const char*,
678 Command_line*)
679{
680 this->fix_v4bx_ = FIX_V4BX_INTERWORKING;
681}
682
7296d933
DK
683void
684General_options::parse_EB(const char*, const char*, Command_line*)
685{
686 this->endianness_ = ENDIANNESS_BIG;
687}
688
689void
690General_options::parse_EL(const char*, const char*, Command_line*)
691{
692 this->endianness_ = ENDIANNESS_LITTLE;
693}
694
ee1fe73e 695} // End namespace gold.
bae7f79e 696
ee1fe73e 697namespace
bae7f79e 698{
bae7f79e 699
ee1fe73e
ILT
700void
701usage()
702{
703 fprintf(stderr,
bbc5ae17
RM
704 _("%s: use the --help option for usage information\n"),
705 gold::program_name);
ee1fe73e
ILT
706 ::exit(EXIT_FAILURE);
707}
bae7f79e 708
ee1fe73e 709void
ca09d69a 710usage(const char* msg, const char* opt)
ee1fe73e
ILT
711{
712 fprintf(stderr,
bbc5ae17
RM
713 _("%s: %s: %s\n"),
714 gold::program_name, opt, msg);
ee1fe73e 715 usage();
bae7f79e
ILT
716}
717
ad2d6943
ILT
718// If the default sysroot is relocatable, try relocating it based on
719// the prefix FROM.
720
fd9d194f 721static char*
ad2d6943
ILT
722get_relative_sysroot(const char* from)
723{
724 char* path = make_relative_prefix(gold::program_name, from,
bbc5ae17 725 TARGET_SYSTEM_ROOT);
ad2d6943
ILT
726 if (path != NULL)
727 {
728 struct stat s;
729 if (::stat(path, &s) == 0 && S_ISDIR(s.st_mode))
bbc5ae17 730 return path;
ad2d6943
ILT
731 free(path);
732 }
733
734 return NULL;
735}
736
737// Return the default sysroot. This is set by the --with-sysroot
ee1fe73e
ILT
738// option to configure. Note we do not free the return value of
739// get_relative_sysroot, which is a small memory leak, but is
740// necessary since we store this pointer directly in General_options.
ad2d6943 741
fd9d194f 742static const char*
ad2d6943
ILT
743get_default_sysroot()
744{
745 const char* sysroot = TARGET_SYSTEM_ROOT;
746 if (*sysroot == '\0')
ee1fe73e 747 return NULL;
ad2d6943
ILT
748
749 if (TARGET_SYSTEM_ROOT_RELOCATABLE)
750 {
ee1fe73e 751 char* path = get_relative_sysroot(BINDIR);
ad2d6943 752 if (path == NULL)
bbc5ae17 753 path = get_relative_sysroot(TOOLBINDIR);
ad2d6943 754 if (path != NULL)
bbc5ae17 755 return path;
ad2d6943
ILT
756 }
757
758 return sysroot;
759}
760
ee1fe73e
ILT
761// Parse a long option. Such options have the form
762// <-|--><option>[=arg]. If "=arg" is not present but the option
763// takes an argument, the next word is taken to the be the argument.
764// If equals_only is set, then only the <option>=<arg> form is
765// accepted, not the <option><space><arg> form. Returns a One_option
766// struct or NULL if argv[i] cannot be parsed as a long option. In
767// the not-NULL case, *arg is set to the option's argument (NULL if
768// the option takes no argument), and *i is advanced past this option.
769// NOTE: it is safe for argv and arg to point to the same place.
770gold::options::One_option*
771parse_long_option(int argc, const char** argv, bool equals_only,
bbc5ae17 772 const char** arg, int* i)
61ba1cf9 773{
ee1fe73e 774 const char* const this_argv = argv[*i];
bae7f79e 775
ee1fe73e
ILT
776 const char* equals = strchr(this_argv, '=');
777 const char* option_start = this_argv + strspn(this_argv, "-");
778 std::string option(option_start,
bbc5ae17 779 equals ? equals - option_start : strlen(option_start));
35cdfc9a 780
ee1fe73e
ILT
781 gold::options::Option_map::iterator it
782 = gold::options::long_options->find(option);
783 if (it == gold::options::long_options->end())
784 return NULL;
35cdfc9a 785
ee1fe73e 786 gold::options::One_option* retval = it->second;
c7912668 787
ee1fe73e
ILT
788 // If the dash-count doesn't match, we fail.
789 if (this_argv[0] != '-') // no dashes at all: had better be "-z <longopt>"
790 {
791 if (retval->dashes != gold::options::DASH_Z)
bbc5ae17 792 return NULL;
ee1fe73e
ILT
793 }
794 else if (this_argv[1] != '-') // one dash
795 {
796 if (retval->dashes != gold::options::ONE_DASH
bbc5ae17
RM
797 && retval->dashes != gold::options::EXACTLY_ONE_DASH
798 && retval->dashes != gold::options::TWO_DASHES)
799 return NULL;
ee1fe73e
ILT
800 }
801 else // two dashes (or more!)
802 {
803 if (retval->dashes != gold::options::TWO_DASHES
bbc5ae17
RM
804 && retval->dashes != gold::options::EXACTLY_TWO_DASHES
805 && retval->dashes != gold::options::ONE_DASH)
806 return NULL;
ee1fe73e 807 }
bae7f79e 808
ee1fe73e
ILT
809 // Now that we know the option is good (or else bad in a way that
810 // will cause us to die), increment i to point past this argv.
811 ++(*i);
bae7f79e 812
ee1fe73e
ILT
813 // Figure out the option's argument, if any.
814 if (!retval->takes_argument())
815 {
816 if (equals)
bbc5ae17 817 usage(_("unexpected argument"), this_argv);
ee1fe73e 818 else
bbc5ae17 819 *arg = NULL;
ee1fe73e
ILT
820 }
821 else
822 {
823 if (equals)
bbc5ae17 824 *arg = equals + 1;
086a1841
ILT
825 else if (retval->takes_optional_argument())
826 *arg = retval->default_value;
ee1fe73e 827 else if (*i < argc && !equals_only)
bbc5ae17 828 *arg = argv[(*i)++];
ee1fe73e 829 else
bbc5ae17 830 usage(_("missing argument"), this_argv);
ee1fe73e 831 }
516cb3d0 832
ee1fe73e
ILT
833 return retval;
834}
835
836// Parse a short option. Such options have the form -<option>[arg].
837// If "arg" is not present but the option takes an argument, the next
838// word is taken to the be the argument. If the option does not take
839// an argument, it may be followed by another short option. Returns a
840// One_option struct or NULL if argv[i] cannot be parsed as a short
841// option. In the not-NULL case, *arg is set to the option's argument
842// (NULL if the option takes no argument), and *i is advanced past
843// this option. This function keeps *i the same if we parsed a short
844// option that does not take an argument, that looks to be followed by
845// another short option in the same word.
846gold::options::One_option*
847parse_short_option(int argc, const char** argv, int pos_in_argv_i,
bbc5ae17 848 const char** arg, int* i)
ee1fe73e
ILT
849{
850 const char* const this_argv = argv[*i];
851
852 if (this_argv[0] != '-')
853 return NULL;
854
855 // We handle -z as a special case.
856 static gold::options::One_option dash_z("", gold::options::DASH_Z,
bbc5ae17 857 'z', "", NULL, "Z-OPTION", false,
086a1841 858 NULL);
ee1fe73e
ILT
859 gold::options::One_option* retval = NULL;
860 if (this_argv[pos_in_argv_i] == 'z')
861 retval = &dash_z;
862 else
863 {
864 const int char_as_int = static_cast<int>(this_argv[pos_in_argv_i]);
865 if (char_as_int > 0 && char_as_int < 128)
bbc5ae17 866 retval = gold::options::short_options[char_as_int];
ee1fe73e 867 }
516cb3d0 868
ee1fe73e
ILT
869 if (retval == NULL)
870 return NULL;
35cdfc9a 871
ee1fe73e
ILT
872 // Figure out the option's argument, if any.
873 if (!retval->takes_argument())
cd72c291 874 {
ee1fe73e
ILT
875 *arg = NULL;
876 // We only advance past this argument if it's the only one in argv.
877 if (this_argv[pos_in_argv_i + 1] == '\0')
bbc5ae17 878 ++(*i);
cd72c291
ILT
879 }
880 else
ee1fe73e
ILT
881 {
882 // If we take an argument, we'll eat up this entire argv entry.
883 ++(*i);
884 if (this_argv[pos_in_argv_i + 1] != '\0')
bbc5ae17 885 *arg = this_argv + pos_in_argv_i + 1;
086a1841
ILT
886 else if (retval->takes_optional_argument())
887 *arg = retval->default_value;
ee1fe73e 888 else if (*i < argc)
bbc5ae17 889 *arg = argv[(*i)++];
ee1fe73e 890 else
bbc5ae17 891 usage(_("missing argument"), this_argv);
ee1fe73e 892 }
cd72c291 893
ee1fe73e
ILT
894 // If we're a -z option, we need to parse our argument as a
895 // long-option, e.g. "-z stacksize=8192".
896 if (retval == &dash_z)
35cdfc9a 897 {
ee1fe73e
ILT
898 int dummy_i = 0;
899 const char* dash_z_arg = *arg;
900 retval = parse_long_option(1, arg, true, arg, &dummy_i);
901 if (retval == NULL)
bbc5ae17 902 usage(_("unknown -z option"), dash_z_arg);
35cdfc9a
ILT
903 }
904
ee1fe73e 905 return retval;
c7912668
ILT
906}
907
ee1fe73e 908} // End anonymous namespace.
c7912668 909
ee1fe73e 910namespace gold
c7912668 911{
c7912668 912
ee1fe73e 913General_options::General_options()
459c9f1c 914 : printed_version_(false),
a192ba05
ILT
915 execstack_status_(EXECSTACK_FROM_INPUT),
916 icf_status_(ICF_NONE),
917 static_(false),
918 do_demangle_(false),
919 plugins_(NULL),
920 dynamic_list_(),
8c21d9d3 921 incremental_mode_(INCREMENTAL_OFF),
221597a5
CC
922 incremental_disposition_(INCREMENTAL_STARTUP),
923 incremental_startup_disposition_(INCREMENTAL_CHECK),
a192ba05
ILT
924 implicit_incremental_(false),
925 excluded_libs_(),
926 symbols_to_retain_(),
2fd9ae7a 927 section_starts_(),
7296d933
DK
928 fix_v4bx_(FIX_V4BX_NONE),
929 endianness_(ENDIANNESS_NOT_SET)
ee1fe73e 930{
293c1386
CC
931 // Turn off option registration once construction is complete.
932 gold::options::ready_to_register = false;
ee1fe73e
ILT
933}
934
935General_options::Object_format
936General_options::format_enum() const
937{
e6a307ba 938 return General_options::string_to_object_format(this->format());
ee1fe73e
ILT
939}
940
941General_options::Object_format
942General_options::oformat_enum() const
943{
e6a307ba 944 return General_options::string_to_object_format(this->oformat());
35cdfc9a
ILT
945}
946
ad2d6943
ILT
947// Add the sysroot, if any, to the search paths.
948
949void
950General_options::add_sysroot()
951{
ee1fe73e 952 if (this->sysroot() == NULL || this->sysroot()[0] == '\0')
ad2d6943 953 {
ee1fe73e
ILT
954 this->set_sysroot(get_default_sysroot());
955 if (this->sysroot() == NULL || this->sysroot()[0] == '\0')
bbc5ae17 956 return;
ad2d6943
ILT
957 }
958
ee1fe73e 959 char* canonical_sysroot = lrealpath(this->sysroot());
ad2d6943 960
ee1fe73e
ILT
961 for (Dir_list::iterator p = this->library_path_.value.begin();
962 p != this->library_path_.value.end();
ad2d6943 963 ++p)
ee1fe73e 964 p->add_sysroot(this->sysroot(), canonical_sysroot);
ad2d6943
ILT
965
966 free(canonical_sysroot);
967}
968
fd9d194f
ILT
969// Return whether FILENAME is in a system directory.
970
971bool
972General_options::is_in_system_directory(const std::string& filename) const
973{
974 for (Dir_list::const_iterator p = this->library_path_.value.begin();
975 p != this->library_path_.value.end();
976 ++p)
977 {
978 // We use a straight string comparison rather than calling
979 // FILENAME_CMP because we are only interested in the cases
980 // where we found the file in a system directory, which means
981 // that we used the directory name as a prefix for a -L search.
982 if (p->is_system_directory()
983 && filename.compare(0, p->name().size(), p->name()) == 0)
984 return true;
985 }
986 return false;
987}
988
4674ecfc 989// Add a plugin to the list of plugins.
89fc3421
CC
990
991void
4674ecfc 992General_options::add_plugin(const char* filename)
89fc3421
CC
993{
994 if (this->plugins_ == NULL)
995 this->plugins_ = new Plugin_manager(*this);
4674ecfc
CC
996 this->plugins_->add_plugin(filename);
997}
998
999// Add a plugin option to a plugin.
1000
1001void
1002General_options::add_plugin_option(const char* arg)
1003{
1004 if (this->plugins_ == NULL)
1005 gold_fatal("--plugin-opt requires --plugin.");
1006 this->plugins_->add_plugin_option(arg);
89fc3421
CC
1007}
1008
ee1fe73e
ILT
1009// Set up variables and other state that isn't set up automatically by
1010// the parse routine, and ensure options don't contradict each other
1011// and are otherwise kosher.
e5756efb 1012
ee1fe73e
ILT
1013void
1014General_options::finalize()
bc644c6c 1015{
ee1fe73e 1016 // Normalize the strip modifiers. They have a total order:
62b01cb5
ILT
1017 // strip_all > strip_debug > strip_non_line > strip_debug_gdb.
1018 // If one is true, set all beneath it to true as well.
ee1fe73e
ILT
1019 if (this->strip_all())
1020 this->set_strip_debug(true);
1021 if (this->strip_debug())
62b01cb5
ILT
1022 this->set_strip_debug_non_line(true);
1023 if (this->strip_debug_non_line())
ee1fe73e 1024 this->set_strip_debug_gdb(true);
bc644c6c 1025
3b293544
CF
1026 if (this->Bshareable())
1027 this->set_shared(true);
1028
ee1fe73e
ILT
1029 // If the user specifies both -s and -r, convert the -s to -S.
1030 // -r requires us to keep externally visible symbols!
1031 if (this->strip_all() && this->relocatable())
1032 {
1033 this->set_strip_all(false);
1034 gold_assert(this->strip_debug());
1035 }
bc644c6c 1036
ee1fe73e
ILT
1037 // For us, -dc and -dp are synonyms for --define-common.
1038 if (this->dc())
1039 this->set_define_common(true);
1040 if (this->dp())
1041 this->set_define_common(true);
1042
1043 // We also set --define-common if we're not relocatable, as long as
1044 // the user didn't explicitly ask for something different.
1045 if (!this->user_set_define_common())
1046 this->set_define_common(!this->relocatable());
1047
1048 // execstack_status_ is a three-state variable; update it based on
1049 // -z [no]execstack.
1050 if (this->execstack())
1051 this->set_execstack_status(EXECSTACK_YES);
1052 else if (this->noexecstack())
1053 this->set_execstack_status(EXECSTACK_NO);
1054
032ce4e9
ST
1055 // icf_status_ is a three-state variable; update it based on the
1056 // value of this->icf().
1057 if (strcmp(this->icf(), "none") == 0)
1058 this->set_icf_status(ICF_NONE);
1059 else if (strcmp(this->icf(), "safe") == 0)
1060 this->set_icf_status(ICF_SAFE);
1061 else
1062 this->set_icf_status(ICF_ALL);
1063
086a1841
ILT
1064 // Handle the optional argument for --demangle.
1065 if (this->user_set_demangle())
1066 {
1067 this->set_do_demangle(true);
1068 const char* style = this->demangle();
1069 if (*style != '\0')
1070 {
1071 enum demangling_styles style_code;
1072
1073 style_code = cplus_demangle_name_to_style(style);
1074 if (style_code == unknown_demangling)
1075 gold_fatal("unknown demangling style '%s'", style);
1076 cplus_demangle_set_style(style_code);
1077 }
1078 }
1079 else if (this->user_set_no_demangle())
1080 this->set_do_demangle(false);
1081 else
1082 {
1083 // Testing COLLECT_NO_DEMANGLE makes our default demangling
1084 // behaviour identical to that of gcc's linker wrapper.
1085 this->set_do_demangle(getenv("COLLECT_NO_DEMANGLE") == NULL);
1086 }
1087
7d9e3d98
ILT
1088 // -M is equivalent to "-Map -".
1089 if (this->print_map() && !this->user_set_Map())
1090 {
1091 this->set_Map("-");
1092 this->set_user_set_Map();
1093 }
1094
af6156ef
ILT
1095 // Using -n or -N implies -static.
1096 if (this->nmagic() || this->omagic())
1097 this->set_static(true);
1098
ee1fe73e
ILT
1099 // If --thread_count is specified, it applies to
1100 // --thread-count-{initial,middle,final}, though it doesn't override
1101 // them.
1102 if (this->thread_count() > 0 && this->thread_count_initial() == 0)
1103 this->set_thread_count_initial(this->thread_count());
1104 if (this->thread_count() > 0 && this->thread_count_middle() == 0)
1105 this->set_thread_count_middle(this->thread_count());
1106 if (this->thread_count() > 0 && this->thread_count_final() == 0)
1107 this->set_thread_count_final(this->thread_count());
1108
09ffbbe0
ILT
1109 // Let's warn if you set the thread-count but we're going to ignore it.
1110#ifndef ENABLE_THREADS
1111 if (this->threads())
1112 {
1113 gold_warning(_("ignoring --threads: "
1114 "%s was compiled without thread support"),
1115 program_name);
1116 this->set_threads(false);
1117 }
1118 if (this->thread_count() > 0 || this->thread_count_initial() > 0
1119 || this->thread_count_middle() > 0 || this->thread_count_final() > 0)
1120 gold_warning(_("ignoring --thread-count: "
bbc5ae17
RM
1121 "%s was compiled without thread support"),
1122 program_name);
09ffbbe0
ILT
1123#endif
1124
3f3cddf1 1125 std::string libpath;
706e1f5e
ILT
1126 if (this->user_set_Y())
1127 {
3f3cddf1
ILT
1128 libpath = this->Y();
1129 if (libpath.compare(0, 2, "P,") == 0)
1130 libpath.erase(0, 2);
1131 }
1132 else if (!this->nostdlib())
1133 {
1134#ifndef NATIVE_LINKER
1135#define NATIVE_LINKER 0
1136#endif
1137 const char* p = LIB_PATH;
1138 if (strcmp(p, "::DEFAULT::") != 0)
1139 libpath = p;
1140 else if (NATIVE_LINKER
1141 || this->user_set_sysroot()
1142 || *TARGET_SYSTEM_ROOT != '\0')
1143 {
1144 this->add_to_library_path_with_sysroot("/lib");
1145 this->add_to_library_path_with_sysroot("/usr/lib");
1146 }
1147 else
1148 this->add_to_library_path_with_sysroot(TOOLLIBDIR);
1149 }
706e1f5e 1150
3f3cddf1
ILT
1151 if (!libpath.empty())
1152 {
706e1f5e
ILT
1153 size_t pos = 0;
1154 size_t next_pos;
1155 do
1156 {
3f3cddf1 1157 next_pos = libpath.find(':', pos);
706e1f5e
ILT
1158 size_t len = (next_pos == std::string::npos
1159 ? next_pos
1160 : next_pos - pos);
1161 if (len != 0)
3f3cddf1 1162 this->add_to_library_path_with_sysroot(libpath.substr(pos, len));
706e1f5e
ILT
1163 pos = next_pos + 1;
1164 }
1165 while (next_pos != std::string::npos);
1166 }
ee1fe73e 1167
8c604651
CS
1168 // Parse the contents of -retain-symbols-file into a set.
1169 if (this->retain_symbols_file())
1170 {
1171 std::ifstream in;
1172 in.open(this->retain_symbols_file());
1173 if (!in)
bbc5ae17
RM
1174 gold_fatal(_("unable to open -retain-symbols-file file %s: %s"),
1175 this->retain_symbols_file(), strerror(errno));
8c604651
CS
1176 std::string line;
1177 std::getline(in, line); // this chops off the trailing \n, if any
1178 while (in)
bbc5ae17
RM
1179 {
1180 if (!line.empty() && line[line.length() - 1] == '\r') // Windows
1181 line.resize(line.length() - 1);
1182 this->symbols_to_retain_.insert(line);
1183 std::getline(in, line);
1184 }
8c604651
CS
1185 }
1186
e2153196
ILT
1187 // -Bgroup implies --unresolved-symbols=report-all.
1188 if (this->Bgroup() && !this->user_set_unresolved_symbols())
1189 this->set_unresolved_symbols("report-all");
1190
1191 // -shared implies --allow-shlib-undefined. Currently
1192 // ---allow-shlib-undefined controls warnings issued based on the
1193 // -symbol table. --unresolved-symbols controls warnings issued
1194 // -based on relocations.
d7ab2a47
KVH
1195 if (this->shared() && !this->user_set_allow_shlib_undefined())
1196 this->set_allow_shlib_undefined(true);
1197
ee1fe73e
ILT
1198 // Normalize library_path() by adding the sysroot to all directories
1199 // in the path, as appropriate.
1200 this->add_sysroot();
1201
1202 // Now that we've normalized the options, check for contradictory ones.
4e1e25e0
CC
1203 if (this->shared() && this->is_static())
1204 gold_fatal(_("-shared and -static are incompatible"));
374ad285
ILT
1205 if (this->shared() && this->pie())
1206 gold_fatal(_("-shared and -pie are incompatible"));
f9fa4a63
CC
1207 if (this->pie() && this->is_static())
1208 gold_fatal(_("-pie and -static are incompatible"));
4e1e25e0 1209
ee1fe73e
ILT
1210 if (this->shared() && this->relocatable())
1211 gold_fatal(_("-shared and -r are incompatible"));
374ad285
ILT
1212 if (this->pie() && this->relocatable())
1213 gold_fatal(_("-pie and -r are incompatible"));
ee1fe73e 1214
886288f1
ILT
1215 if (!this->shared())
1216 {
1217 if (this->filter() != NULL)
1218 gold_fatal(_("-F/--filter may not used without -shared"));
1219 if (this->any_auxiliary())
1220 gold_fatal(_("-f/--auxiliary may not be used without -shared"));
1221 }
1222
8c604651
CS
1223 // TODO: implement support for -retain-symbols-file with -r, if needed.
1224 if (this->relocatable() && this->retain_symbols_file())
1225 gold_fatal(_("-retain-symbols-file does not yet work with -r"));
1226
ee1fe73e 1227 if (this->oformat_enum() != General_options::OBJECT_FORMAT_ELF
374ad285
ILT
1228 && (this->shared()
1229 || this->pie()
1230 || this->relocatable()))
1231 gold_fatal(_("binary output format not compatible "
1232 "with -shared or -pie or -r"));
ee1fe73e 1233
c18476e7
ILT
1234 if (this->user_set_hash_bucket_empty_fraction()
1235 && (this->hash_bucket_empty_fraction() < 0.0
1236 || this->hash_bucket_empty_fraction() >= 1.0))
1237 gold_fatal(_("--hash-bucket-empty-fraction value %g out of range "
1238 "[0.0, 1.0)"),
1239 this->hash_bucket_empty_fraction());
1240
8c21d9d3 1241 if (this->implicit_incremental_ && this->incremental_mode_ == INCREMENTAL_OFF)
266d0a74 1242 gold_fatal(_("Options --incremental-changed, --incremental-unchanged, "
bbc5ae17 1243 "--incremental-unknown require the use of --incremental"));
266d0a74 1244
403a3331
CC
1245 // Check for options that are not compatible with incremental linking.
1246 // Where an option can be disabled without seriously changing the semantics
1247 // of the link, we turn the option off; otherwise, we issue a fatal error.
1248
1249 if (this->incremental_mode_ != INCREMENTAL_OFF)
1250 {
1251 if (this->relocatable())
1252 gold_fatal(_("incremental linking is not compatible with -r"));
1253 if (this->emit_relocs())
1254 gold_fatal(_("incremental linking is not compatible with "
1255 "--emit-relocs"));
1256 if (this->has_plugins())
1257 gold_fatal(_("incremental linking is not compatible with --plugin"));
1258 if (this->gc_sections())
1259 {
1260 gold_warning(_("ignoring --gc-sections for an incremental link"));
1261 this->set_gc_sections(false);
1262 }
1263 if (this->icf_enabled())
1264 {
1265 gold_warning(_("ignoring --icf for an incremental link"));
1266 this->set_icf_status(ICF_NONE);
1267 }
1268 if (strcmp(this->compress_debug_sections(), "none") != 0)
1269 {
1270 gold_warning(_("ignoring --compress-debug-sections for an "
1271 "incremental link"));
1272 this->set_compress_debug_sections("none");
1273 }
1274 }
1275
bbc5ae17
RM
1276 // --rosegment-gap implies --rosegment.
1277 if (this->user_set_rosegment_gap())
1278 this->set_rosegment(true);
1279
ee1fe73e 1280 // FIXME: we can/should be doing a lot more sanity checking here.
e5756efb
ILT
1281}
1282
ad2d6943
ILT
1283// Search_directory methods.
1284
1285// This is called if we have a sysroot. Apply the sysroot if
1286// appropriate. Record whether the directory is in the sysroot.
1287
1288void
1289Search_directory::add_sysroot(const char* sysroot,
bbc5ae17 1290 const char* canonical_sysroot)
ad2d6943
ILT
1291{
1292 gold_assert(*sysroot != '\0');
1293 if (this->put_in_sysroot_)
1294 {
1295 if (!IS_DIR_SEPARATOR(this->name_[0])
bbc5ae17
RM
1296 && !IS_DIR_SEPARATOR(sysroot[strlen(sysroot) - 1]))
1297 this->name_ = '/' + this->name_;
ad2d6943
ILT
1298 this->name_ = sysroot + this->name_;
1299 this->is_in_sysroot_ = true;
1300 }
1301 else
1302 {
1303 // Check whether this entry is in the sysroot. To do this
1304 // correctly, we need to use canonical names. Otherwise we will
1305 // get confused by the ../../.. paths that gcc tends to use.
1306 char* canonical_name = lrealpath(this->name_.c_str());
1307 int canonical_name_len = strlen(canonical_name);
1308 int canonical_sysroot_len = strlen(canonical_sysroot);
1309 if (canonical_name_len > canonical_sysroot_len
bbc5ae17
RM
1310 && IS_DIR_SEPARATOR(canonical_name[canonical_sysroot_len]))
1311 {
1312 canonical_name[canonical_sysroot_len] = '\0';
1313 if (FILENAME_CMP(canonical_name, canonical_sysroot) == 0)
1314 this->is_in_sysroot_ = true;
1315 }
ad2d6943
ILT
1316 free(canonical_name);
1317 }
1318}
1319
dbe717ef
ILT
1320// Input_arguments methods.
1321
1322// Add a file to the list.
1323
c7975edd 1324Input_argument&
cdc29364 1325Input_arguments::add_file(Input_file_argument& file)
dbe717ef 1326{
cdc29364 1327 file.set_arg_serial(++this->file_count_);
b0193076 1328 if (this->in_group_)
dbe717ef 1329 {
a3ad94ed
ILT
1330 gold_assert(!this->input_argument_list_.empty());
1331 gold_assert(this->input_argument_list_.back().is_group());
c7975edd 1332 return this->input_argument_list_.back().group()->add_file(file);
dbe717ef 1333 }
c7975edd 1334 if (this->in_lib_)
b0193076
RÁE
1335 {
1336 gold_assert(!this->input_argument_list_.empty());
1337 gold_assert(this->input_argument_list_.back().is_lib());
c7975edd 1338 return this->input_argument_list_.back().lib()->add_file(file);
b0193076 1339 }
c7975edd
CC
1340 this->input_argument_list_.push_back(Input_argument(file));
1341 return this->input_argument_list_.back();
dbe717ef
ILT
1342}
1343
1344// Start a group.
1345
1346void
1347Input_arguments::start_group()
1348{
ee1fe73e
ILT
1349 if (this->in_group_)
1350 gold_fatal(_("May not nest groups"));
b0193076
RÁE
1351 if (this->in_lib_)
1352 gold_fatal(_("may not nest groups in libraries"));
dbe717ef
ILT
1353 Input_file_group* group = new Input_file_group();
1354 this->input_argument_list_.push_back(Input_argument(group));
1355 this->in_group_ = true;
1356}
1357
1358// End a group.
1359
1360void
1361Input_arguments::end_group()
1362{
ee1fe73e
ILT
1363 if (!this->in_group_)
1364 gold_fatal(_("Group end without group start"));
dbe717ef
ILT
1365 this->in_group_ = false;
1366}
1367
b0193076
RÁE
1368// Start a lib.
1369
1370void
1371Input_arguments::start_lib(const Position_dependent_options& options)
1372{
1373 if (this->in_lib_)
1374 gold_fatal(_("may not nest libraries"));
1375 if (this->in_group_)
1376 gold_fatal(_("may not nest libraries in groups"));
1377 Input_file_lib* lib = new Input_file_lib(options);
1378 this->input_argument_list_.push_back(Input_argument(lib));
1379 this->in_lib_ = true;
1380}
1381
1382// End a lib.
1383
1384void
1385Input_arguments::end_lib()
1386{
1387 if (!this->in_lib_)
1388 gold_fatal(_("lib end without lib start"));
1389 this->in_lib_ = false;
1390}
1391
ead1e424 1392// Command_line options.
bae7f79e 1393
a5dc0706 1394Command_line::Command_line()
bae7f79e
ILT
1395{
1396}
1397
293c1386
CC
1398// Pre_options is the hook that sets the ready_to_register flag.
1399
1400Command_line::Pre_options::Pre_options()
1401{
1402 gold::options::ready_to_register = true;
1403}
1404
ee1fe73e
ILT
1405// Process the command line options. For process_one_option, i is the
1406// index of argv to process next, and must be an option (that is,
1407// start with a dash). The return value is the index of the next
1408// option to process (i+1 or i+2, or argc to indicate processing is
1409// done). no_more_options is set to true if (and when) "--" is seen
1410// as an option.
bae7f79e 1411
a0451b38 1412int
ee1fe73e 1413Command_line::process_one_option(int argc, const char** argv, int i,
bbc5ae17 1414 bool* no_more_options)
bae7f79e 1415{
ee1fe73e 1416 gold_assert(argv[i][0] == '-' && !(*no_more_options));
a0451b38 1417
ee1fe73e
ILT
1418 // If we are reading "--", then just set no_more_options and return.
1419 if (argv[i][1] == '-' && argv[i][2] == '\0')
bae7f79e 1420 {
ee1fe73e 1421 *no_more_options = true;
a0451b38
ILT
1422 return i + 1;
1423 }
bae7f79e 1424
ee1fe73e
ILT
1425 int new_i = i;
1426 options::One_option* option = NULL;
1427 const char* arg = NULL;
bae7f79e 1428
ee1fe73e
ILT
1429 // First, try to process argv as a long option.
1430 option = parse_long_option(argc, argv, false, &arg, &new_i);
1431 if (option)
a0451b38 1432 {
ee1fe73e
ILT
1433 option->reader->parse_to_value(argv[i], arg, this, &this->options_);
1434 return new_i;
a0451b38 1435 }
bae7f79e 1436
ee1fe73e
ILT
1437 // Now, try to process argv as a short option. Since several short
1438 // options can be combined in one argv, we may have to parse a lot
1439 // until we're done reading this argv.
1440 int pos_in_argv_i = 1;
1441 while (new_i == i)
a0451b38 1442 {
ee1fe73e
ILT
1443 option = parse_short_option(argc, argv, pos_in_argv_i, &arg, &new_i);
1444 if (!option)
bbc5ae17 1445 break;
ee1fe73e
ILT
1446 option->reader->parse_to_value(argv[i], arg, this, &this->options_);
1447 ++pos_in_argv_i;
a0451b38 1448 }
ee1fe73e
ILT
1449 if (option)
1450 return new_i;
a0451b38 1451
ee1fe73e
ILT
1452 // I guess it's neither a long option nor a short option.
1453 usage(_("unknown option"), argv[i]);
1454 return argc;
a0451b38 1455}
bae7f79e 1456
bae7f79e 1457
a0451b38 1458void
ee1fe73e 1459Command_line::process(int argc, const char** argv)
a0451b38
ILT
1460{
1461 bool no_more_options = false;
1462 int i = 0;
1463 while (i < argc)
ead1e424 1464 {
ee1fe73e
ILT
1465 this->position_options_.copy_from_options(this->options());
1466 if (no_more_options || argv[i][0] != '-')
bbc5ae17 1467 {
ae3b5189
CD
1468 Input_file_argument file(argv[i],
1469 Input_file_argument::INPUT_FILE_TYPE_FILE,
1470 "", false, this->position_options_);
bbc5ae17
RM
1471 this->inputs_.add_file(file);
1472 ++i;
1473 }
bae7f79e 1474 else
bbc5ae17 1475 i = process_one_option(argc, argv, i, &no_more_options);
bae7f79e 1476 }
bae7f79e 1477
dbe717ef 1478 if (this->inputs_.in_group())
ee1fe73e
ILT
1479 {
1480 fprintf(stderr, _("%s: missing group end\n"), program_name);
1481 usage();
1482 }
bae7f79e 1483
ee1fe73e
ILT
1484 // Normalize the options and ensure they don't contradict each other.
1485 this->options_.finalize();
bae7f79e 1486}
61ba1cf9 1487
6affe781
ILT
1488// Finalize the version script options and return them.
1489
1490const Version_script_info&
1491Command_line::version_script()
1492{
1493 this->options_.finalize_dynamic_list();
1494 Version_script_info* vsi = this->script_options_.version_script_info();
1495 vsi->finalize();
11e32464 1496 return *vsi;
6affe781
ILT
1497}
1498
61ba1cf9 1499} // End namespace gold.
This page took 0.379433 seconds and 4 git commands to generate.