Fix problems with the --dynamic-list option.
[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);
fd834e57 552 this->have_dynamic_list_ = true;
c82fbeee
CS
553}
554
ee1fe73e
ILT
555void
556General_options::parse_start_group(const char*, const char*,
bbc5ae17 557 Command_line* cmdline)
ee1fe73e
ILT
558{
559 cmdline->inputs().start_group();
560}
ead1e424 561
ee1fe73e
ILT
562void
563General_options::parse_end_group(const char*, const char*,
bbc5ae17 564 Command_line* cmdline)
ead1e424 565{
ee1fe73e 566 cmdline->inputs().end_group();
ead1e424
ILT
567}
568
b0193076
RÁE
569void
570General_options::parse_start_lib(const char*, const char*,
bbc5ae17 571 Command_line* cmdline)
b0193076
RÁE
572{
573 cmdline->inputs().start_lib(cmdline->position_dependent_options());
574}
575
576void
577General_options::parse_end_lib(const char*, const char*,
bbc5ae17 578 Command_line* cmdline)
b0193076
RÁE
579{
580 cmdline->inputs().end_lib();
581}
582
65514900 583// The function add_excluded_libs() in ld/ldlang.c of GNU ld breaks up a list
9b547ce6 584// of names separated by commas or colons and puts them in a linked list.
65514900
CC
585// We implement the same parsing of names here but store names in an unordered
586// map to speed up searching of names.
587
588void
589General_options::parse_exclude_libs(const char*, const char* arg,
bbc5ae17 590 Command_line*)
65514900 591{
ca09d69a 592 const char* p = arg;
65514900
CC
593
594 while (*p != '\0')
595 {
596 size_t length = strcspn(p, ",:");
597 this->excluded_libs_.insert(std::string(p, length));
598 p += (p[length] ? length + 1 : length);
599 }
600}
601
602// The checking logic is based on the function check_excluded_libs() in
603// ld/ldlang.c of GNU ld but our implementation is different because we use
604// an unordered map instead of a linked list, which is what GNU ld uses. GNU
605// ld searches sequentially in the excluded libs list. For a given archive,
606// a match is found if the archive's name matches exactly one of the list
607// entry or if the archive's name is of the form FOO.a and FOO matches exactly
608// one of the list entry. An entry "ALL" in the list is considered as a
609// wild-card and matches any given name.
610
611bool
ca09d69a 612General_options::check_excluded_libs(const std::string &name) const
65514900
CC
613{
614 Unordered_set<std::string>::const_iterator p;
615
616 // Exit early for the most common case.
617 if (excluded_libs_.empty())
618 return false;
619
620 // If we see "ALL", all archives are excluded from automatic export.
621 p = excluded_libs_.find(std::string("ALL"));
622 if (p != excluded_libs_.end())
623 return true;
624
2fdd743f 625 // First strip off any directories in name.
ca09d69a 626 const char* basename = lbasename(name.c_str());
2fdd743f 627
65514900 628 // Try finding an exact match.
2fdd743f 629 p = excluded_libs_.find(std::string(basename));
65514900
CC
630 if (p != excluded_libs_.end())
631 return true;
632
633 // Try matching NAME without ".a" at the end.
2fdd743f 634 size_t length = strlen(basename);
65514900 635 if ((length >= 2)
2fdd743f
DK
636 && (basename[length - 2] == '.')
637 && (basename[length - 1] == 'a'))
65514900 638 {
2fdd743f 639 p = excluded_libs_.find(std::string(basename, length - 2));
65514900
CC
640 if (p != excluded_libs_.end())
641 return true;
642 }
643
644 return false;
645}
646
e6a307ba
ILT
647// Recognize input and output target names. The GNU linker accepts
648// these with --format and --oformat. This code is intended to be
649// minimally compatible. In practice for an ELF target this would be
650// the same target as the input files; that name always start with
651// "elf". Non-ELF targets would be "srec", "symbolsrec", "tekhex",
652// "binary", "ihex".
653
654General_options::Object_format
655General_options::string_to_object_format(const char* arg)
656{
956b03bb 657 if (strncmp(arg, "elf", 3) == 0 || strcmp(arg, "default") == 0)
e6a307ba
ILT
658 return gold::General_options::OBJECT_FORMAT_ELF;
659 else if (strcmp(arg, "binary") == 0)
660 return gold::General_options::OBJECT_FORMAT_BINARY;
661 else
662 {
663 gold::gold_error(_("format '%s' not supported; treating as elf "
bbc5ae17
RM
664 "(supported formats: elf, binary)"),
665 arg);
e6a307ba
ILT
666 return gold::General_options::OBJECT_FORMAT_ELF;
667 }
668}
669
9b2fd367
DK
670void
671General_options::parse_fix_v4bx(const char*, const char*,
bbc5ae17 672 Command_line*)
9b2fd367
DK
673{
674 this->fix_v4bx_ = FIX_V4BX_REPLACE;
675}
676
677void
678General_options::parse_fix_v4bx_interworking(const char*, const char*,
679 Command_line*)
680{
681 this->fix_v4bx_ = FIX_V4BX_INTERWORKING;
682}
683
7296d933
DK
684void
685General_options::parse_EB(const char*, const char*, Command_line*)
686{
687 this->endianness_ = ENDIANNESS_BIG;
688}
689
690void
691General_options::parse_EL(const char*, const char*, Command_line*)
692{
693 this->endianness_ = ENDIANNESS_LITTLE;
694}
695
ee1fe73e 696} // End namespace gold.
bae7f79e 697
ee1fe73e 698namespace
bae7f79e 699{
bae7f79e 700
ee1fe73e
ILT
701void
702usage()
703{
704 fprintf(stderr,
bbc5ae17
RM
705 _("%s: use the --help option for usage information\n"),
706 gold::program_name);
ee1fe73e
ILT
707 ::exit(EXIT_FAILURE);
708}
bae7f79e 709
ee1fe73e 710void
ca09d69a 711usage(const char* msg, const char* opt)
ee1fe73e
ILT
712{
713 fprintf(stderr,
bbc5ae17
RM
714 _("%s: %s: %s\n"),
715 gold::program_name, opt, msg);
ee1fe73e 716 usage();
bae7f79e
ILT
717}
718
ad2d6943
ILT
719// If the default sysroot is relocatable, try relocating it based on
720// the prefix FROM.
721
fd9d194f 722static char*
ad2d6943
ILT
723get_relative_sysroot(const char* from)
724{
725 char* path = make_relative_prefix(gold::program_name, from,
bbc5ae17 726 TARGET_SYSTEM_ROOT);
ad2d6943
ILT
727 if (path != NULL)
728 {
729 struct stat s;
730 if (::stat(path, &s) == 0 && S_ISDIR(s.st_mode))
bbc5ae17 731 return path;
ad2d6943
ILT
732 free(path);
733 }
734
735 return NULL;
736}
737
738// Return the default sysroot. This is set by the --with-sysroot
ee1fe73e
ILT
739// option to configure. Note we do not free the return value of
740// get_relative_sysroot, which is a small memory leak, but is
741// necessary since we store this pointer directly in General_options.
ad2d6943 742
fd9d194f 743static const char*
ad2d6943
ILT
744get_default_sysroot()
745{
746 const char* sysroot = TARGET_SYSTEM_ROOT;
747 if (*sysroot == '\0')
ee1fe73e 748 return NULL;
ad2d6943
ILT
749
750 if (TARGET_SYSTEM_ROOT_RELOCATABLE)
751 {
ee1fe73e 752 char* path = get_relative_sysroot(BINDIR);
ad2d6943 753 if (path == NULL)
bbc5ae17 754 path = get_relative_sysroot(TOOLBINDIR);
ad2d6943 755 if (path != NULL)
bbc5ae17 756 return path;
ad2d6943
ILT
757 }
758
759 return sysroot;
760}
761
ee1fe73e
ILT
762// Parse a long option. Such options have the form
763// <-|--><option>[=arg]. If "=arg" is not present but the option
764// takes an argument, the next word is taken to the be the argument.
765// If equals_only is set, then only the <option>=<arg> form is
766// accepted, not the <option><space><arg> form. Returns a One_option
767// struct or NULL if argv[i] cannot be parsed as a long option. In
768// the not-NULL case, *arg is set to the option's argument (NULL if
769// the option takes no argument), and *i is advanced past this option.
770// NOTE: it is safe for argv and arg to point to the same place.
771gold::options::One_option*
772parse_long_option(int argc, const char** argv, bool equals_only,
bbc5ae17 773 const char** arg, int* i)
61ba1cf9 774{
ee1fe73e 775 const char* const this_argv = argv[*i];
bae7f79e 776
ee1fe73e
ILT
777 const char* equals = strchr(this_argv, '=');
778 const char* option_start = this_argv + strspn(this_argv, "-");
779 std::string option(option_start,
bbc5ae17 780 equals ? equals - option_start : strlen(option_start));
35cdfc9a 781
ee1fe73e
ILT
782 gold::options::Option_map::iterator it
783 = gold::options::long_options->find(option);
784 if (it == gold::options::long_options->end())
785 return NULL;
35cdfc9a 786
ee1fe73e 787 gold::options::One_option* retval = it->second;
c7912668 788
ee1fe73e
ILT
789 // If the dash-count doesn't match, we fail.
790 if (this_argv[0] != '-') // no dashes at all: had better be "-z <longopt>"
791 {
792 if (retval->dashes != gold::options::DASH_Z)
bbc5ae17 793 return NULL;
ee1fe73e
ILT
794 }
795 else if (this_argv[1] != '-') // one dash
796 {
797 if (retval->dashes != gold::options::ONE_DASH
bbc5ae17
RM
798 && retval->dashes != gold::options::EXACTLY_ONE_DASH
799 && retval->dashes != gold::options::TWO_DASHES)
800 return NULL;
ee1fe73e
ILT
801 }
802 else // two dashes (or more!)
803 {
804 if (retval->dashes != gold::options::TWO_DASHES
bbc5ae17
RM
805 && retval->dashes != gold::options::EXACTLY_TWO_DASHES
806 && retval->dashes != gold::options::ONE_DASH)
807 return NULL;
ee1fe73e 808 }
bae7f79e 809
ee1fe73e
ILT
810 // Now that we know the option is good (or else bad in a way that
811 // will cause us to die), increment i to point past this argv.
812 ++(*i);
bae7f79e 813
ee1fe73e
ILT
814 // Figure out the option's argument, if any.
815 if (!retval->takes_argument())
816 {
817 if (equals)
bbc5ae17 818 usage(_("unexpected argument"), this_argv);
ee1fe73e 819 else
bbc5ae17 820 *arg = NULL;
ee1fe73e
ILT
821 }
822 else
823 {
824 if (equals)
bbc5ae17 825 *arg = equals + 1;
086a1841
ILT
826 else if (retval->takes_optional_argument())
827 *arg = retval->default_value;
ee1fe73e 828 else if (*i < argc && !equals_only)
bbc5ae17 829 *arg = argv[(*i)++];
ee1fe73e 830 else
bbc5ae17 831 usage(_("missing argument"), this_argv);
ee1fe73e 832 }
516cb3d0 833
ee1fe73e
ILT
834 return retval;
835}
836
837// Parse a short option. Such options have the form -<option>[arg].
838// If "arg" is not present but the option takes an argument, the next
839// word is taken to the be the argument. If the option does not take
840// an argument, it may be followed by another short option. Returns a
841// One_option struct or NULL if argv[i] cannot be parsed as a short
842// option. In the not-NULL case, *arg is set to the option's argument
843// (NULL if the option takes no argument), and *i is advanced past
844// this option. This function keeps *i the same if we parsed a short
845// option that does not take an argument, that looks to be followed by
846// another short option in the same word.
847gold::options::One_option*
848parse_short_option(int argc, const char** argv, int pos_in_argv_i,
bbc5ae17 849 const char** arg, int* i)
ee1fe73e
ILT
850{
851 const char* const this_argv = argv[*i];
852
853 if (this_argv[0] != '-')
854 return NULL;
855
856 // We handle -z as a special case.
857 static gold::options::One_option dash_z("", gold::options::DASH_Z,
bbc5ae17 858 'z', "", NULL, "Z-OPTION", false,
086a1841 859 NULL);
ee1fe73e
ILT
860 gold::options::One_option* retval = NULL;
861 if (this_argv[pos_in_argv_i] == 'z')
862 retval = &dash_z;
863 else
864 {
865 const int char_as_int = static_cast<int>(this_argv[pos_in_argv_i]);
866 if (char_as_int > 0 && char_as_int < 128)
bbc5ae17 867 retval = gold::options::short_options[char_as_int];
ee1fe73e 868 }
516cb3d0 869
ee1fe73e
ILT
870 if (retval == NULL)
871 return NULL;
35cdfc9a 872
ee1fe73e
ILT
873 // Figure out the option's argument, if any.
874 if (!retval->takes_argument())
cd72c291 875 {
ee1fe73e
ILT
876 *arg = NULL;
877 // We only advance past this argument if it's the only one in argv.
878 if (this_argv[pos_in_argv_i + 1] == '\0')
bbc5ae17 879 ++(*i);
cd72c291
ILT
880 }
881 else
ee1fe73e
ILT
882 {
883 // If we take an argument, we'll eat up this entire argv entry.
884 ++(*i);
885 if (this_argv[pos_in_argv_i + 1] != '\0')
bbc5ae17 886 *arg = this_argv + pos_in_argv_i + 1;
086a1841
ILT
887 else if (retval->takes_optional_argument())
888 *arg = retval->default_value;
ee1fe73e 889 else if (*i < argc)
bbc5ae17 890 *arg = argv[(*i)++];
ee1fe73e 891 else
bbc5ae17 892 usage(_("missing argument"), this_argv);
ee1fe73e 893 }
cd72c291 894
ee1fe73e
ILT
895 // If we're a -z option, we need to parse our argument as a
896 // long-option, e.g. "-z stacksize=8192".
897 if (retval == &dash_z)
35cdfc9a 898 {
ee1fe73e
ILT
899 int dummy_i = 0;
900 const char* dash_z_arg = *arg;
901 retval = parse_long_option(1, arg, true, arg, &dummy_i);
902 if (retval == NULL)
bbc5ae17 903 usage(_("unknown -z option"), dash_z_arg);
35cdfc9a
ILT
904 }
905
ee1fe73e 906 return retval;
c7912668
ILT
907}
908
ee1fe73e 909} // End anonymous namespace.
c7912668 910
ee1fe73e 911namespace gold
c7912668 912{
c7912668 913
ee1fe73e 914General_options::General_options()
459c9f1c 915 : printed_version_(false),
a192ba05
ILT
916 execstack_status_(EXECSTACK_FROM_INPUT),
917 icf_status_(ICF_NONE),
918 static_(false),
919 do_demangle_(false),
920 plugins_(NULL),
921 dynamic_list_(),
fd834e57 922 have_dynamic_list_(false),
8c21d9d3 923 incremental_mode_(INCREMENTAL_OFF),
221597a5
CC
924 incremental_disposition_(INCREMENTAL_STARTUP),
925 incremental_startup_disposition_(INCREMENTAL_CHECK),
a192ba05
ILT
926 implicit_incremental_(false),
927 excluded_libs_(),
928 symbols_to_retain_(),
2fd9ae7a 929 section_starts_(),
7296d933
DK
930 fix_v4bx_(FIX_V4BX_NONE),
931 endianness_(ENDIANNESS_NOT_SET)
ee1fe73e 932{
293c1386
CC
933 // Turn off option registration once construction is complete.
934 gold::options::ready_to_register = false;
ee1fe73e
ILT
935}
936
937General_options::Object_format
938General_options::format_enum() const
939{
e6a307ba 940 return General_options::string_to_object_format(this->format());
ee1fe73e
ILT
941}
942
943General_options::Object_format
944General_options::oformat_enum() const
945{
e6a307ba 946 return General_options::string_to_object_format(this->oformat());
35cdfc9a
ILT
947}
948
ad2d6943
ILT
949// Add the sysroot, if any, to the search paths.
950
951void
952General_options::add_sysroot()
953{
ee1fe73e 954 if (this->sysroot() == NULL || this->sysroot()[0] == '\0')
ad2d6943 955 {
ee1fe73e
ILT
956 this->set_sysroot(get_default_sysroot());
957 if (this->sysroot() == NULL || this->sysroot()[0] == '\0')
bbc5ae17 958 return;
ad2d6943
ILT
959 }
960
ee1fe73e 961 char* canonical_sysroot = lrealpath(this->sysroot());
ad2d6943 962
ee1fe73e
ILT
963 for (Dir_list::iterator p = this->library_path_.value.begin();
964 p != this->library_path_.value.end();
ad2d6943 965 ++p)
ee1fe73e 966 p->add_sysroot(this->sysroot(), canonical_sysroot);
ad2d6943
ILT
967
968 free(canonical_sysroot);
969}
970
fd9d194f
ILT
971// Return whether FILENAME is in a system directory.
972
973bool
974General_options::is_in_system_directory(const std::string& filename) const
975{
976 for (Dir_list::const_iterator p = this->library_path_.value.begin();
977 p != this->library_path_.value.end();
978 ++p)
979 {
980 // We use a straight string comparison rather than calling
981 // FILENAME_CMP because we are only interested in the cases
982 // where we found the file in a system directory, which means
983 // that we used the directory name as a prefix for a -L search.
984 if (p->is_system_directory()
985 && filename.compare(0, p->name().size(), p->name()) == 0)
986 return true;
987 }
988 return false;
989}
990
4674ecfc 991// Add a plugin to the list of plugins.
89fc3421
CC
992
993void
4674ecfc 994General_options::add_plugin(const char* filename)
89fc3421
CC
995{
996 if (this->plugins_ == NULL)
997 this->plugins_ = new Plugin_manager(*this);
4674ecfc
CC
998 this->plugins_->add_plugin(filename);
999}
1000
1001// Add a plugin option to a plugin.
1002
1003void
1004General_options::add_plugin_option(const char* arg)
1005{
1006 if (this->plugins_ == NULL)
1007 gold_fatal("--plugin-opt requires --plugin.");
1008 this->plugins_->add_plugin_option(arg);
89fc3421
CC
1009}
1010
ee1fe73e
ILT
1011// Set up variables and other state that isn't set up automatically by
1012// the parse routine, and ensure options don't contradict each other
1013// and are otherwise kosher.
e5756efb 1014
ee1fe73e
ILT
1015void
1016General_options::finalize()
bc644c6c 1017{
ee1fe73e 1018 // Normalize the strip modifiers. They have a total order:
62b01cb5
ILT
1019 // strip_all > strip_debug > strip_non_line > strip_debug_gdb.
1020 // If one is true, set all beneath it to true as well.
ee1fe73e
ILT
1021 if (this->strip_all())
1022 this->set_strip_debug(true);
1023 if (this->strip_debug())
62b01cb5
ILT
1024 this->set_strip_debug_non_line(true);
1025 if (this->strip_debug_non_line())
ee1fe73e 1026 this->set_strip_debug_gdb(true);
bc644c6c 1027
3b293544
CF
1028 if (this->Bshareable())
1029 this->set_shared(true);
1030
ee1fe73e
ILT
1031 // If the user specifies both -s and -r, convert the -s to -S.
1032 // -r requires us to keep externally visible symbols!
1033 if (this->strip_all() && this->relocatable())
1034 {
1035 this->set_strip_all(false);
1036 gold_assert(this->strip_debug());
1037 }
bc644c6c 1038
ee1fe73e
ILT
1039 // For us, -dc and -dp are synonyms for --define-common.
1040 if (this->dc())
1041 this->set_define_common(true);
1042 if (this->dp())
1043 this->set_define_common(true);
1044
1045 // We also set --define-common if we're not relocatable, as long as
1046 // the user didn't explicitly ask for something different.
1047 if (!this->user_set_define_common())
1048 this->set_define_common(!this->relocatable());
1049
1050 // execstack_status_ is a three-state variable; update it based on
1051 // -z [no]execstack.
1052 if (this->execstack())
1053 this->set_execstack_status(EXECSTACK_YES);
1054 else if (this->noexecstack())
1055 this->set_execstack_status(EXECSTACK_NO);
1056
032ce4e9
ST
1057 // icf_status_ is a three-state variable; update it based on the
1058 // value of this->icf().
1059 if (strcmp(this->icf(), "none") == 0)
1060 this->set_icf_status(ICF_NONE);
1061 else if (strcmp(this->icf(), "safe") == 0)
1062 this->set_icf_status(ICF_SAFE);
1063 else
1064 this->set_icf_status(ICF_ALL);
1065
086a1841
ILT
1066 // Handle the optional argument for --demangle.
1067 if (this->user_set_demangle())
1068 {
1069 this->set_do_demangle(true);
1070 const char* style = this->demangle();
1071 if (*style != '\0')
1072 {
1073 enum demangling_styles style_code;
1074
1075 style_code = cplus_demangle_name_to_style(style);
1076 if (style_code == unknown_demangling)
1077 gold_fatal("unknown demangling style '%s'", style);
1078 cplus_demangle_set_style(style_code);
1079 }
1080 }
1081 else if (this->user_set_no_demangle())
1082 this->set_do_demangle(false);
1083 else
1084 {
1085 // Testing COLLECT_NO_DEMANGLE makes our default demangling
1086 // behaviour identical to that of gcc's linker wrapper.
1087 this->set_do_demangle(getenv("COLLECT_NO_DEMANGLE") == NULL);
1088 }
1089
7d9e3d98
ILT
1090 // -M is equivalent to "-Map -".
1091 if (this->print_map() && !this->user_set_Map())
1092 {
1093 this->set_Map("-");
1094 this->set_user_set_Map();
1095 }
1096
af6156ef
ILT
1097 // Using -n or -N implies -static.
1098 if (this->nmagic() || this->omagic())
1099 this->set_static(true);
1100
ee1fe73e
ILT
1101 // If --thread_count is specified, it applies to
1102 // --thread-count-{initial,middle,final}, though it doesn't override
1103 // them.
1104 if (this->thread_count() > 0 && this->thread_count_initial() == 0)
1105 this->set_thread_count_initial(this->thread_count());
1106 if (this->thread_count() > 0 && this->thread_count_middle() == 0)
1107 this->set_thread_count_middle(this->thread_count());
1108 if (this->thread_count() > 0 && this->thread_count_final() == 0)
1109 this->set_thread_count_final(this->thread_count());
1110
09ffbbe0
ILT
1111 // Let's warn if you set the thread-count but we're going to ignore it.
1112#ifndef ENABLE_THREADS
1113 if (this->threads())
1114 {
1115 gold_warning(_("ignoring --threads: "
1116 "%s was compiled without thread support"),
1117 program_name);
1118 this->set_threads(false);
1119 }
1120 if (this->thread_count() > 0 || this->thread_count_initial() > 0
1121 || this->thread_count_middle() > 0 || this->thread_count_final() > 0)
1122 gold_warning(_("ignoring --thread-count: "
bbc5ae17
RM
1123 "%s was compiled without thread support"),
1124 program_name);
09ffbbe0
ILT
1125#endif
1126
3f3cddf1 1127 std::string libpath;
706e1f5e
ILT
1128 if (this->user_set_Y())
1129 {
3f3cddf1
ILT
1130 libpath = this->Y();
1131 if (libpath.compare(0, 2, "P,") == 0)
1132 libpath.erase(0, 2);
1133 }
1134 else if (!this->nostdlib())
1135 {
1136#ifndef NATIVE_LINKER
1137#define NATIVE_LINKER 0
1138#endif
1139 const char* p = LIB_PATH;
1140 if (strcmp(p, "::DEFAULT::") != 0)
1141 libpath = p;
1142 else if (NATIVE_LINKER
1143 || this->user_set_sysroot()
1144 || *TARGET_SYSTEM_ROOT != '\0')
1145 {
1146 this->add_to_library_path_with_sysroot("/lib");
1147 this->add_to_library_path_with_sysroot("/usr/lib");
1148 }
1149 else
1150 this->add_to_library_path_with_sysroot(TOOLLIBDIR);
1151 }
706e1f5e 1152
3f3cddf1
ILT
1153 if (!libpath.empty())
1154 {
706e1f5e
ILT
1155 size_t pos = 0;
1156 size_t next_pos;
1157 do
1158 {
3f3cddf1 1159 next_pos = libpath.find(':', pos);
706e1f5e
ILT
1160 size_t len = (next_pos == std::string::npos
1161 ? next_pos
1162 : next_pos - pos);
1163 if (len != 0)
3f3cddf1 1164 this->add_to_library_path_with_sysroot(libpath.substr(pos, len));
706e1f5e
ILT
1165 pos = next_pos + 1;
1166 }
1167 while (next_pos != std::string::npos);
1168 }
ee1fe73e 1169
8c604651
CS
1170 // Parse the contents of -retain-symbols-file into a set.
1171 if (this->retain_symbols_file())
1172 {
1173 std::ifstream in;
1174 in.open(this->retain_symbols_file());
1175 if (!in)
bbc5ae17
RM
1176 gold_fatal(_("unable to open -retain-symbols-file file %s: %s"),
1177 this->retain_symbols_file(), strerror(errno));
8c604651
CS
1178 std::string line;
1179 std::getline(in, line); // this chops off the trailing \n, if any
1180 while (in)
bbc5ae17
RM
1181 {
1182 if (!line.empty() && line[line.length() - 1] == '\r') // Windows
1183 line.resize(line.length() - 1);
1184 this->symbols_to_retain_.insert(line);
1185 std::getline(in, line);
1186 }
8c604651
CS
1187 }
1188
e2153196
ILT
1189 // -Bgroup implies --unresolved-symbols=report-all.
1190 if (this->Bgroup() && !this->user_set_unresolved_symbols())
1191 this->set_unresolved_symbols("report-all");
1192
1193 // -shared implies --allow-shlib-undefined. Currently
1194 // ---allow-shlib-undefined controls warnings issued based on the
1195 // -symbol table. --unresolved-symbols controls warnings issued
1196 // -based on relocations.
d7ab2a47
KVH
1197 if (this->shared() && !this->user_set_allow_shlib_undefined())
1198 this->set_allow_shlib_undefined(true);
1199
ee1fe73e
ILT
1200 // Normalize library_path() by adding the sysroot to all directories
1201 // in the path, as appropriate.
1202 this->add_sysroot();
1203
fd834e57
CC
1204 // --dynamic-list overrides -Bsymbolic and -Bsymbolic-functions.
1205 if (this->have_dynamic_list())
1206 {
1207 this->set_Bsymbolic(false);
1208 this->set_Bsymbolic_functions(false);
1209 }
1210
ee1fe73e 1211 // Now that we've normalized the options, check for contradictory ones.
4e1e25e0
CC
1212 if (this->shared() && this->is_static())
1213 gold_fatal(_("-shared and -static are incompatible"));
374ad285
ILT
1214 if (this->shared() && this->pie())
1215 gold_fatal(_("-shared and -pie are incompatible"));
f9fa4a63
CC
1216 if (this->pie() && this->is_static())
1217 gold_fatal(_("-pie and -static are incompatible"));
4e1e25e0 1218
ee1fe73e
ILT
1219 if (this->shared() && this->relocatable())
1220 gold_fatal(_("-shared and -r are incompatible"));
374ad285
ILT
1221 if (this->pie() && this->relocatable())
1222 gold_fatal(_("-pie and -r are incompatible"));
ee1fe73e 1223
886288f1
ILT
1224 if (!this->shared())
1225 {
1226 if (this->filter() != NULL)
1227 gold_fatal(_("-F/--filter may not used without -shared"));
1228 if (this->any_auxiliary())
1229 gold_fatal(_("-f/--auxiliary may not be used without -shared"));
1230 }
1231
8c604651
CS
1232 // TODO: implement support for -retain-symbols-file with -r, if needed.
1233 if (this->relocatable() && this->retain_symbols_file())
1234 gold_fatal(_("-retain-symbols-file does not yet work with -r"));
1235
ee1fe73e 1236 if (this->oformat_enum() != General_options::OBJECT_FORMAT_ELF
374ad285
ILT
1237 && (this->shared()
1238 || this->pie()
1239 || this->relocatable()))
1240 gold_fatal(_("binary output format not compatible "
1241 "with -shared or -pie or -r"));
ee1fe73e 1242
c18476e7
ILT
1243 if (this->user_set_hash_bucket_empty_fraction()
1244 && (this->hash_bucket_empty_fraction() < 0.0
1245 || this->hash_bucket_empty_fraction() >= 1.0))
1246 gold_fatal(_("--hash-bucket-empty-fraction value %g out of range "
1247 "[0.0, 1.0)"),
1248 this->hash_bucket_empty_fraction());
1249
8c21d9d3 1250 if (this->implicit_incremental_ && this->incremental_mode_ == INCREMENTAL_OFF)
266d0a74 1251 gold_fatal(_("Options --incremental-changed, --incremental-unchanged, "
bbc5ae17 1252 "--incremental-unknown require the use of --incremental"));
266d0a74 1253
403a3331
CC
1254 // Check for options that are not compatible with incremental linking.
1255 // Where an option can be disabled without seriously changing the semantics
1256 // of the link, we turn the option off; otherwise, we issue a fatal error.
1257
1258 if (this->incremental_mode_ != INCREMENTAL_OFF)
1259 {
1260 if (this->relocatable())
1261 gold_fatal(_("incremental linking is not compatible with -r"));
1262 if (this->emit_relocs())
1263 gold_fatal(_("incremental linking is not compatible with "
1264 "--emit-relocs"));
1265 if (this->has_plugins())
1266 gold_fatal(_("incremental linking is not compatible with --plugin"));
1267 if (this->gc_sections())
1268 {
1269 gold_warning(_("ignoring --gc-sections for an incremental link"));
1270 this->set_gc_sections(false);
1271 }
1272 if (this->icf_enabled())
1273 {
1274 gold_warning(_("ignoring --icf for an incremental link"));
1275 this->set_icf_status(ICF_NONE);
1276 }
1277 if (strcmp(this->compress_debug_sections(), "none") != 0)
1278 {
1279 gold_warning(_("ignoring --compress-debug-sections for an "
1280 "incremental link"));
1281 this->set_compress_debug_sections("none");
1282 }
1283 }
1284
bbc5ae17
RM
1285 // --rosegment-gap implies --rosegment.
1286 if (this->user_set_rosegment_gap())
1287 this->set_rosegment(true);
1288
ee1fe73e 1289 // FIXME: we can/should be doing a lot more sanity checking here.
e5756efb
ILT
1290}
1291
ad2d6943
ILT
1292// Search_directory methods.
1293
1294// This is called if we have a sysroot. Apply the sysroot if
1295// appropriate. Record whether the directory is in the sysroot.
1296
1297void
1298Search_directory::add_sysroot(const char* sysroot,
bbc5ae17 1299 const char* canonical_sysroot)
ad2d6943
ILT
1300{
1301 gold_assert(*sysroot != '\0');
1302 if (this->put_in_sysroot_)
1303 {
1304 if (!IS_DIR_SEPARATOR(this->name_[0])
bbc5ae17
RM
1305 && !IS_DIR_SEPARATOR(sysroot[strlen(sysroot) - 1]))
1306 this->name_ = '/' + this->name_;
ad2d6943
ILT
1307 this->name_ = sysroot + this->name_;
1308 this->is_in_sysroot_ = true;
1309 }
1310 else
1311 {
1312 // Check whether this entry is in the sysroot. To do this
1313 // correctly, we need to use canonical names. Otherwise we will
1314 // get confused by the ../../.. paths that gcc tends to use.
1315 char* canonical_name = lrealpath(this->name_.c_str());
1316 int canonical_name_len = strlen(canonical_name);
1317 int canonical_sysroot_len = strlen(canonical_sysroot);
1318 if (canonical_name_len > canonical_sysroot_len
bbc5ae17
RM
1319 && IS_DIR_SEPARATOR(canonical_name[canonical_sysroot_len]))
1320 {
1321 canonical_name[canonical_sysroot_len] = '\0';
1322 if (FILENAME_CMP(canonical_name, canonical_sysroot) == 0)
1323 this->is_in_sysroot_ = true;
1324 }
ad2d6943
ILT
1325 free(canonical_name);
1326 }
1327}
1328
dbe717ef
ILT
1329// Input_arguments methods.
1330
1331// Add a file to the list.
1332
c7975edd 1333Input_argument&
cdc29364 1334Input_arguments::add_file(Input_file_argument& file)
dbe717ef 1335{
cdc29364 1336 file.set_arg_serial(++this->file_count_);
b0193076 1337 if (this->in_group_)
dbe717ef 1338 {
a3ad94ed
ILT
1339 gold_assert(!this->input_argument_list_.empty());
1340 gold_assert(this->input_argument_list_.back().is_group());
c7975edd 1341 return this->input_argument_list_.back().group()->add_file(file);
dbe717ef 1342 }
c7975edd 1343 if (this->in_lib_)
b0193076
RÁE
1344 {
1345 gold_assert(!this->input_argument_list_.empty());
1346 gold_assert(this->input_argument_list_.back().is_lib());
c7975edd 1347 return this->input_argument_list_.back().lib()->add_file(file);
b0193076 1348 }
c7975edd
CC
1349 this->input_argument_list_.push_back(Input_argument(file));
1350 return this->input_argument_list_.back();
dbe717ef
ILT
1351}
1352
1353// Start a group.
1354
1355void
1356Input_arguments::start_group()
1357{
ee1fe73e
ILT
1358 if (this->in_group_)
1359 gold_fatal(_("May not nest groups"));
b0193076
RÁE
1360 if (this->in_lib_)
1361 gold_fatal(_("may not nest groups in libraries"));
dbe717ef
ILT
1362 Input_file_group* group = new Input_file_group();
1363 this->input_argument_list_.push_back(Input_argument(group));
1364 this->in_group_ = true;
1365}
1366
1367// End a group.
1368
1369void
1370Input_arguments::end_group()
1371{
ee1fe73e
ILT
1372 if (!this->in_group_)
1373 gold_fatal(_("Group end without group start"));
dbe717ef
ILT
1374 this->in_group_ = false;
1375}
1376
b0193076
RÁE
1377// Start a lib.
1378
1379void
1380Input_arguments::start_lib(const Position_dependent_options& options)
1381{
1382 if (this->in_lib_)
1383 gold_fatal(_("may not nest libraries"));
1384 if (this->in_group_)
1385 gold_fatal(_("may not nest libraries in groups"));
1386 Input_file_lib* lib = new Input_file_lib(options);
1387 this->input_argument_list_.push_back(Input_argument(lib));
1388 this->in_lib_ = true;
1389}
1390
1391// End a lib.
1392
1393void
1394Input_arguments::end_lib()
1395{
1396 if (!this->in_lib_)
1397 gold_fatal(_("lib end without lib start"));
1398 this->in_lib_ = false;
1399}
1400
ead1e424 1401// Command_line options.
bae7f79e 1402
a5dc0706 1403Command_line::Command_line()
bae7f79e
ILT
1404{
1405}
1406
293c1386
CC
1407// Pre_options is the hook that sets the ready_to_register flag.
1408
1409Command_line::Pre_options::Pre_options()
1410{
1411 gold::options::ready_to_register = true;
1412}
1413
ee1fe73e
ILT
1414// Process the command line options. For process_one_option, i is the
1415// index of argv to process next, and must be an option (that is,
1416// start with a dash). The return value is the index of the next
1417// option to process (i+1 or i+2, or argc to indicate processing is
1418// done). no_more_options is set to true if (and when) "--" is seen
1419// as an option.
bae7f79e 1420
a0451b38 1421int
ee1fe73e 1422Command_line::process_one_option(int argc, const char** argv, int i,
bbc5ae17 1423 bool* no_more_options)
bae7f79e 1424{
ee1fe73e 1425 gold_assert(argv[i][0] == '-' && !(*no_more_options));
a0451b38 1426
ee1fe73e
ILT
1427 // If we are reading "--", then just set no_more_options and return.
1428 if (argv[i][1] == '-' && argv[i][2] == '\0')
bae7f79e 1429 {
ee1fe73e 1430 *no_more_options = true;
a0451b38
ILT
1431 return i + 1;
1432 }
bae7f79e 1433
ee1fe73e
ILT
1434 int new_i = i;
1435 options::One_option* option = NULL;
1436 const char* arg = NULL;
bae7f79e 1437
ee1fe73e
ILT
1438 // First, try to process argv as a long option.
1439 option = parse_long_option(argc, argv, false, &arg, &new_i);
1440 if (option)
a0451b38 1441 {
ee1fe73e
ILT
1442 option->reader->parse_to_value(argv[i], arg, this, &this->options_);
1443 return new_i;
a0451b38 1444 }
bae7f79e 1445
ee1fe73e
ILT
1446 // Now, try to process argv as a short option. Since several short
1447 // options can be combined in one argv, we may have to parse a lot
1448 // until we're done reading this argv.
1449 int pos_in_argv_i = 1;
1450 while (new_i == i)
a0451b38 1451 {
ee1fe73e
ILT
1452 option = parse_short_option(argc, argv, pos_in_argv_i, &arg, &new_i);
1453 if (!option)
bbc5ae17 1454 break;
ee1fe73e
ILT
1455 option->reader->parse_to_value(argv[i], arg, this, &this->options_);
1456 ++pos_in_argv_i;
a0451b38 1457 }
ee1fe73e
ILT
1458 if (option)
1459 return new_i;
a0451b38 1460
ee1fe73e
ILT
1461 // I guess it's neither a long option nor a short option.
1462 usage(_("unknown option"), argv[i]);
1463 return argc;
a0451b38 1464}
bae7f79e 1465
bae7f79e 1466
a0451b38 1467void
ee1fe73e 1468Command_line::process(int argc, const char** argv)
a0451b38
ILT
1469{
1470 bool no_more_options = false;
1471 int i = 0;
1472 while (i < argc)
ead1e424 1473 {
ee1fe73e
ILT
1474 this->position_options_.copy_from_options(this->options());
1475 if (no_more_options || argv[i][0] != '-')
bbc5ae17 1476 {
ae3b5189
CD
1477 Input_file_argument file(argv[i],
1478 Input_file_argument::INPUT_FILE_TYPE_FILE,
1479 "", false, this->position_options_);
bbc5ae17
RM
1480 this->inputs_.add_file(file);
1481 ++i;
1482 }
bae7f79e 1483 else
bbc5ae17 1484 i = process_one_option(argc, argv, i, &no_more_options);
bae7f79e 1485 }
bae7f79e 1486
dbe717ef 1487 if (this->inputs_.in_group())
ee1fe73e
ILT
1488 {
1489 fprintf(stderr, _("%s: missing group end\n"), program_name);
1490 usage();
1491 }
bae7f79e 1492
ee1fe73e
ILT
1493 // Normalize the options and ensure they don't contradict each other.
1494 this->options_.finalize();
bae7f79e 1495}
61ba1cf9 1496
6affe781
ILT
1497// Finalize the version script options and return them.
1498
1499const Version_script_info&
1500Command_line::version_script()
1501{
1502 this->options_.finalize_dynamic_list();
1503 Version_script_info* vsi = this->script_options_.version_script_info();
1504 vsi->finalize();
11e32464 1505 return *vsi;
6affe781
ILT
1506}
1507
61ba1cf9 1508} // End namespace gold.
This page took 0.41642 seconds and 4 git commands to generate.