08cbf2ae9cc3d062065c3becfa5f0d3c7dbacd95
[deliverable/binutils-gdb.git] / gold / options.cc
1 // options.c -- handle command line options for gold
2
3 // Copyright 2006, 2007 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 <iostream>
26 #include <sys/stat.h>
27 #include "filenames.h"
28 #include "libiberty.h"
29
30 #include "options.h"
31
32 namespace gold
33 {
34
35 // The information we keep for a single command line option.
36
37 struct options::One_option
38 {
39 // The single character option name, or '\0' if this is only a long
40 // option.
41 char short_option;
42
43 // The long option name, or NULL if this is only a short option.
44 const char* long_option;
45
46 // Description of the option for --help output, or NULL if there is none.
47 const char* doc;
48
49 // How to print the option name in --help output, or NULL to use the
50 // default.
51 const char* help_output;
52
53 // Long option dash control. This is ignored if long_option is
54 // NULL.
55 enum
56 {
57 // Long option normally takes one dash; two dashes are also
58 // accepted.
59 ONE_DASH,
60 // Long option normally takes two dashes; one dash is also
61 // accepted.
62 TWO_DASHES,
63 // Long option always takes two dashes.
64 EXACTLY_TWO_DASHES
65 } dash;
66
67 // Function for special handling, or NULL. Returns the number of
68 // arguments to skip. This will normally be at least 1, but it may
69 // be 0 if this function changes *argv. ARG points to the location
70 // in *ARGV where the option starts, which may be helpful for a
71 // short option.
72 int (*special)(int argc, char** argv, char *arg, bool long_option,
73 Command_line*);
74
75 // If this is a position independent option which does not take an
76 // argument, this is the member function to call to record it.
77 void (General_options::*general_noarg)();
78
79 // If this is a position independent function which takes an
80 // argument, this is the member function to call to record it.
81 void (General_options::*general_arg)(const char*);
82
83 // If this is a position dependent option which does not take an
84 // argument, this is the member function to call to record it.
85 void (Position_dependent_options::*dependent_noarg)();
86
87 // If this is a position dependent option which takes an argument,
88 // this is the member function to record it.
89 void (Position_dependent_options::*dependent_arg)(const char*);
90
91 // Return whether this option takes an argument.
92 bool
93 takes_argument() const
94 { return this->general_arg != NULL || this->dependent_arg != NULL; }
95 };
96
97 // We have a separate table for -z options.
98
99 struct options::One_z_option
100 {
101 // The name of the option.
102 const char* name;
103
104 // The member function in General_options called to record it.
105 void (General_options::*set)();
106 };
107
108 class options::Command_line_options
109 {
110 public:
111 static const One_option options[];
112 static const int options_size;
113 static const One_z_option z_options[];
114 static const int z_options_size;
115 };
116
117 } // End namespace gold.
118
119 namespace
120 {
121
122 // Handle the special -l option, which adds an input file.
123
124 int
125 library(int argc, char** argv, char* arg, bool long_option,
126 gold::Command_line* cmdline)
127 {
128 return cmdline->process_l_option(argc, argv, arg, long_option);
129 }
130
131 // Handle the special -T/--script option, which reads a linker script.
132
133 int
134 invoke_script(int argc, char** argv, char* arg, bool long_option,
135 gold::Command_line* cmdline)
136 {
137 int ret;
138 const char* script_name = cmdline->get_special_argument("script", argc, argv,
139 arg, long_option,
140 &ret);
141 if (!read_commandline_script(script_name, cmdline))
142 gold::gold_error(_("%s: unable to parse script file %s\n"),
143 gold::program_name, arg);
144 return ret;
145 }
146
147 // Handle the special --start-group option.
148
149 int
150 start_group(int, char**, char* arg, bool, gold::Command_line* cmdline)
151 {
152 cmdline->start_group(arg);
153 return 1;
154 }
155
156 // Handle the special --end-group option.
157
158 int
159 end_group(int, char**, char* arg, bool, gold::Command_line* cmdline)
160 {
161 cmdline->end_group(arg);
162 return 1;
163 }
164
165 // Report usage information for ld --help, and exit.
166
167 int
168 help(int, char**, char*, bool, gold::Command_line*)
169 {
170 printf(_("Usage: %s [options] file...\nOptions:\n"), gold::program_name);
171
172 const int options_size = gold::options::Command_line_options::options_size;
173 const gold::options::One_option* options =
174 gold::options::Command_line_options::options;
175 for (int i = 0; i < options_size; ++i)
176 {
177 if (options[i].doc == NULL)
178 continue;
179
180 printf(" ");
181 int len = 2;
182 bool comma = false;
183
184 int j = i;
185 do
186 {
187 if (options[j].help_output != NULL)
188 {
189 if (comma)
190 {
191 printf(", ");
192 len += 2;
193 }
194 printf(options[j].help_output);
195 len += std::strlen(options[i].help_output);
196 comma = true;
197 }
198 else
199 {
200 if (options[j].short_option != '\0')
201 {
202 if (comma)
203 {
204 printf(", ");
205 len += 2;
206 }
207 printf("-%c", options[j].short_option);
208 len += 2;
209 comma = true;
210 }
211
212 if (options[j].long_option != NULL)
213 {
214 if (comma)
215 {
216 printf(", ");
217 len += 2;
218 }
219 if (options[j].dash == gold::options::One_option::ONE_DASH)
220 {
221 printf("-");
222 ++len;
223 }
224 else
225 {
226 printf("--");
227 len += 2;
228 }
229 printf("%s", options[j].long_option);
230 len += std::strlen(options[j].long_option);
231 comma = true;
232 }
233 }
234 ++j;
235 }
236 while (j < options_size && options[j].doc == NULL);
237
238 if (len >= 30)
239 {
240 printf("\n");
241 len = 0;
242 }
243 for (; len < 30; ++len)
244 std::putchar(' ');
245
246 std::puts(options[i].doc);
247 }
248
249 ::exit(0);
250
251 return 0;
252 }
253
254 // Report version information.
255
256 int
257 version(int, char**, char* opt, bool, gold::Command_line*)
258 {
259 gold::print_version(opt[0] == 'v' && opt[1] == '\0');
260 ::exit(0);
261 return 0;
262 }
263
264 // If the default sysroot is relocatable, try relocating it based on
265 // the prefix FROM.
266
267 char*
268 get_relative_sysroot(const char* from)
269 {
270 char* path = make_relative_prefix(gold::program_name, from,
271 TARGET_SYSTEM_ROOT);
272 if (path != NULL)
273 {
274 struct stat s;
275 if (::stat(path, &s) == 0 && S_ISDIR(s.st_mode))
276 return path;
277 free(path);
278 }
279
280 return NULL;
281 }
282
283 // Return the default sysroot. This is set by the --with-sysroot
284 // option to configure.
285
286 std::string
287 get_default_sysroot()
288 {
289 const char* sysroot = TARGET_SYSTEM_ROOT;
290 if (*sysroot == '\0')
291 return "";
292
293 if (TARGET_SYSTEM_ROOT_RELOCATABLE)
294 {
295 char* path = get_relative_sysroot (BINDIR);
296 if (path == NULL)
297 path = get_relative_sysroot (TOOLBINDIR);
298 if (path != NULL)
299 {
300 std::string ret = path;
301 free(path);
302 return ret;
303 }
304 }
305
306 return sysroot;
307 }
308
309 } // End anonymous namespace.
310
311 namespace gold
312 {
313
314 // Helper macros used to specify the options. We could also do this
315 // using constructors, but then g++ would generate code to initialize
316 // the array. We want the array to be initialized statically so that
317 // we get better startup time.
318
319 #define GENERAL_NOARG(short_option, long_option, doc, help, dash, func) \
320 { short_option, long_option, doc, help, options::One_option::dash, \
321 NULL, func, NULL, NULL, NULL }
322 #define GENERAL_ARG(short_option, long_option, doc, help, dash, func) \
323 { short_option, long_option, doc, help, options::One_option::dash, \
324 NULL, NULL, func, NULL, NULL }
325 #define POSDEP_NOARG(short_option, long_option, doc, help, dash, func) \
326 { short_option, long_option, doc, help, options::One_option::dash, \
327 NULL, NULL, NULL, func, NULL }
328 #define POSDEP_ARG(short_option, long_option, doc, help, dash, func) \
329 { short_option, long_option, doc, help, options::One_option::dash, \
330 NULL, NULL, NULL, NULL, func }
331 #define SPECIAL(short_option, long_option, doc, help, dash, func) \
332 { short_option, long_option, doc, help, options::One_option::dash, \
333 func, NULL, NULL, NULL, NULL }
334
335 // Here is the actual list of options which we accept.
336
337 const options::One_option
338 options::Command_line_options::options[] =
339 {
340 POSDEP_NOARG('\0', "as-needed",
341 N_("Only set DT_NEEDED for dynamic libs if used"),
342 NULL, TWO_DASHES, &Position_dependent_options::set_as_needed),
343 POSDEP_NOARG('\0', "no-as-needed",
344 N_("Always DT_NEEDED for dynamic libs (default)"),
345 NULL, TWO_DASHES, &Position_dependent_options::clear_as_needed),
346 POSDEP_NOARG('\0', "Bdynamic",
347 N_("-l searches for shared libraries"),
348 NULL, ONE_DASH,
349 &Position_dependent_options::set_dynamic_search),
350 POSDEP_NOARG('\0', "Bstatic",
351 N_("-l does not search for shared libraries"),
352 NULL, ONE_DASH,
353 &Position_dependent_options::set_static_search),
354 GENERAL_NOARG('\0', "Bsymbolic", N_("Bind defined symbols locally"),
355 NULL, ONE_DASH, &General_options::set_symbolic),
356 GENERAL_NOARG('E', "export-dynamic", N_("Export all dynamic symbols"),
357 NULL, TWO_DASHES, &General_options::set_export_dynamic),
358 GENERAL_NOARG('\0', "eh-frame-hdr", N_("Create exception frame header"),
359 NULL, TWO_DASHES, &General_options::set_create_eh_frame_hdr),
360 GENERAL_ARG('I', "dynamic-linker", N_("Set dynamic linker path"),
361 N_("-I PROGRAM, --dynamic-linker PROGRAM"), TWO_DASHES,
362 &General_options::set_dynamic_linker),
363 SPECIAL('l', "library", N_("Search for library LIBNAME"),
364 N_("-lLIBNAME, --library LIBNAME"), TWO_DASHES,
365 &library),
366 GENERAL_ARG('L', "library-path", N_("Add directory to search path"),
367 N_("-L DIR, --library-path DIR"), TWO_DASHES,
368 &General_options::add_to_search_path),
369 GENERAL_ARG('m', NULL, N_("Ignored for compatibility"), NULL, ONE_DASH,
370 &General_options::ignore),
371 GENERAL_ARG('o', "output", N_("Set output file name"),
372 N_("-o FILE, --output FILE"), TWO_DASHES,
373 &General_options::set_output_file_name),
374 GENERAL_ARG('O', NULL, N_("Optimize output file size"),
375 N_("-O level"), ONE_DASH,
376 &General_options::set_optimization_level),
377 GENERAL_NOARG('r', NULL, N_("Generate relocatable output"), NULL,
378 ONE_DASH, &General_options::set_relocatable),
379 GENERAL_ARG('R', "rpath", N_("Add DIR to runtime search path"),
380 N_("-R DIR, -rpath DIR"), ONE_DASH,
381 &General_options::add_to_rpath),
382 GENERAL_ARG('\0', "rpath-link",
383 N_("Add DIR to link time shared library search path"),
384 N_("--rpath-link DIR"), TWO_DASHES,
385 &General_options::add_to_rpath_link),
386 GENERAL_NOARG('s', "strip-all", N_("Strip all symbols"), NULL,
387 TWO_DASHES, &General_options::set_strip_all),
388 GENERAL_NOARG('S', "strip-debug", N_("Strip debugging information"), NULL,
389 TWO_DASHES, &General_options::set_strip_debug),
390 GENERAL_NOARG('\0', "shared", N_("Generate shared library"),
391 NULL, ONE_DASH, &General_options::set_shared),
392 GENERAL_NOARG('\0', "static", N_("Do not link against shared libraries"),
393 NULL, ONE_DASH, &General_options::set_static),
394 GENERAL_NOARG('\0', "stats", N_("Print resource usage statistics"),
395 NULL, TWO_DASHES, &General_options::set_stats),
396 GENERAL_ARG('\0', "sysroot", N_("Set target system root directory"),
397 N_("--sysroot DIR"), TWO_DASHES, &General_options::set_sysroot),
398 SPECIAL('T', "script", N_("Read linker script"),
399 N_("-T FILE, --script FILE"), TWO_DASHES,
400 &invoke_script),
401 GENERAL_ARG('\0', "Ttext", N_("Set the address of the .text section"),
402 N_("-Ttext ADDRESS"), ONE_DASH,
403 &General_options::set_text_segment_address),
404 GENERAL_NOARG('\0', "threads", N_("Run the linker multi-threaded"),
405 NULL, TWO_DASHES, &General_options::set_threads),
406 GENERAL_NOARG('\0', "no-threads", N_("Do not run the linker multi-threaded"),
407 NULL, TWO_DASHES, &General_options::clear_threads),
408 GENERAL_ARG('\0', "thread-count", N_("Number of threads to use"),
409 N_("--thread-count COUNT"), TWO_DASHES,
410 &General_options::set_thread_count),
411 GENERAL_ARG('\0', "thread-count-initial",
412 N_("Number of threads to use in initial pass"),
413 N_("--thread-count-initial COUNT"), TWO_DASHES,
414 &General_options::set_thread_count_initial),
415 GENERAL_ARG('\0', "thread-count-middle",
416 N_("Number of threads to use in middle pass"),
417 N_("--thread-count-middle COUNT"), TWO_DASHES,
418 &General_options::set_thread_count_middle),
419 GENERAL_ARG('\0', "thread-count-final",
420 N_("Number of threads to use in final pass"),
421 N_("--thread-count-final COUNT"), TWO_DASHES,
422 &General_options::set_thread_count_final),
423 POSDEP_NOARG('\0', "whole-archive",
424 N_("Include all archive contents"),
425 NULL, TWO_DASHES,
426 &Position_dependent_options::set_whole_archive),
427 POSDEP_NOARG('\0', "no-whole-archive",
428 N_("Include only needed archive contents"),
429 NULL, TWO_DASHES,
430 &Position_dependent_options::clear_whole_archive),
431
432 GENERAL_ARG('z', NULL,
433 N_("Subcommands as follows:\n\
434 -z execstack Mark output as requiring executable stack\n\
435 -z noexecstack Mark output as not requiring executable stack"),
436 N_("-z SUBCOMMAND"), ONE_DASH,
437 &General_options::handle_z_option),
438
439 SPECIAL('(', "start-group", N_("Start a library search group"), NULL,
440 TWO_DASHES, &start_group),
441 SPECIAL(')', "end-group", N_("End a library search group"), NULL,
442 TWO_DASHES, &end_group),
443 SPECIAL('\0', "help", N_("Report usage information"), NULL,
444 TWO_DASHES, &help),
445 SPECIAL('v', "version", N_("Report version information"), NULL,
446 TWO_DASHES, &version)
447 };
448
449 const int options::Command_line_options::options_size =
450 sizeof (options) / sizeof (options[0]);
451
452 // The -z options.
453
454 const options::One_z_option
455 options::Command_line_options::z_options[] =
456 {
457 { "execstack", &General_options::set_execstack },
458 { "noexecstack", &General_options::set_noexecstack },
459 };
460
461 const int options::Command_line_options::z_options_size =
462 sizeof(z_options) / sizeof(z_options[0]);
463
464 // The default values for the general options.
465
466 General_options::General_options()
467 : export_dynamic_(false),
468 dynamic_linker_(NULL),
469 search_path_(),
470 optimization_level_(0),
471 output_file_name_("a.out"),
472 is_relocatable_(false),
473 strip_(STRIP_NONE),
474 symbolic_(false),
475 create_eh_frame_hdr_(false),
476 rpath_(),
477 rpath_link_(),
478 is_shared_(false),
479 is_static_(false),
480 print_stats_(false),
481 sysroot_(),
482 text_segment_address_(-1U), // -1 indicates value not set by user
483 threads_(false),
484 thread_count_initial_(0),
485 thread_count_middle_(0),
486 thread_count_final_(0),
487 execstack_(EXECSTACK_FROM_INPUT)
488 {
489 }
490
491 // The default values for the position dependent options.
492
493 Position_dependent_options::Position_dependent_options()
494 : do_static_search_(false),
495 as_needed_(false),
496 include_whole_archive_(false)
497 {
498 }
499
500 // Handle the -z option.
501
502 void
503 General_options::handle_z_option(const char* arg)
504 {
505 const int z_options_size = options::Command_line_options::z_options_size;
506 const gold::options::One_z_option* z_options =
507 gold::options::Command_line_options::z_options;
508 for (int i = 0; i < z_options_size; ++i)
509 {
510 if (strcmp(arg, z_options[i].name) == 0)
511 {
512 (this->*(z_options[i].set))();
513 return;
514 }
515 }
516
517 fprintf(stderr, _("%s: unrecognized -z subcommand: %s\n"),
518 program_name, arg);
519 ::exit(1);
520 }
521
522 // Add the sysroot, if any, to the search paths.
523
524 void
525 General_options::add_sysroot()
526 {
527 if (this->sysroot_.empty())
528 {
529 this->sysroot_ = get_default_sysroot();
530 if (this->sysroot_.empty())
531 return;
532 }
533
534 const char* sysroot = this->sysroot_.c_str();
535 char* canonical_sysroot = lrealpath(sysroot);
536
537 for (Dir_list::iterator p = this->search_path_.begin();
538 p != this->search_path_.end();
539 ++p)
540 p->add_sysroot(sysroot, canonical_sysroot);
541
542 free(canonical_sysroot);
543 }
544
545 // Search_directory methods.
546
547 // This is called if we have a sysroot. Apply the sysroot if
548 // appropriate. Record whether the directory is in the sysroot.
549
550 void
551 Search_directory::add_sysroot(const char* sysroot,
552 const char* canonical_sysroot)
553 {
554 gold_assert(*sysroot != '\0');
555 if (this->put_in_sysroot_)
556 {
557 if (!IS_DIR_SEPARATOR(this->name_[0])
558 && !IS_DIR_SEPARATOR(sysroot[strlen(sysroot) - 1]))
559 this->name_ = '/' + this->name_;
560 this->name_ = sysroot + this->name_;
561 this->is_in_sysroot_ = true;
562 }
563 else
564 {
565 // Check whether this entry is in the sysroot. To do this
566 // correctly, we need to use canonical names. Otherwise we will
567 // get confused by the ../../.. paths that gcc tends to use.
568 char* canonical_name = lrealpath(this->name_.c_str());
569 int canonical_name_len = strlen(canonical_name);
570 int canonical_sysroot_len = strlen(canonical_sysroot);
571 if (canonical_name_len > canonical_sysroot_len
572 && IS_DIR_SEPARATOR(canonical_name[canonical_sysroot_len]))
573 {
574 canonical_name[canonical_sysroot_len] = '\0';
575 if (FILENAME_CMP(canonical_name, canonical_sysroot) == 0)
576 this->is_in_sysroot_ = true;
577 }
578 free(canonical_name);
579 }
580 }
581
582 // Input_arguments methods.
583
584 // Add a file to the list.
585
586 void
587 Input_arguments::add_file(const Input_file_argument& file)
588 {
589 if (!this->in_group_)
590 this->input_argument_list_.push_back(Input_argument(file));
591 else
592 {
593 gold_assert(!this->input_argument_list_.empty());
594 gold_assert(this->input_argument_list_.back().is_group());
595 this->input_argument_list_.back().group()->add_file(file);
596 }
597 }
598
599 // Start a group.
600
601 void
602 Input_arguments::start_group()
603 {
604 gold_assert(!this->in_group_);
605 Input_file_group* group = new Input_file_group();
606 this->input_argument_list_.push_back(Input_argument(group));
607 this->in_group_ = true;
608 }
609
610 // End a group.
611
612 void
613 Input_arguments::end_group()
614 {
615 gold_assert(this->in_group_);
616 this->in_group_ = false;
617 }
618
619 // Command_line options.
620
621 Command_line::Command_line()
622 : options_(), position_options_(), inputs_()
623 {
624 }
625
626 // Process the command line options.
627
628 void
629 Command_line::process(int argc, char** argv)
630 {
631 const int options_size = options::Command_line_options::options_size;
632 const options::One_option* options =
633 options::Command_line_options::options;
634 bool no_more_options = false;
635 int i = 0;
636 while (i < argc)
637 {
638 if (argv[i][0] != '-' || no_more_options)
639 {
640 this->add_file(argv[i], false);
641 ++i;
642 continue;
643 }
644
645 // Option starting with '-'.
646 int dashes = 1;
647 if (argv[i][1] == '-')
648 {
649 dashes = 2;
650 if (argv[i][2] == '\0')
651 {
652 no_more_options = true;
653 continue;
654 }
655 }
656
657 // Look for a long option match.
658 char* opt = argv[i] + dashes;
659 char first = opt[0];
660 int skiparg = 0;
661 char* arg = strchr(opt, '=');
662 bool argument_with_equals = arg != NULL;
663 if (arg != NULL)
664 {
665 *arg = '\0';
666 ++arg;
667 }
668 else if (i + 1 < argc)
669 {
670 arg = argv[i + 1];
671 skiparg = 1;
672 }
673
674 int j;
675 for (j = 0; j < options_size; ++j)
676 {
677 if (options[j].long_option != NULL
678 && (dashes == 2
679 || (options[j].dash
680 != options::One_option::EXACTLY_TWO_DASHES))
681 && first == options[j].long_option[0]
682 && strcmp(opt, options[j].long_option) == 0)
683 {
684 if (options[j].special)
685 {
686 // Restore the '=' we clobbered above.
687 if (arg != NULL && skiparg == 0)
688 arg[-1] = '=';
689 i += options[j].special(argc - i, argv + i, opt, true, this);
690 }
691 else
692 {
693 if (!options[j].takes_argument())
694 {
695 if (argument_with_equals)
696 this->usage(_("unexpected argument"), argv[i]);
697 arg = NULL;
698 skiparg = 0;
699 }
700 else
701 {
702 if (arg == NULL)
703 this->usage(_("missing argument"), argv[i]);
704 }
705 this->apply_option(options[j], arg);
706 i += skiparg + 1;
707 }
708 break;
709 }
710 }
711 if (j < options_size)
712 continue;
713
714 // If we saw two dashes, we need to see a long option.
715 if (dashes == 2)
716 this->usage(_("unknown option"), argv[i]);
717
718 // Look for a short option match. There may be more than one
719 // short option in a given argument.
720 bool done = false;
721 char* s = argv[i] + 1;
722 ++i;
723 while (*s != '\0' && !done)
724 {
725 char opt = *s;
726 int j;
727 for (j = 0; j < options_size; ++j)
728 {
729 if (options[j].short_option == opt)
730 {
731 if (options[j].special)
732 {
733 // Undo the argument skip done above.
734 --i;
735 i += options[j].special(argc - i, argv + i, s, false,
736 this);
737 done = true;
738 }
739 else
740 {
741 arg = NULL;
742 if (options[j].takes_argument())
743 {
744 if (s[1] != '\0')
745 {
746 arg = s + 1;
747 done = true;
748 }
749 else if (i < argc)
750 {
751 arg = argv[i];
752 ++i;
753 }
754 else
755 this->usage(_("missing argument"), opt);
756 }
757 this->apply_option(options[j], arg);
758 }
759 break;
760 }
761 }
762
763 if (j >= options_size)
764 this->usage(_("unknown option"), *s);
765
766 ++s;
767 }
768 }
769
770 if (this->inputs_.in_group())
771 {
772 fprintf(stderr, _("%s: missing group end\n"), program_name);
773 this->usage();
774 }
775
776 // FIXME: We should only do this when configured in native mode.
777 this->options_.add_to_search_path_with_sysroot("/lib");
778 this->options_.add_to_search_path_with_sysroot("/usr/lib");
779
780 this->options_.add_sysroot();
781
782 // Ensure options don't contradict each other and are otherwise kosher.
783 this->normalize_options();
784 }
785
786 // Extract an option argument for a special option. LONGNAME is the
787 // long name of the option. This sets *PRET to the return value for
788 // the special function handler to skip to the next option.
789
790 const char*
791 Command_line::get_special_argument(const char* longname, int argc, char** argv,
792 const char* arg, bool long_option,
793 int *pret)
794 {
795 if (long_option)
796 {
797 size_t longlen = strlen(longname);
798 gold_assert(strncmp(arg, longname, longlen) == 0);
799 arg += longlen;
800 if (*arg == '=')
801 {
802 *pret = 1;
803 return arg + 1;
804 }
805 else if (argc > 1)
806 {
807 gold_assert(*arg == '\0');
808 *pret = 2;
809 return argv[1];
810 }
811 }
812 else
813 {
814 if (arg[1] != '\0')
815 {
816 *pret = 1;
817 return arg + 1;
818 }
819 else if (argc > 1)
820 {
821 *pret = 2;
822 return argv[1];
823 }
824 }
825
826 this->usage(_("missing argument"), arg);
827 }
828
829 // Ensure options don't contradict each other and are otherwise kosher.
830
831 void
832 Command_line::normalize_options()
833 {
834 // If the user specifies both -s and -r, convert the -s as -S.
835 // -r requires us to keep externally visible symbols!
836 if (this->options_.strip_all() && this->options_.is_relocatable())
837 {
838 // Clears the strip_all() status, replacing it with strip_debug().
839 this->options_.set_strip_debug();
840 }
841
842 // FIXME: we can/should be doing a lot more sanity checking here.
843 }
844
845
846 // Apply a command line option.
847
848 void
849 Command_line::apply_option(const options::One_option& opt,
850 const char* arg)
851 {
852 if (arg == NULL)
853 {
854 if (opt.general_noarg)
855 (this->options_.*(opt.general_noarg))();
856 else if (opt.dependent_noarg)
857 (this->position_options_.*(opt.dependent_noarg))();
858 else
859 gold_unreachable();
860 }
861 else
862 {
863 if (opt.general_arg)
864 (this->options_.*(opt.general_arg))(arg);
865 else if (opt.dependent_arg)
866 (this->position_options_.*(opt.dependent_arg))(arg);
867 else
868 gold_unreachable();
869 }
870 }
871
872 // Add an input file or library.
873
874 void
875 Command_line::add_file(const char* name, bool is_lib)
876 {
877 Input_file_argument file(name, is_lib, "", this->position_options_);
878 this->inputs_.add_file(file);
879 }
880
881 // Handle the -l option, which requires special treatment.
882
883 int
884 Command_line::process_l_option(int argc, char** argv, char* arg,
885 bool long_option)
886 {
887 int ret;
888 const char* libname = this->get_special_argument("library", argc, argv, arg,
889 long_option, &ret);
890 this->add_file(libname, true);
891 return ret;
892 }
893
894 // Handle the --start-group option.
895
896 void
897 Command_line::start_group(const char* arg)
898 {
899 if (this->inputs_.in_group())
900 this->usage(_("may not nest groups"), arg);
901 this->inputs_.start_group();
902 }
903
904 // Handle the --end-group option.
905
906 void
907 Command_line::end_group(const char* arg)
908 {
909 if (!this->inputs_.in_group())
910 this->usage(_("group end without group start"), arg);
911 this->inputs_.end_group();
912 }
913
914 // Report a usage error. */
915
916 void
917 Command_line::usage()
918 {
919 fprintf(stderr,
920 _("%s: use the --help option for usage information\n"),
921 program_name);
922 ::exit(1);
923 }
924
925 void
926 Command_line::usage(const char* msg, const char *opt)
927 {
928 fprintf(stderr,
929 _("%s: %s: %s\n"),
930 program_name, opt, msg);
931 this->usage();
932 }
933
934 void
935 Command_line::usage(const char* msg, char opt)
936 {
937 fprintf(stderr,
938 _("%s: -%c: %s\n"),
939 program_name, opt, msg);
940 this->usage();
941 }
942
943 } // End namespace gold.
This page took 0.073801 seconds and 4 git commands to generate.