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