bfd
[deliverable/binutils-gdb.git] / gold / options.cc
CommitLineData
bae7f79e
ILT
1// options.c -- handle command line options for gold
2
fd9d194f 3// Copyright 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6cb15b7f
ILT
4// Written by Ian Lance Taylor <iant@google.com>.
5
6// This file is part of gold.
7
8// This program is free software; you can redistribute it and/or modify
9// it under the terms of the GNU General Public License as published by
10// the Free Software Foundation; either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17
18// You should have received a copy of the GNU General Public License
19// along with this program; if not, write to the Free Software
20// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21// MA 02110-1301, USA.
22
ad2d6943
ILT
23#include "gold.h"
24
a2b1aa12 25#include <cstdlib>
04bf7072 26#include <cstring>
ee1fe73e 27#include <vector>
bae7f79e 28#include <iostream>
ad2d6943
ILT
29#include <sys/stat.h>
30#include "filenames.h"
31#include "libiberty.h"
086a1841 32#include "demangle.h"
819d6c3a 33#include "../bfd/bfdver.h"
bae7f79e 34
c7912668 35#include "debug.h"
e5756efb 36#include "script.h"
ee1fe73e 37#include "target-select.h"
bae7f79e 38#include "options.h"
89fc3421 39#include "plugin.h"
bae7f79e 40
61ba1cf9
ILT
41namespace gold
42{
43
ee1fe73e
ILT
44General_options
45Position_dependent_options::default_options_;
bae7f79e 46
ee1fe73e 47namespace options
bae7f79e 48{
bae7f79e 49
ee1fe73e
ILT
50// This global variable is set up as General_options is constructed.
51static std::vector<const One_option*> registered_options;
bae7f79e 52
ee1fe73e
ILT
53// These are set up at the same time -- the variables that accept one
54// dash, two, or require -z. A single variable may be in more than
55// one of thes data structures.
56typedef Unordered_map<std::string, One_option*> Option_map;
57static Option_map* long_options = NULL;
58static One_option* short_options[128];
bae7f79e 59
ee1fe73e
ILT
60void
61One_option::register_option()
35cdfc9a 62{
ee1fe73e 63 registered_options.push_back(this);
35cdfc9a 64
ee1fe73e
ILT
65 // We can't make long_options a static Option_map because we can't
66 // guarantee that will be initialized before register_option() is
67 // first called.
68 if (long_options == NULL)
69 long_options = new Option_map;
cd72c291 70
ee1fe73e
ILT
71 // TWO_DASHES means that two dashes are preferred, but one is ok too.
72 if (!this->longname.empty())
73 (*long_options)[this->longname] = this;
35cdfc9a 74
ee1fe73e
ILT
75 const int shortname_as_int = static_cast<int>(this->shortname);
76 gold_assert(shortname_as_int >= 0 && shortname_as_int < 128);
77 if (this->shortname != '\0')
78 short_options[shortname_as_int] = this;
79}
c7912668 80
ee1fe73e
ILT
81void
82One_option::print() const
c7912668 83{
ee1fe73e
ILT
84 bool comma = false;
85 printf(" ");
86 int len = 2;
87 if (this->shortname != '\0')
88 {
89 len += printf("-%c", this->shortname);
90 if (this->helparg)
91 {
92 // -z takes long-names only.
93 gold_assert(this->dashes != DASH_Z);
a4d4b13f 94 len += printf(" %s", gettext(this->helparg));
ee1fe73e
ILT
95 }
96 comma = true;
97 }
98 if (!this->longname.empty()
99 && !(this->longname[0] == this->shortname
100 && this->longname[1] == '\0'))
101 {
102 if (comma)
103 len += printf(", ");
104 switch (this->dashes)
105 {
106 case options::ONE_DASH: case options::EXACTLY_ONE_DASH:
107 len += printf("-");
108 break;
109 case options::TWO_DASHES: case options::EXACTLY_TWO_DASHES:
110 len += printf("--");
111 break;
112 case options::DASH_Z:
113 len += printf("-z ");
114 break;
115 default:
116 gold_unreachable();
117 }
118 len += printf("%s", this->longname.c_str());
119 if (this->helparg)
120 {
121 // For most options, we print "--frob FOO". But for -z
122 // we print "-z frob=FOO".
123 len += printf("%c%s", this->dashes == options::DASH_Z ? '=' : ' ',
a4d4b13f 124 gettext(this->helparg));
ee1fe73e
ILT
125 }
126 }
127
128 if (len >= 30)
129 {
130 printf("\n");
131 len = 0;
132 }
133 for (; len < 30; ++len)
134 std::putchar(' ');
c7912668 135
ee1fe73e 136 // TODO: if we're boolean, add " (default)" when appropriate.
a4d4b13f 137 printf("%s\n", gettext(this->helpstring));
ee1fe73e 138}
c7912668 139
ee1fe73e
ILT
140void
141help()
bae7f79e 142{
ee1fe73e 143 printf(_("Usage: %s [options] file...\nOptions:\n"), gold::program_name);
bae7f79e 144
ee1fe73e
ILT
145 std::vector<const One_option*>::const_iterator it;
146 for (it = registered_options.begin(); it != registered_options.end(); ++it)
147 (*it)->print();
e96caa79
ILT
148
149 // config.guess and libtool.m4 look in ld --help output for the
150 // string "supported targets".
151 printf(_("%s: supported targets:"), gold::program_name);
152 std::vector<const char*> supported_names;
153 gold::supported_target_names(&supported_names);
154 for (std::vector<const char*>::const_iterator p = supported_names.begin();
155 p != supported_names.end();
156 ++p)
157 printf(" %s", *p);
158 printf("\n");
819d6c3a
ILT
159
160 // REPORT_BUGS_TO is defined in bfd/bfdver.h.
161 const char* report = REPORT_BUGS_TO;
162 if (*report != '\0')
163 printf(_("Report bugs to %s\n"), report);
ee1fe73e 164}
61ba1cf9 165
ee1fe73e
ILT
166// For bool, arg will be NULL (boolean options take no argument);
167// we always just set to true.
168void
169parse_bool(const char*, const char*, bool* retval)
bae7f79e 170{
ee1fe73e
ILT
171 *retval = true;
172}
bae7f79e 173
ee1fe73e
ILT
174void
175parse_uint(const char* option_name, const char* arg, int* retval)
176{
177 char* endptr;
178 *retval = strtol(arg, &endptr, 0);
179 if (*endptr != '\0' || retval < 0)
180 gold_fatal(_("%s: invalid option value (expected an integer): %s"),
181 option_name, arg);
182}
bc644c6c 183
ee1fe73e
ILT
184void
185parse_uint64(const char* option_name, const char* arg, uint64_t *retval)
bc644c6c 186{
ee1fe73e
ILT
187 char* endptr;
188 *retval = strtoull(arg, &endptr, 0);
189 if (*endptr != '\0')
190 gold_fatal(_("%s: invalid option value (expected an integer): %s"),
191 option_name, arg);
192}
193
c18476e7
ILT
194void
195parse_double(const char* option_name, const char* arg, double* retval)
196{
197 char* endptr;
198 *retval = strtod(arg, &endptr);
199 if (*endptr != '\0')
200 gold_fatal(_("%s: invalid option value "
201 "(expected a floating point number): %s"),
202 option_name, arg);
203}
204
ee1fe73e
ILT
205void
206parse_string(const char* option_name, const char* arg, const char** retval)
207{
208 if (*arg == '\0')
209 gold_fatal(_("%s: must take a non-empty argument"), option_name);
210 *retval = arg;
211}
212
086a1841
ILT
213void
214parse_optional_string(const char*, const char* arg, const char** retval)
215{
216 *retval = arg;
217}
218
ee1fe73e
ILT
219void
220parse_dirlist(const char*, const char* arg, Dir_list* retval)
221{
222 retval->push_back(Search_directory(arg, false));
223}
224
c5818ff1
CC
225void
226parse_set(const char*, const char* arg, String_set* retval)
227{
228 retval->insert(std::string(arg));
229}
230
ee1fe73e
ILT
231void
232parse_choices(const char* option_name, const char* arg, const char** retval,
233 const char* choices[], int num_choices)
234{
235 for (int i = 0; i < num_choices; i++)
236 if (strcmp(choices[i], arg) == 0)
237 {
238 *retval = arg;
239 return;
240 }
241
242 // If we get here, the user did not enter a valid choice, so we die.
243 std::string choices_list;
244 for (int i = 0; i < num_choices; i++)
bc644c6c 245 {
ee1fe73e
ILT
246 choices_list += choices[i];
247 if (i != num_choices - 1)
248 choices_list += ", ";
bc644c6c 249 }
ee1fe73e
ILT
250 gold_fatal(_("%s: must take one of the following arguments: %s"),
251 option_name, choices_list.c_str());
bc644c6c
ILT
252}
253
ee1fe73e 254} // End namespace options.
a5dc0706 255
ee1fe73e
ILT
256// Define the handler for "special" options (set via DEFINE_special).
257
258void
259General_options::parse_help(const char*, const char*, Command_line*)
a5dc0706 260{
ee1fe73e
ILT
261 options::help();
262 ::exit(EXIT_SUCCESS);
a5dc0706
ILT
263}
264
ee1fe73e
ILT
265void
266General_options::parse_version(const char* opt, const char*, Command_line*)
267{
268 gold::print_version(opt[0] == '-' && opt[1] == 'v');
269 ::exit(EXIT_SUCCESS);
270}
61ba1cf9 271
b5be4a7c
DM
272void
273General_options::parse_V(const char*, const char*, Command_line*)
274{
275 gold::print_version(true);
459c9f1c 276 this->printed_version_ = true;
b5be4a7c
DM
277 printf(_(" Supported targets:\n"));
278 std::vector<const char*> supported_names;
279 gold::supported_target_names(&supported_names);
280 for (std::vector<const char*>::const_iterator p = supported_names.begin();
281 p != supported_names.end();
282 ++p)
283 printf(" %s\n", *p);
284}
285
ee1fe73e
ILT
286void
287General_options::parse_defsym(const char*, const char* arg,
288 Command_line* cmdline)
289{
290 cmdline->script_options().define_symbol(arg);
291}
88dd47ac 292
266d0a74
ILT
293void
294General_options::parse_incremental_changed(const char*, const char*,
295 Command_line*)
296{
297 this->implicit_incremental_ = true;
298 this->incremental_disposition_ = INCREMENTAL_CHANGED;
299}
300
301void
302General_options::parse_incremental_unchanged(const char*, const char*,
303 Command_line*)
304{
305 this->implicit_incremental_ = true;
306 this->incremental_disposition_ = INCREMENTAL_UNCHANGED;
307}
308
309void
310General_options::parse_incremental_unknown(const char*, const char*,
311 Command_line*)
312{
313 this->implicit_incremental_ = true;
314 this->incremental_disposition_ = INCREMENTAL_CHECK;
315}
316
ee1fe73e
ILT
317void
318General_options::parse_library(const char*, const char* arg,
319 Command_line* cmdline)
320{
321 Input_file_argument file(arg, true, "", false, *this);
322 cmdline->inputs().add_file(file);
323}
324
89fc3421
CC
325#ifdef ENABLE_PLUGINS
326void
327General_options::parse_plugin(const char*, const char* arg,
328 Command_line*)
329{
330 this->add_plugin(arg);
331}
4674ecfc
CC
332
333// Parse --plugin-opt.
334
335void
336General_options::parse_plugin_opt(const char*, const char* arg,
337 Command_line*)
338{
339 this->add_plugin_option(arg);
340}
89fc3421
CC
341#endif // ENABLE_PLUGINS
342
ee1fe73e
ILT
343void
344General_options::parse_R(const char* option, const char* arg,
345 Command_line* cmdline)
88dd47ac 346{
88dd47ac 347 struct stat s;
ee1fe73e
ILT
348 if (::stat(arg, &s) != 0 || S_ISDIR(s.st_mode))
349 this->add_to_rpath(arg);
88dd47ac 350 else
ee1fe73e 351 this->parse_just_symbols(option, arg, cmdline);
88dd47ac
ILT
352}
353
ee1fe73e
ILT
354void
355General_options::parse_just_symbols(const char*, const char* arg,
356 Command_line* cmdline)
88dd47ac 357{
ee1fe73e
ILT
358 Input_file_argument file(arg, false, "", true, *this);
359 cmdline->inputs().add_file(file);
88dd47ac
ILT
360}
361
ee1fe73e
ILT
362void
363General_options::parse_static(const char*, const char*, Command_line*)
3c2fafa5 364{
ee1fe73e 365 this->set_static(true);
09124467
ILT
366}
367
ee1fe73e
ILT
368void
369General_options::parse_script(const char*, const char* arg,
370 Command_line* cmdline)
09124467 371{
ee1fe73e
ILT
372 if (!read_commandline_script(arg, cmdline))
373 gold::gold_fatal(_("unable to parse script file %s"), arg);
61ba1cf9
ILT
374}
375
ee1fe73e
ILT
376void
377General_options::parse_version_script(const char*, const char* arg,
378 Command_line* cmdline)
ead1e424 379{
ee1fe73e
ILT
380 if (!read_version_script(arg, cmdline))
381 gold::gold_fatal(_("unable to parse version script file %s"), arg);
ead1e424
ILT
382}
383
c82fbeee
CS
384void
385General_options::parse_dynamic_list(const char*, const char* arg,
386 Command_line* cmdline)
387{
388 if (!read_dynamic_list(arg, cmdline, &this->dynamic_list_))
389 gold::gold_fatal(_("unable to parse dynamic-list script file %s"), arg);
390}
391
ee1fe73e
ILT
392void
393General_options::parse_start_group(const char*, const char*,
394 Command_line* cmdline)
395{
396 cmdline->inputs().start_group();
397}
ead1e424 398
ee1fe73e
ILT
399void
400General_options::parse_end_group(const char*, const char*,
401 Command_line* cmdline)
ead1e424 402{
ee1fe73e 403 cmdline->inputs().end_group();
ead1e424
ILT
404}
405
65514900 406// The function add_excluded_libs() in ld/ldlang.c of GNU ld breaks up a list
2fdd743f 407// of names seperated by commas or colons and puts them in a linked list.
65514900
CC
408// We implement the same parsing of names here but store names in an unordered
409// map to speed up searching of names.
410
411void
412General_options::parse_exclude_libs(const char*, const char* arg,
413 Command_line*)
414{
415 const char *p = arg;
416
417 while (*p != '\0')
418 {
419 size_t length = strcspn(p, ",:");
420 this->excluded_libs_.insert(std::string(p, length));
421 p += (p[length] ? length + 1 : length);
422 }
423}
424
425// The checking logic is based on the function check_excluded_libs() in
426// ld/ldlang.c of GNU ld but our implementation is different because we use
427// an unordered map instead of a linked list, which is what GNU ld uses. GNU
428// ld searches sequentially in the excluded libs list. For a given archive,
429// a match is found if the archive's name matches exactly one of the list
430// entry or if the archive's name is of the form FOO.a and FOO matches exactly
431// one of the list entry. An entry "ALL" in the list is considered as a
432// wild-card and matches any given name.
433
434bool
435General_options::check_excluded_libs (const std::string &name) const
436{
437 Unordered_set<std::string>::const_iterator p;
438
439 // Exit early for the most common case.
440 if (excluded_libs_.empty())
441 return false;
442
443 // If we see "ALL", all archives are excluded from automatic export.
444 p = excluded_libs_.find(std::string("ALL"));
445 if (p != excluded_libs_.end())
446 return true;
447
2fdd743f
DK
448 // First strip off any directories in name.
449 const char *basename = lbasename(name.c_str());
450
65514900 451 // Try finding an exact match.
2fdd743f 452 p = excluded_libs_.find(std::string(basename));
65514900
CC
453 if (p != excluded_libs_.end())
454 return true;
455
456 // Try matching NAME without ".a" at the end.
2fdd743f 457 size_t length = strlen(basename);
65514900 458 if ((length >= 2)
2fdd743f
DK
459 && (basename[length - 2] == '.')
460 && (basename[length - 1] == 'a'))
65514900 461 {
2fdd743f 462 p = excluded_libs_.find(std::string(basename, length - 2));
65514900
CC
463 if (p != excluded_libs_.end())
464 return true;
465 }
466
467 return false;
468}
469
e6a307ba
ILT
470// Recognize input and output target names. The GNU linker accepts
471// these with --format and --oformat. This code is intended to be
472// minimally compatible. In practice for an ELF target this would be
473// the same target as the input files; that name always start with
474// "elf". Non-ELF targets would be "srec", "symbolsrec", "tekhex",
475// "binary", "ihex".
476
477General_options::Object_format
478General_options::string_to_object_format(const char* arg)
479{
480 if (strncmp(arg, "elf", 3) == 0)
481 return gold::General_options::OBJECT_FORMAT_ELF;
482 else if (strcmp(arg, "binary") == 0)
483 return gold::General_options::OBJECT_FORMAT_BINARY;
484 else
485 {
486 gold::gold_error(_("format '%s' not supported; treating as elf "
487 "(supported formats: elf, binary)"),
488 arg);
489 return gold::General_options::OBJECT_FORMAT_ELF;
490 }
491}
492
ee1fe73e 493} // End namespace gold.
bae7f79e 494
ee1fe73e 495namespace
bae7f79e 496{
bae7f79e 497
ee1fe73e
ILT
498void
499usage()
500{
501 fprintf(stderr,
502 _("%s: use the --help option for usage information\n"),
503 gold::program_name);
504 ::exit(EXIT_FAILURE);
505}
bae7f79e 506
ee1fe73e
ILT
507void
508usage(const char* msg, const char *opt)
509{
510 fprintf(stderr,
511 _("%s: %s: %s\n"),
512 gold::program_name, opt, msg);
513 usage();
bae7f79e
ILT
514}
515
ad2d6943
ILT
516// If the default sysroot is relocatable, try relocating it based on
517// the prefix FROM.
518
fd9d194f 519static char*
ad2d6943
ILT
520get_relative_sysroot(const char* from)
521{
522 char* path = make_relative_prefix(gold::program_name, from,
ee1fe73e 523 TARGET_SYSTEM_ROOT);
ad2d6943
ILT
524 if (path != NULL)
525 {
526 struct stat s;
527 if (::stat(path, &s) == 0 && S_ISDIR(s.st_mode))
ee1fe73e 528 return path;
ad2d6943
ILT
529 free(path);
530 }
531
532 return NULL;
533}
534
535// Return the default sysroot. This is set by the --with-sysroot
ee1fe73e
ILT
536// option to configure. Note we do not free the return value of
537// get_relative_sysroot, which is a small memory leak, but is
538// necessary since we store this pointer directly in General_options.
ad2d6943 539
fd9d194f 540static const char*
ad2d6943
ILT
541get_default_sysroot()
542{
543 const char* sysroot = TARGET_SYSTEM_ROOT;
544 if (*sysroot == '\0')
ee1fe73e 545 return NULL;
ad2d6943
ILT
546
547 if (TARGET_SYSTEM_ROOT_RELOCATABLE)
548 {
ee1fe73e 549 char* path = get_relative_sysroot(BINDIR);
ad2d6943 550 if (path == NULL)
ee1fe73e 551 path = get_relative_sysroot(TOOLBINDIR);
ad2d6943 552 if (path != NULL)
ee1fe73e 553 return path;
ad2d6943
ILT
554 }
555
556 return sysroot;
557}
558
ee1fe73e
ILT
559// Parse a long option. Such options have the form
560// <-|--><option>[=arg]. If "=arg" is not present but the option
561// takes an argument, the next word is taken to the be the argument.
562// If equals_only is set, then only the <option>=<arg> form is
563// accepted, not the <option><space><arg> form. Returns a One_option
564// struct or NULL if argv[i] cannot be parsed as a long option. In
565// the not-NULL case, *arg is set to the option's argument (NULL if
566// the option takes no argument), and *i is advanced past this option.
567// NOTE: it is safe for argv and arg to point to the same place.
568gold::options::One_option*
569parse_long_option(int argc, const char** argv, bool equals_only,
570 const char** arg, int* i)
61ba1cf9 571{
ee1fe73e 572 const char* const this_argv = argv[*i];
bae7f79e 573
ee1fe73e
ILT
574 const char* equals = strchr(this_argv, '=');
575 const char* option_start = this_argv + strspn(this_argv, "-");
576 std::string option(option_start,
577 equals ? equals - option_start : strlen(option_start));
35cdfc9a 578
ee1fe73e
ILT
579 gold::options::Option_map::iterator it
580 = gold::options::long_options->find(option);
581 if (it == gold::options::long_options->end())
582 return NULL;
35cdfc9a 583
ee1fe73e 584 gold::options::One_option* retval = it->second;
c7912668 585
ee1fe73e
ILT
586 // If the dash-count doesn't match, we fail.
587 if (this_argv[0] != '-') // no dashes at all: had better be "-z <longopt>"
588 {
589 if (retval->dashes != gold::options::DASH_Z)
590 return NULL;
591 }
592 else if (this_argv[1] != '-') // one dash
593 {
594 if (retval->dashes != gold::options::ONE_DASH
595 && retval->dashes != gold::options::EXACTLY_ONE_DASH
596 && retval->dashes != gold::options::TWO_DASHES)
597 return NULL;
598 }
599 else // two dashes (or more!)
600 {
601 if (retval->dashes != gold::options::TWO_DASHES
602 && retval->dashes != gold::options::EXACTLY_TWO_DASHES
603 && retval->dashes != gold::options::ONE_DASH)
604 return NULL;
605 }
bae7f79e 606
ee1fe73e
ILT
607 // Now that we know the option is good (or else bad in a way that
608 // will cause us to die), increment i to point past this argv.
609 ++(*i);
bae7f79e 610
ee1fe73e
ILT
611 // Figure out the option's argument, if any.
612 if (!retval->takes_argument())
613 {
614 if (equals)
615 usage(_("unexpected argument"), this_argv);
616 else
617 *arg = NULL;
618 }
619 else
620 {
621 if (equals)
622 *arg = equals + 1;
086a1841
ILT
623 else if (retval->takes_optional_argument())
624 *arg = retval->default_value;
ee1fe73e
ILT
625 else if (*i < argc && !equals_only)
626 *arg = argv[(*i)++];
627 else
628 usage(_("missing argument"), this_argv);
629 }
516cb3d0 630
ee1fe73e
ILT
631 return retval;
632}
633
634// Parse a short option. Such options have the form -<option>[arg].
635// If "arg" is not present but the option takes an argument, the next
636// word is taken to the be the argument. If the option does not take
637// an argument, it may be followed by another short option. Returns a
638// One_option struct or NULL if argv[i] cannot be parsed as a short
639// option. In the not-NULL case, *arg is set to the option's argument
640// (NULL if the option takes no argument), and *i is advanced past
641// this option. This function keeps *i the same if we parsed a short
642// option that does not take an argument, that looks to be followed by
643// another short option in the same word.
644gold::options::One_option*
645parse_short_option(int argc, const char** argv, int pos_in_argv_i,
646 const char** arg, int* i)
647{
648 const char* const this_argv = argv[*i];
649
650 if (this_argv[0] != '-')
651 return NULL;
652
653 // We handle -z as a special case.
654 static gold::options::One_option dash_z("", gold::options::DASH_Z,
6d71b17c 655 'z', "", NULL, "Z-OPTION", false,
086a1841 656 NULL);
ee1fe73e
ILT
657 gold::options::One_option* retval = NULL;
658 if (this_argv[pos_in_argv_i] == 'z')
659 retval = &dash_z;
660 else
661 {
662 const int char_as_int = static_cast<int>(this_argv[pos_in_argv_i]);
663 if (char_as_int > 0 && char_as_int < 128)
664 retval = gold::options::short_options[char_as_int];
665 }
516cb3d0 666
ee1fe73e
ILT
667 if (retval == NULL)
668 return NULL;
35cdfc9a 669
ee1fe73e
ILT
670 // Figure out the option's argument, if any.
671 if (!retval->takes_argument())
cd72c291 672 {
ee1fe73e
ILT
673 *arg = NULL;
674 // We only advance past this argument if it's the only one in argv.
675 if (this_argv[pos_in_argv_i + 1] == '\0')
676 ++(*i);
cd72c291
ILT
677 }
678 else
ee1fe73e
ILT
679 {
680 // If we take an argument, we'll eat up this entire argv entry.
681 ++(*i);
682 if (this_argv[pos_in_argv_i + 1] != '\0')
683 *arg = this_argv + pos_in_argv_i + 1;
086a1841
ILT
684 else if (retval->takes_optional_argument())
685 *arg = retval->default_value;
ee1fe73e
ILT
686 else if (*i < argc)
687 *arg = argv[(*i)++];
688 else
689 usage(_("missing argument"), this_argv);
690 }
cd72c291 691
ee1fe73e
ILT
692 // If we're a -z option, we need to parse our argument as a
693 // long-option, e.g. "-z stacksize=8192".
694 if (retval == &dash_z)
35cdfc9a 695 {
ee1fe73e
ILT
696 int dummy_i = 0;
697 const char* dash_z_arg = *arg;
698 retval = parse_long_option(1, arg, true, arg, &dummy_i);
699 if (retval == NULL)
700 usage(_("unknown -z option"), dash_z_arg);
35cdfc9a
ILT
701 }
702
ee1fe73e 703 return retval;
c7912668
ILT
704}
705
ee1fe73e 706} // End anonymous namespace.
c7912668 707
ee1fe73e 708namespace gold
c7912668 709{
c7912668 710
ee1fe73e 711General_options::General_options()
459c9f1c
ILT
712 : printed_version_(false),
713 execstack_status_(General_options::EXECSTACK_FROM_INPUT), static_(false),
266d0a74
ILT
714 do_demangle_(false), plugins_(),
715 incremental_disposition_(INCREMENTAL_CHECK), implicit_incremental_(false)
ee1fe73e
ILT
716{
717}
718
719General_options::Object_format
720General_options::format_enum() const
721{
e6a307ba 722 return General_options::string_to_object_format(this->format());
ee1fe73e
ILT
723}
724
725General_options::Object_format
726General_options::oformat_enum() const
727{
e6a307ba 728 return General_options::string_to_object_format(this->oformat());
35cdfc9a
ILT
729}
730
ad2d6943
ILT
731// Add the sysroot, if any, to the search paths.
732
733void
734General_options::add_sysroot()
735{
ee1fe73e 736 if (this->sysroot() == NULL || this->sysroot()[0] == '\0')
ad2d6943 737 {
ee1fe73e
ILT
738 this->set_sysroot(get_default_sysroot());
739 if (this->sysroot() == NULL || this->sysroot()[0] == '\0')
740 return;
ad2d6943
ILT
741 }
742
ee1fe73e 743 char* canonical_sysroot = lrealpath(this->sysroot());
ad2d6943 744
ee1fe73e
ILT
745 for (Dir_list::iterator p = this->library_path_.value.begin();
746 p != this->library_path_.value.end();
ad2d6943 747 ++p)
ee1fe73e 748 p->add_sysroot(this->sysroot(), canonical_sysroot);
ad2d6943
ILT
749
750 free(canonical_sysroot);
751}
752
fd9d194f
ILT
753// Return whether FILENAME is in a system directory.
754
755bool
756General_options::is_in_system_directory(const std::string& filename) const
757{
758 for (Dir_list::const_iterator p = this->library_path_.value.begin();
759 p != this->library_path_.value.end();
760 ++p)
761 {
762 // We use a straight string comparison rather than calling
763 // FILENAME_CMP because we are only interested in the cases
764 // where we found the file in a system directory, which means
765 // that we used the directory name as a prefix for a -L search.
766 if (p->is_system_directory()
767 && filename.compare(0, p->name().size(), p->name()) == 0)
768 return true;
769 }
770 return false;
771}
772
4674ecfc 773// Add a plugin to the list of plugins.
89fc3421
CC
774
775void
4674ecfc 776General_options::add_plugin(const char* filename)
89fc3421
CC
777{
778 if (this->plugins_ == NULL)
779 this->plugins_ = new Plugin_manager(*this);
4674ecfc
CC
780 this->plugins_->add_plugin(filename);
781}
782
783// Add a plugin option to a plugin.
784
785void
786General_options::add_plugin_option(const char* arg)
787{
788 if (this->plugins_ == NULL)
789 gold_fatal("--plugin-opt requires --plugin.");
790 this->plugins_->add_plugin_option(arg);
89fc3421
CC
791}
792
ee1fe73e
ILT
793// Set up variables and other state that isn't set up automatically by
794// the parse routine, and ensure options don't contradict each other
795// and are otherwise kosher.
e5756efb 796
ee1fe73e
ILT
797void
798General_options::finalize()
bc644c6c 799{
ee1fe73e 800 // Normalize the strip modifiers. They have a total order:
62b01cb5
ILT
801 // strip_all > strip_debug > strip_non_line > strip_debug_gdb.
802 // If one is true, set all beneath it to true as well.
ee1fe73e
ILT
803 if (this->strip_all())
804 this->set_strip_debug(true);
805 if (this->strip_debug())
62b01cb5
ILT
806 this->set_strip_debug_non_line(true);
807 if (this->strip_debug_non_line())
ee1fe73e 808 this->set_strip_debug_gdb(true);
bc644c6c 809
3b293544
CF
810 if (this->Bshareable())
811 this->set_shared(true);
812
ee1fe73e
ILT
813 // If the user specifies both -s and -r, convert the -s to -S.
814 // -r requires us to keep externally visible symbols!
815 if (this->strip_all() && this->relocatable())
816 {
817 this->set_strip_all(false);
818 gold_assert(this->strip_debug());
819 }
bc644c6c 820
ee1fe73e
ILT
821 // For us, -dc and -dp are synonyms for --define-common.
822 if (this->dc())
823 this->set_define_common(true);
824 if (this->dp())
825 this->set_define_common(true);
826
827 // We also set --define-common if we're not relocatable, as long as
828 // the user didn't explicitly ask for something different.
829 if (!this->user_set_define_common())
830 this->set_define_common(!this->relocatable());
831
832 // execstack_status_ is a three-state variable; update it based on
833 // -z [no]execstack.
834 if (this->execstack())
835 this->set_execstack_status(EXECSTACK_YES);
836 else if (this->noexecstack())
837 this->set_execstack_status(EXECSTACK_NO);
838
086a1841
ILT
839 // Handle the optional argument for --demangle.
840 if (this->user_set_demangle())
841 {
842 this->set_do_demangle(true);
843 const char* style = this->demangle();
844 if (*style != '\0')
845 {
846 enum demangling_styles style_code;
847
848 style_code = cplus_demangle_name_to_style(style);
849 if (style_code == unknown_demangling)
850 gold_fatal("unknown demangling style '%s'", style);
851 cplus_demangle_set_style(style_code);
852 }
853 }
854 else if (this->user_set_no_demangle())
855 this->set_do_demangle(false);
856 else
857 {
858 // Testing COLLECT_NO_DEMANGLE makes our default demangling
859 // behaviour identical to that of gcc's linker wrapper.
860 this->set_do_demangle(getenv("COLLECT_NO_DEMANGLE") == NULL);
861 }
862
7d9e3d98
ILT
863 // -M is equivalent to "-Map -".
864 if (this->print_map() && !this->user_set_Map())
865 {
866 this->set_Map("-");
867 this->set_user_set_Map();
868 }
869
af6156ef
ILT
870 // Using -n or -N implies -static.
871 if (this->nmagic() || this->omagic())
872 this->set_static(true);
873
ee1fe73e
ILT
874 // If --thread_count is specified, it applies to
875 // --thread-count-{initial,middle,final}, though it doesn't override
876 // them.
877 if (this->thread_count() > 0 && this->thread_count_initial() == 0)
878 this->set_thread_count_initial(this->thread_count());
879 if (this->thread_count() > 0 && this->thread_count_middle() == 0)
880 this->set_thread_count_middle(this->thread_count());
881 if (this->thread_count() > 0 && this->thread_count_final() == 0)
882 this->set_thread_count_final(this->thread_count());
883
09ffbbe0
ILT
884 // Let's warn if you set the thread-count but we're going to ignore it.
885#ifndef ENABLE_THREADS
886 if (this->threads())
887 {
888 gold_warning(_("ignoring --threads: "
889 "%s was compiled without thread support"),
890 program_name);
891 this->set_threads(false);
892 }
893 if (this->thread_count() > 0 || this->thread_count_initial() > 0
894 || this->thread_count_middle() > 0 || this->thread_count_final() > 0)
895 gold_warning(_("ignoring --thread-count: "
896 "%s was compiled without thread support"),
897 program_name);
898#endif
899
706e1f5e
ILT
900 if (this->user_set_Y())
901 {
902 std::string s = this->Y();
903 if (s.compare(0, 2, "P,") == 0)
904 s.erase(0, 2);
905
906 size_t pos = 0;
907 size_t next_pos;
908 do
909 {
910 next_pos = s.find(':', pos);
911 size_t len = (next_pos == std::string::npos
912 ? next_pos
913 : next_pos - pos);
914 if (len != 0)
915 this->add_to_library_path_with_sysroot(s.substr(pos, len).c_str());
916 pos = next_pos + 1;
917 }
918 while (next_pos != std::string::npos);
919 }
920 else
921 {
922 // Even if they don't specify it, we add -L /lib and -L /usr/lib.
923 // FIXME: We should only do this when configured in native mode.
924 this->add_to_library_path_with_sysroot("/lib");
925 this->add_to_library_path_with_sysroot("/usr/lib");
926 }
ee1fe73e 927
d7ab2a47
KVH
928 if (this->shared() && !this->user_set_allow_shlib_undefined())
929 this->set_allow_shlib_undefined(true);
930
ee1fe73e
ILT
931 // Normalize library_path() by adding the sysroot to all directories
932 // in the path, as appropriate.
933 this->add_sysroot();
934
935 // Now that we've normalized the options, check for contradictory ones.
4e1e25e0
CC
936 if (this->shared() && this->is_static())
937 gold_fatal(_("-shared and -static are incompatible"));
938
ee1fe73e
ILT
939 if (this->shared() && this->relocatable())
940 gold_fatal(_("-shared and -r are incompatible"));
941
942 if (this->oformat_enum() != General_options::OBJECT_FORMAT_ELF
943 && (this->shared() || this->relocatable()))
944 gold_fatal(_("binary output format not compatible with -shared or -r"));
945
c18476e7
ILT
946 if (this->user_set_hash_bucket_empty_fraction()
947 && (this->hash_bucket_empty_fraction() < 0.0
948 || this->hash_bucket_empty_fraction() >= 1.0))
949 gold_fatal(_("--hash-bucket-empty-fraction value %g out of range "
950 "[0.0, 1.0)"),
951 this->hash_bucket_empty_fraction());
952
266d0a74
ILT
953 if (this->implicit_incremental_ && !this->incremental())
954 gold_fatal(_("Options --incremental-changed, --incremental-unchanged, "
955 "--incremental-unknown require the use of --incremental"));
956
ee1fe73e 957 // FIXME: we can/should be doing a lot more sanity checking here.
e5756efb
ILT
958}
959
ad2d6943
ILT
960// Search_directory methods.
961
962// This is called if we have a sysroot. Apply the sysroot if
963// appropriate. Record whether the directory is in the sysroot.
964
965void
966Search_directory::add_sysroot(const char* sysroot,
ee1fe73e 967 const char* canonical_sysroot)
ad2d6943
ILT
968{
969 gold_assert(*sysroot != '\0');
970 if (this->put_in_sysroot_)
971 {
972 if (!IS_DIR_SEPARATOR(this->name_[0])
ee1fe73e
ILT
973 && !IS_DIR_SEPARATOR(sysroot[strlen(sysroot) - 1]))
974 this->name_ = '/' + this->name_;
ad2d6943
ILT
975 this->name_ = sysroot + this->name_;
976 this->is_in_sysroot_ = true;
977 }
978 else
979 {
980 // Check whether this entry is in the sysroot. To do this
981 // correctly, we need to use canonical names. Otherwise we will
982 // get confused by the ../../.. paths that gcc tends to use.
983 char* canonical_name = lrealpath(this->name_.c_str());
984 int canonical_name_len = strlen(canonical_name);
985 int canonical_sysroot_len = strlen(canonical_sysroot);
986 if (canonical_name_len > canonical_sysroot_len
ee1fe73e
ILT
987 && IS_DIR_SEPARATOR(canonical_name[canonical_sysroot_len]))
988 {
989 canonical_name[canonical_sysroot_len] = '\0';
990 if (FILENAME_CMP(canonical_name, canonical_sysroot) == 0)
991 this->is_in_sysroot_ = true;
992 }
ad2d6943
ILT
993 free(canonical_name);
994 }
995}
996
dbe717ef
ILT
997// Input_arguments methods.
998
999// Add a file to the list.
1000
1001void
1002Input_arguments::add_file(const Input_file_argument& file)
1003{
1004 if (!this->in_group_)
1005 this->input_argument_list_.push_back(Input_argument(file));
1006 else
1007 {
a3ad94ed
ILT
1008 gold_assert(!this->input_argument_list_.empty());
1009 gold_assert(this->input_argument_list_.back().is_group());
dbe717ef
ILT
1010 this->input_argument_list_.back().group()->add_file(file);
1011 }
1012}
1013
1014// Start a group.
1015
1016void
1017Input_arguments::start_group()
1018{
ee1fe73e
ILT
1019 if (this->in_group_)
1020 gold_fatal(_("May not nest groups"));
dbe717ef
ILT
1021 Input_file_group* group = new Input_file_group();
1022 this->input_argument_list_.push_back(Input_argument(group));
1023 this->in_group_ = true;
1024}
1025
1026// End a group.
1027
1028void
1029Input_arguments::end_group()
1030{
ee1fe73e
ILT
1031 if (!this->in_group_)
1032 gold_fatal(_("Group end without group start"));
dbe717ef
ILT
1033 this->in_group_ = false;
1034}
1035
ead1e424 1036// Command_line options.
bae7f79e 1037
a5dc0706 1038Command_line::Command_line()
bae7f79e
ILT
1039{
1040}
1041
ee1fe73e
ILT
1042// Process the command line options. For process_one_option, i is the
1043// index of argv to process next, and must be an option (that is,
1044// start with a dash). The return value is the index of the next
1045// option to process (i+1 or i+2, or argc to indicate processing is
1046// done). no_more_options is set to true if (and when) "--" is seen
1047// as an option.
bae7f79e 1048
a0451b38 1049int
ee1fe73e 1050Command_line::process_one_option(int argc, const char** argv, int i,
a0451b38 1051 bool* no_more_options)
bae7f79e 1052{
ee1fe73e 1053 gold_assert(argv[i][0] == '-' && !(*no_more_options));
a0451b38 1054
ee1fe73e
ILT
1055 // If we are reading "--", then just set no_more_options and return.
1056 if (argv[i][1] == '-' && argv[i][2] == '\0')
bae7f79e 1057 {
ee1fe73e 1058 *no_more_options = true;
a0451b38
ILT
1059 return i + 1;
1060 }
bae7f79e 1061
ee1fe73e
ILT
1062 int new_i = i;
1063 options::One_option* option = NULL;
1064 const char* arg = NULL;
bae7f79e 1065
ee1fe73e
ILT
1066 // First, try to process argv as a long option.
1067 option = parse_long_option(argc, argv, false, &arg, &new_i);
1068 if (option)
a0451b38 1069 {
ee1fe73e
ILT
1070 option->reader->parse_to_value(argv[i], arg, this, &this->options_);
1071 return new_i;
a0451b38 1072 }
bae7f79e 1073
ee1fe73e
ILT
1074 // Now, try to process argv as a short option. Since several short
1075 // options can be combined in one argv, we may have to parse a lot
1076 // until we're done reading this argv.
1077 int pos_in_argv_i = 1;
1078 while (new_i == i)
a0451b38 1079 {
ee1fe73e
ILT
1080 option = parse_short_option(argc, argv, pos_in_argv_i, &arg, &new_i);
1081 if (!option)
1082 break;
1083 option->reader->parse_to_value(argv[i], arg, this, &this->options_);
1084 ++pos_in_argv_i;
a0451b38 1085 }
ee1fe73e
ILT
1086 if (option)
1087 return new_i;
a0451b38 1088
ee1fe73e
ILT
1089 // I guess it's neither a long option nor a short option.
1090 usage(_("unknown option"), argv[i]);
1091 return argc;
a0451b38 1092}
bae7f79e 1093
bae7f79e 1094
a0451b38 1095void
ee1fe73e 1096Command_line::process(int argc, const char** argv)
a0451b38
ILT
1097{
1098 bool no_more_options = false;
1099 int i = 0;
1100 while (i < argc)
ead1e424 1101 {
ee1fe73e
ILT
1102 this->position_options_.copy_from_options(this->options());
1103 if (no_more_options || argv[i][0] != '-')
1104 {
1105 Input_file_argument file(argv[i], false, "", false,
1106 this->position_options_);
1107 this->inputs_.add_file(file);
1108 ++i;
1109 }
bae7f79e 1110 else
ee1fe73e 1111 i = process_one_option(argc, argv, i, &no_more_options);
bae7f79e 1112 }
bae7f79e 1113
dbe717ef 1114 if (this->inputs_.in_group())
ee1fe73e
ILT
1115 {
1116 fprintf(stderr, _("%s: missing group end\n"), program_name);
1117 usage();
1118 }
bae7f79e 1119
ee1fe73e
ILT
1120 // Normalize the options and ensure they don't contradict each other.
1121 this->options_.finalize();
bae7f79e 1122}
61ba1cf9
ILT
1123
1124} // End namespace gold.
This page took 0.177425 seconds and 4 git commands to generate.