Don't use the user-specified output format unless the user actually
[deliverable/binutils-gdb.git] / gold / options.cc
CommitLineData
bae7f79e
ILT
1// options.c -- handle command line options for gold
2
e5756efb 3// Copyright 2006, 2007, 2008 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>
ee1fe73e 26#include <vector>
bae7f79e 27#include <iostream>
ad2d6943
ILT
28#include <sys/stat.h>
29#include "filenames.h"
30#include "libiberty.h"
bae7f79e 31
c7912668 32#include "debug.h"
e5756efb 33#include "script.h"
ee1fe73e 34#include "target-select.h"
bae7f79e
ILT
35#include "options.h"
36
61ba1cf9
ILT
37namespace gold
38{
39
ee1fe73e
ILT
40General_options
41Position_dependent_options::default_options_;
bae7f79e 42
ee1fe73e 43namespace options
bae7f79e 44{
bae7f79e 45
ee1fe73e
ILT
46// This global variable is set up as General_options is constructed.
47static std::vector<const One_option*> registered_options;
bae7f79e 48
ee1fe73e
ILT
49// These are set up at the same time -- the variables that accept one
50// dash, two, or require -z. A single variable may be in more than
51// one of thes data structures.
52typedef Unordered_map<std::string, One_option*> Option_map;
53static Option_map* long_options = NULL;
54static One_option* short_options[128];
bae7f79e 55
ee1fe73e
ILT
56void
57One_option::register_option()
35cdfc9a 58{
ee1fe73e 59 registered_options.push_back(this);
35cdfc9a 60
ee1fe73e
ILT
61 // We can't make long_options a static Option_map because we can't
62 // guarantee that will be initialized before register_option() is
63 // first called.
64 if (long_options == NULL)
65 long_options = new Option_map;
cd72c291 66
ee1fe73e
ILT
67 // TWO_DASHES means that two dashes are preferred, but one is ok too.
68 if (!this->longname.empty())
69 (*long_options)[this->longname] = this;
35cdfc9a 70
ee1fe73e
ILT
71 const int shortname_as_int = static_cast<int>(this->shortname);
72 gold_assert(shortname_as_int >= 0 && shortname_as_int < 128);
73 if (this->shortname != '\0')
74 short_options[shortname_as_int] = this;
75}
c7912668 76
ee1fe73e
ILT
77void
78One_option::print() const
c7912668 79{
ee1fe73e
ILT
80 bool comma = false;
81 printf(" ");
82 int len = 2;
83 if (this->shortname != '\0')
84 {
85 len += printf("-%c", this->shortname);
86 if (this->helparg)
87 {
88 // -z takes long-names only.
89 gold_assert(this->dashes != DASH_Z);
90 len += printf(" %s", this->helparg);
91 }
92 comma = true;
93 }
94 if (!this->longname.empty()
95 && !(this->longname[0] == this->shortname
96 && this->longname[1] == '\0'))
97 {
98 if (comma)
99 len += printf(", ");
100 switch (this->dashes)
101 {
102 case options::ONE_DASH: case options::EXACTLY_ONE_DASH:
103 len += printf("-");
104 break;
105 case options::TWO_DASHES: case options::EXACTLY_TWO_DASHES:
106 len += printf("--");
107 break;
108 case options::DASH_Z:
109 len += printf("-z ");
110 break;
111 default:
112 gold_unreachable();
113 }
114 len += printf("%s", this->longname.c_str());
115 if (this->helparg)
116 {
117 // For most options, we print "--frob FOO". But for -z
118 // we print "-z frob=FOO".
119 len += printf("%c%s", this->dashes == options::DASH_Z ? '=' : ' ',
120 this->helparg);
121 }
122 }
123
124 if (len >= 30)
125 {
126 printf("\n");
127 len = 0;
128 }
129 for (; len < 30; ++len)
130 std::putchar(' ');
c7912668 131
ee1fe73e
ILT
132 // TODO: if we're boolean, add " (default)" when appropriate.
133 printf("%s\n", this->helpstring);
134}
c7912668 135
ee1fe73e
ILT
136void
137help()
bae7f79e 138{
ee1fe73e 139 printf(_("Usage: %s [options] file...\nOptions:\n"), gold::program_name);
bae7f79e 140
ee1fe73e
ILT
141 std::vector<const One_option*>::const_iterator it;
142 for (it = registered_options.begin(); it != registered_options.end(); ++it)
143 (*it)->print();
144}
61ba1cf9 145
ee1fe73e
ILT
146// For bool, arg will be NULL (boolean options take no argument);
147// we always just set to true.
148void
149parse_bool(const char*, const char*, bool* retval)
bae7f79e 150{
ee1fe73e
ILT
151 *retval = true;
152}
bae7f79e 153
ee1fe73e
ILT
154void
155parse_uint(const char* option_name, const char* arg, int* retval)
156{
157 char* endptr;
158 *retval = strtol(arg, &endptr, 0);
159 if (*endptr != '\0' || retval < 0)
160 gold_fatal(_("%s: invalid option value (expected an integer): %s"),
161 option_name, arg);
162}
bc644c6c 163
ee1fe73e
ILT
164void
165parse_uint64(const char* option_name, const char* arg, uint64_t *retval)
bc644c6c 166{
ee1fe73e
ILT
167 char* endptr;
168 *retval = strtoull(arg, &endptr, 0);
169 if (*endptr != '\0')
170 gold_fatal(_("%s: invalid option value (expected an integer): %s"),
171 option_name, arg);
172}
173
174void
175parse_string(const char* option_name, const char* arg, const char** retval)
176{
177 if (*arg == '\0')
178 gold_fatal(_("%s: must take a non-empty argument"), option_name);
179 *retval = arg;
180}
181
182void
183parse_dirlist(const char*, const char* arg, Dir_list* retval)
184{
185 retval->push_back(Search_directory(arg, false));
186}
187
188void
189parse_choices(const char* option_name, const char* arg, const char** retval,
190 const char* choices[], int num_choices)
191{
192 for (int i = 0; i < num_choices; i++)
193 if (strcmp(choices[i], arg) == 0)
194 {
195 *retval = arg;
196 return;
197 }
198
199 // If we get here, the user did not enter a valid choice, so we die.
200 std::string choices_list;
201 for (int i = 0; i < num_choices; i++)
bc644c6c 202 {
ee1fe73e
ILT
203 choices_list += choices[i];
204 if (i != num_choices - 1)
205 choices_list += ", ";
bc644c6c 206 }
ee1fe73e
ILT
207 gold_fatal(_("%s: must take one of the following arguments: %s"),
208 option_name, choices_list.c_str());
bc644c6c
ILT
209}
210
ee1fe73e 211} // End namespace options.
a5dc0706 212
ee1fe73e
ILT
213// Define the handler for "special" options (set via DEFINE_special).
214
215void
216General_options::parse_help(const char*, const char*, Command_line*)
a5dc0706 217{
ee1fe73e
ILT
218 options::help();
219 ::exit(EXIT_SUCCESS);
a5dc0706
ILT
220}
221
ee1fe73e
ILT
222void
223General_options::parse_version(const char* opt, const char*, Command_line*)
224{
225 gold::print_version(opt[0] == '-' && opt[1] == 'v');
226 ::exit(EXIT_SUCCESS);
227}
61ba1cf9 228
ee1fe73e
ILT
229void
230General_options::parse_Bstatic(const char*, const char*, Command_line*)
61ba1cf9 231{
ee1fe73e 232 this->set_Bdynamic(false);
3c2fafa5
ILT
233}
234
ee1fe73e
ILT
235void
236General_options::parse_defsym(const char*, const char* arg,
237 Command_line* cmdline)
238{
239 cmdline->script_options().define_symbol(arg);
240}
88dd47ac 241
ee1fe73e
ILT
242void
243General_options::parse_library(const char*, const char* arg,
244 Command_line* cmdline)
245{
246 Input_file_argument file(arg, true, "", false, *this);
247 cmdline->inputs().add_file(file);
248}
249
250void
251General_options::parse_R(const char* option, const char* arg,
252 Command_line* cmdline)
88dd47ac 253{
88dd47ac 254 struct stat s;
ee1fe73e
ILT
255 if (::stat(arg, &s) != 0 || S_ISDIR(s.st_mode))
256 this->add_to_rpath(arg);
88dd47ac 257 else
ee1fe73e 258 this->parse_just_symbols(option, arg, cmdline);
88dd47ac
ILT
259}
260
ee1fe73e
ILT
261void
262General_options::parse_just_symbols(const char*, const char* arg,
263 Command_line* cmdline)
88dd47ac 264{
ee1fe73e
ILT
265 Input_file_argument file(arg, false, "", true, *this);
266 cmdline->inputs().add_file(file);
88dd47ac
ILT
267}
268
ee1fe73e
ILT
269void
270General_options::parse_static(const char*, const char*, Command_line*)
3c2fafa5 271{
ee1fe73e 272 this->set_static(true);
09124467
ILT
273}
274
ee1fe73e
ILT
275void
276General_options::parse_script(const char*, const char* arg,
277 Command_line* cmdline)
09124467 278{
ee1fe73e
ILT
279 if (!read_commandline_script(arg, cmdline))
280 gold::gold_fatal(_("unable to parse script file %s"), arg);
61ba1cf9
ILT
281}
282
ee1fe73e
ILT
283void
284General_options::parse_version_script(const char*, const char* arg,
285 Command_line* cmdline)
ead1e424 286{
ee1fe73e
ILT
287 if (!read_version_script(arg, cmdline))
288 gold::gold_fatal(_("unable to parse version script file %s"), arg);
ead1e424
ILT
289}
290
ee1fe73e
ILT
291void
292General_options::parse_start_group(const char*, const char*,
293 Command_line* cmdline)
294{
295 cmdline->inputs().start_group();
296}
ead1e424 297
ee1fe73e
ILT
298void
299General_options::parse_end_group(const char*, const char*,
300 Command_line* cmdline)
ead1e424 301{
ee1fe73e 302 cmdline->inputs().end_group();
ead1e424
ILT
303}
304
ee1fe73e 305} // End namespace gold.
bae7f79e 306
ee1fe73e 307namespace
bae7f79e 308{
bae7f79e 309
ee1fe73e
ILT
310void
311usage()
312{
313 fprintf(stderr,
314 _("%s: use the --help option for usage information\n"),
315 gold::program_name);
316 ::exit(EXIT_FAILURE);
317}
bae7f79e 318
ee1fe73e
ILT
319void
320usage(const char* msg, const char *opt)
321{
322 fprintf(stderr,
323 _("%s: %s: %s\n"),
324 gold::program_name, opt, msg);
325 usage();
bae7f79e
ILT
326}
327
ee1fe73e
ILT
328// Recognize input and output target names. The GNU linker accepts
329// these with --format and --oformat. This code is intended to be
330// minimally compatible. In practice for an ELF target this would be
331// the same target as the input files; that name always start with
332// "elf". Non-ELF targets would be "srec", "symbolsrec", "tekhex",
333// "binary", "ihex".
8486ee48 334
ee1fe73e
ILT
335gold::General_options::Object_format
336string_to_object_format(const char* arg)
8486ee48 337{
ee1fe73e
ILT
338 if (strncmp(arg, "elf", 3) == 0)
339 return gold::General_options::OBJECT_FORMAT_ELF;
340 else if (strcmp(arg, "binary") == 0)
341 return gold::General_options::OBJECT_FORMAT_BINARY;
342 else
343 {
344 gold::gold_error(_("format '%s' not supported "
345 "(supported formats: elf, binary)"),
346 arg);
347 return gold::General_options::OBJECT_FORMAT_ELF;
348 }
8486ee48
ILT
349}
350
ad2d6943
ILT
351// If the default sysroot is relocatable, try relocating it based on
352// the prefix FROM.
353
354char*
355get_relative_sysroot(const char* from)
356{
357 char* path = make_relative_prefix(gold::program_name, from,
ee1fe73e 358 TARGET_SYSTEM_ROOT);
ad2d6943
ILT
359 if (path != NULL)
360 {
361 struct stat s;
362 if (::stat(path, &s) == 0 && S_ISDIR(s.st_mode))
ee1fe73e 363 return path;
ad2d6943
ILT
364 free(path);
365 }
366
367 return NULL;
368}
369
370// Return the default sysroot. This is set by the --with-sysroot
ee1fe73e
ILT
371// option to configure. Note we do not free the return value of
372// get_relative_sysroot, which is a small memory leak, but is
373// necessary since we store this pointer directly in General_options.
ad2d6943 374
ee1fe73e 375const char*
ad2d6943
ILT
376get_default_sysroot()
377{
378 const char* sysroot = TARGET_SYSTEM_ROOT;
379 if (*sysroot == '\0')
ee1fe73e 380 return NULL;
ad2d6943
ILT
381
382 if (TARGET_SYSTEM_ROOT_RELOCATABLE)
383 {
ee1fe73e 384 char* path = get_relative_sysroot(BINDIR);
ad2d6943 385 if (path == NULL)
ee1fe73e 386 path = get_relative_sysroot(TOOLBINDIR);
ad2d6943 387 if (path != NULL)
ee1fe73e 388 return path;
ad2d6943
ILT
389 }
390
391 return sysroot;
392}
393
ee1fe73e
ILT
394// Parse a long option. Such options have the form
395// <-|--><option>[=arg]. If "=arg" is not present but the option
396// takes an argument, the next word is taken to the be the argument.
397// If equals_only is set, then only the <option>=<arg> form is
398// accepted, not the <option><space><arg> form. Returns a One_option
399// struct or NULL if argv[i] cannot be parsed as a long option. In
400// the not-NULL case, *arg is set to the option's argument (NULL if
401// the option takes no argument), and *i is advanced past this option.
402// NOTE: it is safe for argv and arg to point to the same place.
403gold::options::One_option*
404parse_long_option(int argc, const char** argv, bool equals_only,
405 const char** arg, int* i)
61ba1cf9 406{
ee1fe73e 407 const char* const this_argv = argv[*i];
bae7f79e 408
ee1fe73e
ILT
409 const char* equals = strchr(this_argv, '=');
410 const char* option_start = this_argv + strspn(this_argv, "-");
411 std::string option(option_start,
412 equals ? equals - option_start : strlen(option_start));
35cdfc9a 413
ee1fe73e
ILT
414 gold::options::Option_map::iterator it
415 = gold::options::long_options->find(option);
416 if (it == gold::options::long_options->end())
417 return NULL;
35cdfc9a 418
ee1fe73e 419 gold::options::One_option* retval = it->second;
c7912668 420
ee1fe73e
ILT
421 // If the dash-count doesn't match, we fail.
422 if (this_argv[0] != '-') // no dashes at all: had better be "-z <longopt>"
423 {
424 if (retval->dashes != gold::options::DASH_Z)
425 return NULL;
426 }
427 else if (this_argv[1] != '-') // one dash
428 {
429 if (retval->dashes != gold::options::ONE_DASH
430 && retval->dashes != gold::options::EXACTLY_ONE_DASH
431 && retval->dashes != gold::options::TWO_DASHES)
432 return NULL;
433 }
434 else // two dashes (or more!)
435 {
436 if (retval->dashes != gold::options::TWO_DASHES
437 && retval->dashes != gold::options::EXACTLY_TWO_DASHES
438 && retval->dashes != gold::options::ONE_DASH)
439 return NULL;
440 }
bae7f79e 441
ee1fe73e
ILT
442 // Now that we know the option is good (or else bad in a way that
443 // will cause us to die), increment i to point past this argv.
444 ++(*i);
bae7f79e 445
ee1fe73e
ILT
446 // Figure out the option's argument, if any.
447 if (!retval->takes_argument())
448 {
449 if (equals)
450 usage(_("unexpected argument"), this_argv);
451 else
452 *arg = NULL;
453 }
454 else
455 {
456 if (equals)
457 *arg = equals + 1;
458 else if (*i < argc && !equals_only)
459 *arg = argv[(*i)++];
460 else
461 usage(_("missing argument"), this_argv);
462 }
516cb3d0 463
ee1fe73e
ILT
464 return retval;
465}
466
467// Parse a short option. Such options have the form -<option>[arg].
468// If "arg" is not present but the option takes an argument, the next
469// word is taken to the be the argument. If the option does not take
470// an argument, it may be followed by another short option. Returns a
471// One_option struct or NULL if argv[i] cannot be parsed as a short
472// option. In the not-NULL case, *arg is set to the option's argument
473// (NULL if the option takes no argument), and *i is advanced past
474// this option. This function keeps *i the same if we parsed a short
475// option that does not take an argument, that looks to be followed by
476// another short option in the same word.
477gold::options::One_option*
478parse_short_option(int argc, const char** argv, int pos_in_argv_i,
479 const char** arg, int* i)
480{
481 const char* const this_argv = argv[*i];
482
483 if (this_argv[0] != '-')
484 return NULL;
485
486 // We handle -z as a special case.
487 static gold::options::One_option dash_z("", gold::options::DASH_Z,
488 'z', "", "-z", "Z-OPTION", NULL);
489 gold::options::One_option* retval = NULL;
490 if (this_argv[pos_in_argv_i] == 'z')
491 retval = &dash_z;
492 else
493 {
494 const int char_as_int = static_cast<int>(this_argv[pos_in_argv_i]);
495 if (char_as_int > 0 && char_as_int < 128)
496 retval = gold::options::short_options[char_as_int];
497 }
516cb3d0 498
ee1fe73e
ILT
499 if (retval == NULL)
500 return NULL;
35cdfc9a 501
ee1fe73e
ILT
502 // Figure out the option's argument, if any.
503 if (!retval->takes_argument())
cd72c291 504 {
ee1fe73e
ILT
505 *arg = NULL;
506 // We only advance past this argument if it's the only one in argv.
507 if (this_argv[pos_in_argv_i + 1] == '\0')
508 ++(*i);
cd72c291
ILT
509 }
510 else
ee1fe73e
ILT
511 {
512 // If we take an argument, we'll eat up this entire argv entry.
513 ++(*i);
514 if (this_argv[pos_in_argv_i + 1] != '\0')
515 *arg = this_argv + pos_in_argv_i + 1;
516 else if (*i < argc)
517 *arg = argv[(*i)++];
518 else
519 usage(_("missing argument"), this_argv);
520 }
cd72c291 521
ee1fe73e
ILT
522 // If we're a -z option, we need to parse our argument as a
523 // long-option, e.g. "-z stacksize=8192".
524 if (retval == &dash_z)
35cdfc9a 525 {
ee1fe73e
ILT
526 int dummy_i = 0;
527 const char* dash_z_arg = *arg;
528 retval = parse_long_option(1, arg, true, arg, &dummy_i);
529 if (retval == NULL)
530 usage(_("unknown -z option"), dash_z_arg);
35cdfc9a
ILT
531 }
532
ee1fe73e 533 return retval;
c7912668
ILT
534}
535
ee1fe73e 536} // End anonymous namespace.
c7912668 537
ee1fe73e 538namespace gold
c7912668 539{
c7912668 540
ee1fe73e
ILT
541General_options::General_options()
542 : execstack_status_(General_options::EXECSTACK_FROM_INPUT), static_(false)
543{
544}
545
546General_options::Object_format
547General_options::format_enum() const
548{
549 return string_to_object_format(this->format());
550}
551
552General_options::Object_format
553General_options::oformat_enum() const
554{
555 return string_to_object_format(this->oformat());
35cdfc9a
ILT
556}
557
ad2d6943
ILT
558// Add the sysroot, if any, to the search paths.
559
560void
561General_options::add_sysroot()
562{
ee1fe73e 563 if (this->sysroot() == NULL || this->sysroot()[0] == '\0')
ad2d6943 564 {
ee1fe73e
ILT
565 this->set_sysroot(get_default_sysroot());
566 if (this->sysroot() == NULL || this->sysroot()[0] == '\0')
567 return;
ad2d6943
ILT
568 }
569
ee1fe73e 570 char* canonical_sysroot = lrealpath(this->sysroot());
ad2d6943 571
ee1fe73e
ILT
572 for (Dir_list::iterator p = this->library_path_.value.begin();
573 p != this->library_path_.value.end();
ad2d6943 574 ++p)
ee1fe73e 575 p->add_sysroot(this->sysroot(), canonical_sysroot);
ad2d6943
ILT
576
577 free(canonical_sysroot);
578}
579
ee1fe73e
ILT
580// Set up variables and other state that isn't set up automatically by
581// the parse routine, and ensure options don't contradict each other
582// and are otherwise kosher.
e5756efb 583
ee1fe73e
ILT
584void
585General_options::finalize()
bc644c6c 586{
ee1fe73e
ILT
587 // Normalize the strip modifiers. They have a total order:
588 // strip_all > strip_debug > strip_debug_gdb. If one is true, set
589 // all beneath it to true as well.
590 if (this->strip_all())
591 this->set_strip_debug(true);
592 if (this->strip_debug())
593 this->set_strip_debug_gdb(true);
bc644c6c 594
ee1fe73e
ILT
595 // If the user specifies both -s and -r, convert the -s to -S.
596 // -r requires us to keep externally visible symbols!
597 if (this->strip_all() && this->relocatable())
598 {
599 this->set_strip_all(false);
600 gold_assert(this->strip_debug());
601 }
bc644c6c 602
ee1fe73e
ILT
603 // For us, -dc and -dp are synonyms for --define-common.
604 if (this->dc())
605 this->set_define_common(true);
606 if (this->dp())
607 this->set_define_common(true);
608
609 // We also set --define-common if we're not relocatable, as long as
610 // the user didn't explicitly ask for something different.
611 if (!this->user_set_define_common())
612 this->set_define_common(!this->relocatable());
613
614 // execstack_status_ is a three-state variable; update it based on
615 // -z [no]execstack.
616 if (this->execstack())
617 this->set_execstack_status(EXECSTACK_YES);
618 else if (this->noexecstack())
619 this->set_execstack_status(EXECSTACK_NO);
620
621 // If --thread_count is specified, it applies to
622 // --thread-count-{initial,middle,final}, though it doesn't override
623 // them.
624 if (this->thread_count() > 0 && this->thread_count_initial() == 0)
625 this->set_thread_count_initial(this->thread_count());
626 if (this->thread_count() > 0 && this->thread_count_middle() == 0)
627 this->set_thread_count_middle(this->thread_count());
628 if (this->thread_count() > 0 && this->thread_count_final() == 0)
629 this->set_thread_count_final(this->thread_count());
630
631 // Even if they don't specify it, we add -L /lib and -L /usr/lib.
632 // FIXME: We should only do this when configured in native mode.
633 this->add_to_library_path_with_sysroot("/lib");
634 this->add_to_library_path_with_sysroot("/usr/lib");
635
636 // Normalize library_path() by adding the sysroot to all directories
637 // in the path, as appropriate.
638 this->add_sysroot();
639
640 // Now that we've normalized the options, check for contradictory ones.
641 if (this->shared() && this->relocatable())
642 gold_fatal(_("-shared and -r are incompatible"));
643
644 if (this->oformat_enum() != General_options::OBJECT_FORMAT_ELF
645 && (this->shared() || this->relocatable()))
646 gold_fatal(_("binary output format not compatible with -shared or -r"));
647
648 // FIXME: we can/should be doing a lot more sanity checking here.
e5756efb
ILT
649}
650
ad2d6943
ILT
651// Search_directory methods.
652
653// This is called if we have a sysroot. Apply the sysroot if
654// appropriate. Record whether the directory is in the sysroot.
655
656void
657Search_directory::add_sysroot(const char* sysroot,
ee1fe73e 658 const char* canonical_sysroot)
ad2d6943
ILT
659{
660 gold_assert(*sysroot != '\0');
661 if (this->put_in_sysroot_)
662 {
663 if (!IS_DIR_SEPARATOR(this->name_[0])
ee1fe73e
ILT
664 && !IS_DIR_SEPARATOR(sysroot[strlen(sysroot) - 1]))
665 this->name_ = '/' + this->name_;
ad2d6943
ILT
666 this->name_ = sysroot + this->name_;
667 this->is_in_sysroot_ = true;
668 }
669 else
670 {
671 // Check whether this entry is in the sysroot. To do this
672 // correctly, we need to use canonical names. Otherwise we will
673 // get confused by the ../../.. paths that gcc tends to use.
674 char* canonical_name = lrealpath(this->name_.c_str());
675 int canonical_name_len = strlen(canonical_name);
676 int canonical_sysroot_len = strlen(canonical_sysroot);
677 if (canonical_name_len > canonical_sysroot_len
ee1fe73e
ILT
678 && IS_DIR_SEPARATOR(canonical_name[canonical_sysroot_len]))
679 {
680 canonical_name[canonical_sysroot_len] = '\0';
681 if (FILENAME_CMP(canonical_name, canonical_sysroot) == 0)
682 this->is_in_sysroot_ = true;
683 }
ad2d6943
ILT
684 free(canonical_name);
685 }
686}
687
dbe717ef
ILT
688// Input_arguments methods.
689
690// Add a file to the list.
691
692void
693Input_arguments::add_file(const Input_file_argument& file)
694{
695 if (!this->in_group_)
696 this->input_argument_list_.push_back(Input_argument(file));
697 else
698 {
a3ad94ed
ILT
699 gold_assert(!this->input_argument_list_.empty());
700 gold_assert(this->input_argument_list_.back().is_group());
dbe717ef
ILT
701 this->input_argument_list_.back().group()->add_file(file);
702 }
703}
704
705// Start a group.
706
707void
708Input_arguments::start_group()
709{
ee1fe73e
ILT
710 if (this->in_group_)
711 gold_fatal(_("May not nest groups"));
dbe717ef
ILT
712 Input_file_group* group = new Input_file_group();
713 this->input_argument_list_.push_back(Input_argument(group));
714 this->in_group_ = true;
715}
716
717// End a group.
718
719void
720Input_arguments::end_group()
721{
ee1fe73e
ILT
722 if (!this->in_group_)
723 gold_fatal(_("Group end without group start"));
dbe717ef
ILT
724 this->in_group_ = false;
725}
726
ead1e424 727// Command_line options.
bae7f79e 728
a5dc0706 729Command_line::Command_line()
bae7f79e
ILT
730{
731}
732
ee1fe73e
ILT
733// Process the command line options. For process_one_option, i is the
734// index of argv to process next, and must be an option (that is,
735// start with a dash). The return value is the index of the next
736// option to process (i+1 or i+2, or argc to indicate processing is
737// done). no_more_options is set to true if (and when) "--" is seen
738// as an option.
bae7f79e 739
a0451b38 740int
ee1fe73e 741Command_line::process_one_option(int argc, const char** argv, int i,
a0451b38 742 bool* no_more_options)
bae7f79e 743{
ee1fe73e 744 gold_assert(argv[i][0] == '-' && !(*no_more_options));
a0451b38 745
ee1fe73e
ILT
746 // If we are reading "--", then just set no_more_options and return.
747 if (argv[i][1] == '-' && argv[i][2] == '\0')
bae7f79e 748 {
ee1fe73e 749 *no_more_options = true;
a0451b38
ILT
750 return i + 1;
751 }
bae7f79e 752
ee1fe73e
ILT
753 int new_i = i;
754 options::One_option* option = NULL;
755 const char* arg = NULL;
bae7f79e 756
ee1fe73e
ILT
757 // First, try to process argv as a long option.
758 option = parse_long_option(argc, argv, false, &arg, &new_i);
759 if (option)
a0451b38 760 {
ee1fe73e
ILT
761 option->reader->parse_to_value(argv[i], arg, this, &this->options_);
762 return new_i;
a0451b38 763 }
bae7f79e 764
ee1fe73e
ILT
765 // Now, try to process argv as a short option. Since several short
766 // options can be combined in one argv, we may have to parse a lot
767 // until we're done reading this argv.
768 int pos_in_argv_i = 1;
769 while (new_i == i)
a0451b38 770 {
ee1fe73e
ILT
771 option = parse_short_option(argc, argv, pos_in_argv_i, &arg, &new_i);
772 if (!option)
773 break;
774 option->reader->parse_to_value(argv[i], arg, this, &this->options_);
775 ++pos_in_argv_i;
a0451b38 776 }
ee1fe73e
ILT
777 if (option)
778 return new_i;
a0451b38 779
ee1fe73e
ILT
780 // I guess it's neither a long option nor a short option.
781 usage(_("unknown option"), argv[i]);
782 return argc;
a0451b38 783}
bae7f79e 784
bae7f79e 785
a0451b38 786void
ee1fe73e 787Command_line::process(int argc, const char** argv)
a0451b38
ILT
788{
789 bool no_more_options = false;
790 int i = 0;
791 while (i < argc)
ead1e424 792 {
ee1fe73e
ILT
793 this->position_options_.copy_from_options(this->options());
794 if (no_more_options || argv[i][0] != '-')
795 {
796 Input_file_argument file(argv[i], false, "", false,
797 this->position_options_);
798 this->inputs_.add_file(file);
799 ++i;
800 }
bae7f79e 801 else
ee1fe73e 802 i = process_one_option(argc, argv, i, &no_more_options);
bae7f79e 803 }
bae7f79e 804
dbe717ef 805 if (this->inputs_.in_group())
ee1fe73e
ILT
806 {
807 fprintf(stderr, _("%s: missing group end\n"), program_name);
808 usage();
809 }
bae7f79e 810
ee1fe73e
ILT
811 // Normalize the options and ensure they don't contradict each other.
812 this->options_.finalize();
bae7f79e 813}
61ba1cf9
ILT
814
815} // End namespace gold.
This page took 0.114888 seconds and 4 git commands to generate.