1 // options.c -- handle command line options for gold
3 // Copyright 2006, 2007, 2008 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
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.
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.
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.
28 #include "filenames.h"
29 #include "libiberty.h"
38 // The information we keep for a single command line option.
40 struct options::One_option
42 // The single character option name, or '\0' if this is only a long
46 // The long option name, or NULL if this is only a short option.
47 const char* long_option
;
49 // Description of the option for --help output, or NULL if there is none.
52 // How to print the option name in --help output, or NULL to use the
54 const char* help_output
;
56 // Long option dash control. This is ignored if long_option is
60 // Long option normally takes one dash; two dashes are also
63 // Long option normally takes two dashes; one dash is also
66 // Long option always takes two dashes.
70 // Function for special handling, or NULL. Returns the number of
71 // arguments to skip. This will normally be at least 1, but it may
72 // be 0 if this function changes *argv. ARG points to the location
73 // in *ARGV where the option starts, which may be helpful for a
75 int (*special
)(int argc
, char** argv
, char *arg
, bool long_option
,
78 // If this is a position independent option which does not take an
79 // argument, this is the member function to call to record it.
80 void (General_options::*general_noarg
)();
82 // If this is a position independent function which takes an
83 // argument, this is the member function to call to record it.
84 void (General_options::*general_arg
)(const char*);
86 // If this is a position dependent option which does not take an
87 // argument, this is the member function to call to record it.
88 void (Position_dependent_options::*dependent_noarg
)();
90 // If this is a position dependent option which takes an argument,
91 // this is the member function to record it.
92 void (Position_dependent_options::*dependent_arg
)(const char*);
94 // Return whether this option takes an argument.
96 takes_argument() const
97 { return this->general_arg
!= NULL
|| this->dependent_arg
!= NULL
; }
100 // We have a separate table for -z options.
102 struct options::One_z_option
104 // The name of the option.
107 // The member function in General_options called to record it.
108 void (General_options::*set
)();
111 // We have a separate table for --debug options.
113 struct options::One_debug_option
115 // The name of the option.
118 // The flags to turn on.
119 unsigned int debug_flags
;
122 class options::Command_line_options
125 static const One_option options
[];
126 static const int options_size
;
127 static const One_z_option z_options
[];
128 static const int z_options_size
;
129 static const One_debug_option debug_options
[];
130 static const int debug_options_size
;
133 } // End namespace gold.
138 // Recognize input and output target names. The GNU linker accepts
139 // these with --format and --oformat. This code is intended to be
140 // minimally compatible. In practice for an ELF target this would be
141 // the same target as the input files; that name always start with
142 // "elf". Non-ELF targets would be "srec", "symbolsrec", "tekhex",
145 gold::General_options::Object_format
146 string_to_object_format(const char* arg
)
148 if (strncmp(arg
, "elf", 3) == 0)
149 return gold::General_options::OBJECT_FORMAT_ELF
;
150 else if (strcmp(arg
, "binary") == 0)
151 return gold::General_options::OBJECT_FORMAT_BINARY
;
154 gold::gold_error(_("format '%s' not supported "
155 "(supported formats: elf, binary)"),
157 return gold::General_options::OBJECT_FORMAT_ELF
;
161 // Handle the special -l option, which adds an input file.
164 library(int argc
, char** argv
, char* arg
, bool long_option
,
165 gold::Command_line
* cmdline
)
167 return cmdline
->process_l_option(argc
, argv
, arg
, long_option
);
170 // Handle the -R option. Historically the GNU linker made -R a
171 // synonym for --just-symbols. ELF linkers have traditionally made -R
172 // a synonym for -rpath. When ELF support was added to the GNU
173 // linker, -R was changed to switch based on the argument: if the
174 // argument is an ordinary file, we treat it as --just-symbols,
175 // otherwise we treat it as -rpath. We need to be compatible with
176 // this, because existing build scripts rely on it.
179 handle_r_option(int argc
, char** argv
, char* arg
, bool long_option
,
180 gold::Command_line
* cmdline
)
183 const char* val
= cmdline
->get_special_argument("R", argc
, argv
, arg
,
186 if (::stat(val
, &s
) != 0 || S_ISDIR(s
.st_mode
))
187 cmdline
->add_to_rpath(val
);
189 cmdline
->add_just_symbols_file(val
);
193 // Handle the --just-symbols option.
196 handle_just_symbols_option(int argc
, char** argv
, char* arg
,
197 bool long_option
, gold::Command_line
* cmdline
)
200 const char* val
= cmdline
->get_special_argument("just-symbols", argc
, argv
,
201 arg
, long_option
, &ret
);
202 cmdline
->add_just_symbols_file(val
);
206 // Handle the special -T/--script option, which reads a linker script.
209 invoke_script(int argc
, char** argv
, char* arg
, bool long_option
,
210 gold::Command_line
* cmdline
)
213 const char* script_name
= cmdline
->get_special_argument("script", argc
, argv
,
216 if (!read_commandline_script(script_name
, cmdline
))
217 gold::gold_fatal(_("unable to parse script file %s"), script_name
);
221 // Handle the special --version-script option, which reads a version script.
224 invoke_version_script(int argc
, char** argv
, char* arg
, bool long_option
,
225 gold::Command_line
* cmdline
)
228 const char* script_name
= cmdline
->get_special_argument("version-script",
232 if (!read_version_script(script_name
, cmdline
))
233 gold::gold_fatal(_("unable to parse version script file %s"), script_name
);
237 // Handle the special --start-group option.
240 start_group(int, char**, char* arg
, bool, gold::Command_line
* cmdline
)
242 cmdline
->start_group(arg
);
246 // Handle the special --end-group option.
249 end_group(int, char**, char* arg
, bool, gold::Command_line
* cmdline
)
251 cmdline
->end_group(arg
);
255 // Report usage information for ld --help, and exit.
258 help(int, char**, char*, bool, gold::Command_line
*)
260 printf(_("Usage: %s [options] file...\nOptions:\n"), gold::program_name
);
262 const int options_size
= gold::options::Command_line_options::options_size
;
263 const gold::options::One_option
* options
=
264 gold::options::Command_line_options::options
;
265 for (int i
= 0; i
< options_size
; ++i
)
267 if (options
[i
].doc
== NULL
)
277 if (options
[j
].help_output
!= NULL
)
284 printf(options
[j
].help_output
);
285 len
+= std::strlen(options
[j
].help_output
);
290 if (options
[j
].short_option
!= '\0')
297 printf("-%c", options
[j
].short_option
);
302 if (options
[j
].long_option
!= NULL
)
309 if (options
[j
].dash
== gold::options::One_option::ONE_DASH
)
319 printf("%s", options
[j
].long_option
);
320 len
+= std::strlen(options
[j
].long_option
);
326 while (j
< options_size
&& options
[j
].doc
== NULL
);
333 for (; len
< 30; ++len
)
336 std::puts(options
[i
].doc
);
339 ::exit(EXIT_SUCCESS
);
344 // Report version information.
347 version(int, char**, char* opt
, bool, gold::Command_line
*)
349 gold::print_version(opt
[0] == 'v' && opt
[1] == '\0');
350 ::exit(EXIT_SUCCESS
);
354 // If the default sysroot is relocatable, try relocating it based on
358 get_relative_sysroot(const char* from
)
360 char* path
= make_relative_prefix(gold::program_name
, from
,
365 if (::stat(path
, &s
) == 0 && S_ISDIR(s
.st_mode
))
373 // Return the default sysroot. This is set by the --with-sysroot
374 // option to configure.
377 get_default_sysroot()
379 const char* sysroot
= TARGET_SYSTEM_ROOT
;
380 if (*sysroot
== '\0')
383 if (TARGET_SYSTEM_ROOT_RELOCATABLE
)
385 char* path
= get_relative_sysroot (BINDIR
);
387 path
= get_relative_sysroot (TOOLBINDIR
);
390 std::string ret
= path
;
399 } // End anonymous namespace.
404 // Helper macros used to specify the options. We could also do this
405 // using constructors, but then g++ would generate code to initialize
406 // the array. We want the array to be initialized statically so that
407 // we get better startup time.
409 #define GENERAL_NOARG(short_option, long_option, doc, help, dash, func) \
410 { short_option, long_option, doc, help, options::One_option::dash, \
411 NULL, func, NULL, NULL, NULL }
412 #define GENERAL_ARG(short_option, long_option, doc, help, dash, func) \
413 { short_option, long_option, doc, help, options::One_option::dash, \
414 NULL, NULL, func, NULL, NULL }
415 #define POSDEP_NOARG(short_option, long_option, doc, help, dash, func) \
416 { short_option, long_option, doc, help, options::One_option::dash, \
417 NULL, NULL, NULL, func, NULL }
418 #define POSDEP_ARG(short_option, long_option, doc, help, dash, func) \
419 { short_option, long_option, doc, help, options::One_option::dash, \
420 NULL, NULL, NULL, NULL, func }
421 #define SPECIAL(short_option, long_option, doc, help, dash, func) \
422 { short_option, long_option, doc, help, options::One_option::dash, \
423 func, NULL, NULL, NULL, NULL }
425 // Here is the actual list of options which we accept.
427 const options::One_option
428 options::Command_line_options::options
[] =
430 GENERAL_NOARG('\0', "allow-shlib-undefined",
431 N_("Allow unresolved references in shared libraries"),
433 &General_options::set_allow_shlib_undefined
),
434 GENERAL_NOARG('\0', "no-allow-shlib-undefined",
435 N_("Do not allow unresolved references in shared libraries"),
437 &General_options::set_no_allow_shlib_undefined
),
438 POSDEP_NOARG('\0', "as-needed",
439 N_("Only set DT_NEEDED for dynamic libs if used"),
440 NULL
, TWO_DASHES
, &Position_dependent_options::set_as_needed
),
441 POSDEP_NOARG('\0', "no-as-needed",
442 N_("Always DT_NEEDED for dynamic libs (default)"),
443 NULL
, TWO_DASHES
, &Position_dependent_options::clear_as_needed
),
444 POSDEP_NOARG('\0', "Bdynamic",
445 N_("-l searches for shared libraries"),
447 &Position_dependent_options::set_dynamic_search
),
448 POSDEP_NOARG('\0', "Bstatic",
449 N_("-l does not search for shared libraries"),
451 &Position_dependent_options::set_static_search
),
452 GENERAL_NOARG('\0', "Bsymbolic", N_("Bind defined symbols locally"),
453 NULL
, ONE_DASH
, &General_options::set_symbolic
),
454 POSDEP_ARG('b', "format", N_("Set input format (elf, binary)"),
455 N_("-b FORMAT, --format FORMAT"), TWO_DASHES
,
456 &Position_dependent_options::set_input_format
),
458 # define ZLIB_STR ",zlib"
462 GENERAL_ARG('\0', "compress-debug-sections",
463 N_("Compress .debug_* sections in the output file "
464 "(default is none)"),
465 N_("--compress-debug-sections=[none" ZLIB_STR
"]"),
467 &General_options::set_compress_debug_sections
),
468 GENERAL_ARG('\0', "defsym", N_("Define a symbol"),
469 N_("--defsym SYMBOL=EXPRESSION"), TWO_DASHES
,
470 &General_options::define_symbol
),
471 GENERAL_NOARG('\0', "demangle", N_("Demangle C++ symbols in log messages"),
472 NULL
, TWO_DASHES
, &General_options::set_demangle
),
473 GENERAL_NOARG('\0', "no-demangle",
474 N_("Do not demangle C++ symbols in log messages"),
475 NULL
, TWO_DASHES
, &General_options::clear_demangle
),
476 GENERAL_NOARG('\0', "detect-odr-violations",
477 N_("Try to detect violations of the One Definition Rule"),
478 NULL
, TWO_DASHES
, &General_options::set_detect_odr_violations
),
479 GENERAL_ARG('e', "entry", N_("Set program start address"),
480 N_("-e ADDRESS, --entry ADDRESS"), TWO_DASHES
,
481 &General_options::set_entry
),
482 GENERAL_NOARG('E', "export-dynamic", N_("Export all dynamic symbols"),
483 NULL
, TWO_DASHES
, &General_options::set_export_dynamic
),
484 GENERAL_NOARG('\0', "eh-frame-hdr", N_("Create exception frame header"),
485 NULL
, TWO_DASHES
, &General_options::set_create_eh_frame_hdr
),
486 GENERAL_ARG('h', "soname", N_("Set shared library name"),
487 N_("-h FILENAME, -soname FILENAME"), ONE_DASH
,
488 &General_options::set_soname
),
489 GENERAL_ARG('I', "dynamic-linker", N_("Set dynamic linker path"),
490 N_("-I PROGRAM, --dynamic-linker PROGRAM"), TWO_DASHES
,
491 &General_options::set_dynamic_linker
),
492 SPECIAL('l', "library", N_("Search for library LIBNAME"),
493 N_("-lLIBNAME, --library LIBNAME"), TWO_DASHES
,
495 GENERAL_ARG('L', "library-path", N_("Add directory to search path"),
496 N_("-L DIR, --library-path DIR"), TWO_DASHES
,
497 &General_options::add_to_search_path
),
498 GENERAL_ARG('m', NULL
, N_("Ignored for compatibility"), NULL
, ONE_DASH
,
499 &General_options::ignore
),
500 GENERAL_ARG('o', "output", N_("Set output file name"),
501 N_("-o FILE, --output FILE"), TWO_DASHES
,
502 &General_options::set_output_file_name
),
503 GENERAL_ARG('O', NULL
, N_("Optimize output file size"),
504 N_("-O level"), ONE_DASH
,
505 &General_options::set_optimization_level
),
506 GENERAL_ARG('\0', "oformat", N_("Set output format (only binary supported)"),
507 N_("--oformat FORMAT"), EXACTLY_TWO_DASHES
,
508 &General_options::set_output_format
),
509 GENERAL_NOARG('r', NULL
, N_("Generate relocatable output"), NULL
,
510 ONE_DASH
, &General_options::set_relocatable
),
511 // -R really means -rpath, but can mean --just-symbols for
512 // compatibility with GNU ld. -rpath is always -rpath, so we list
514 SPECIAL('R', NULL
, N_("Add DIR to runtime search path"),
515 N_("-R DIR"), ONE_DASH
, &handle_r_option
),
516 GENERAL_ARG('\0', "rpath", NULL
, N_("-rpath DIR"), ONE_DASH
,
517 &General_options::add_to_rpath
),
518 SPECIAL('\0', "just-symbols", N_("Read only symbol values from file"),
519 N_("-R FILE, --just-symbols FILE"), TWO_DASHES
,
520 &handle_just_symbols_option
),
521 GENERAL_ARG('\0', "rpath-link",
522 N_("Add DIR to link time shared library search path"),
523 N_("--rpath-link DIR"), TWO_DASHES
,
524 &General_options::add_to_rpath_link
),
525 GENERAL_NOARG('s', "strip-all", N_("Strip all symbols"), NULL
,
526 TWO_DASHES
, &General_options::set_strip_all
),
527 GENERAL_NOARG('\0', "strip-debug-gdb",
528 N_("Strip debug symbols that are unused by gdb "
529 "(at least versions <= 6.7)"),
530 NULL
, TWO_DASHES
, &General_options::set_strip_debug_gdb
),
531 // This must come after -Sdebug since it's a prefix of it.
532 GENERAL_NOARG('S', "strip-debug", N_("Strip debugging information"), NULL
,
533 TWO_DASHES
, &General_options::set_strip_debug
),
534 GENERAL_NOARG('\0', "shared", N_("Generate shared library"),
535 NULL
, ONE_DASH
, &General_options::set_shared
),
536 GENERAL_NOARG('\0', "static", N_("Do not link against shared libraries"),
537 NULL
, ONE_DASH
, &General_options::set_static
),
538 GENERAL_NOARG('\0', "stats", N_("Print resource usage statistics"),
539 NULL
, TWO_DASHES
, &General_options::set_stats
),
540 GENERAL_ARG('\0', "sysroot", N_("Set target system root directory"),
541 N_("--sysroot DIR"), TWO_DASHES
, &General_options::set_sysroot
),
542 GENERAL_ARG('\0', "Ttext", N_("Set the address of the .text section"),
543 N_("-Ttext ADDRESS"), ONE_DASH
,
544 &General_options::set_text_segment_address
),
545 // This must come after -Ttext since it's a prefix of it.
546 SPECIAL('T', "script", N_("Read linker script"),
547 N_("-T FILE, --script FILE"), TWO_DASHES
,
549 SPECIAL('\0', "version-script", N_("Read version script"),
550 N_("--version-script FILE"), TWO_DASHES
,
551 &invoke_version_script
),
552 GENERAL_NOARG('\0', "threads", N_("Run the linker multi-threaded"),
553 NULL
, TWO_DASHES
, &General_options::set_threads
),
554 GENERAL_NOARG('\0', "no-threads", N_("Do not run the linker multi-threaded"),
555 NULL
, TWO_DASHES
, &General_options::clear_threads
),
556 GENERAL_ARG('\0', "thread-count", N_("Number of threads to use"),
557 N_("--thread-count COUNT"), TWO_DASHES
,
558 &General_options::set_thread_count
),
559 GENERAL_ARG('\0', "thread-count-initial",
560 N_("Number of threads to use in initial pass"),
561 N_("--thread-count-initial COUNT"), TWO_DASHES
,
562 &General_options::set_thread_count_initial
),
563 GENERAL_ARG('\0', "thread-count-middle",
564 N_("Number of threads to use in middle pass"),
565 N_("--thread-count-middle COUNT"), TWO_DASHES
,
566 &General_options::set_thread_count_middle
),
567 GENERAL_ARG('\0', "thread-count-final",
568 N_("Number of threads to use in final pass"),
569 N_("--thread-count-final COUNT"), TWO_DASHES
,
570 &General_options::set_thread_count_final
),
571 POSDEP_NOARG('\0', "whole-archive",
572 N_("Include all archive contents"),
574 &Position_dependent_options::set_whole_archive
),
575 POSDEP_NOARG('\0', "no-whole-archive",
576 N_("Include only needed archive contents"),
578 &Position_dependent_options::clear_whole_archive
),
580 GENERAL_ARG('z', NULL
,
581 N_("Subcommands as follows:\n\
582 -z execstack Mark output as requiring executable stack\n\
583 -z noexecstack Mark output as not requiring executable stack"),
584 N_("-z SUBCOMMAND"), ONE_DASH
,
585 &General_options::handle_z_option
),
587 SPECIAL('(', "start-group", N_("Start a library search group"), NULL
,
588 TWO_DASHES
, &start_group
),
589 SPECIAL(')', "end-group", N_("End a library search group"), NULL
,
590 TWO_DASHES
, &end_group
),
591 SPECIAL('\0', "help", N_("Report usage information"), NULL
,
593 SPECIAL('v', "version", N_("Report version information"), NULL
,
594 TWO_DASHES
, &version
),
595 GENERAL_ARG('\0', "debug", N_("Turn on debugging (all,task,script)"),
596 N_("--debug=TYPE"), TWO_DASHES
,
597 &General_options::handle_debug_option
)
600 const int options::Command_line_options::options_size
=
601 sizeof (options
) / sizeof (options
[0]);
605 const options::One_z_option
606 options::Command_line_options::z_options
[] =
608 { "execstack", &General_options::set_execstack
},
609 { "noexecstack", &General_options::set_noexecstack
},
612 const int options::Command_line_options::z_options_size
=
613 sizeof(z_options
) / sizeof(z_options
[0]);
615 // The --debug options.
617 const options::One_debug_option
618 options::Command_line_options::debug_options
[] =
620 { "all", DEBUG_ALL
},
621 { "task", DEBUG_TASK
},
622 { "script", DEBUG_SCRIPT
}
625 const int options::Command_line_options::debug_options_size
=
626 sizeof(debug_options
) / sizeof(debug_options
[0]);
628 // The default values for the general options.
630 General_options::General_options(Script_options
* script_options
)
631 : export_dynamic_(false),
633 dynamic_linker_(NULL
),
635 optimization_level_(0),
636 output_file_name_("a.out"),
637 output_format_(OBJECT_FORMAT_ELF
),
638 is_relocatable_(false),
640 allow_shlib_undefined_(false),
642 compress_debug_sections_(NO_COMPRESSION
),
643 detect_odr_violations_(false),
644 create_eh_frame_hdr_(false),
651 text_segment_address_(-1U), // -1 indicates value not set by user
653 thread_count_initial_(0),
654 thread_count_middle_(0),
655 thread_count_final_(0),
656 execstack_(EXECSTACK_FROM_INPUT
),
658 script_options_(script_options
)
660 // We initialize demangle_ based on the environment variable
661 // COLLECT_NO_DEMANGLE. The gcc collect2 program will demangle the
662 // output of the linker, unless COLLECT_NO_DEMANGLE is set in the
663 // environment. Acting the same way here lets us provide the same
664 // interface by default.
665 this->demangle_
= getenv("COLLECT_NO_DEMANGLE") == NULL
;
668 // Handle the --defsym option.
671 General_options::define_symbol(const char* arg
)
673 this->script_options_
->define_symbol(arg
);
676 // Handle the --oformat option.
679 General_options::set_output_format(const char* arg
)
681 this->output_format_
= string_to_object_format(arg
);
684 // Handle the -z option.
687 General_options::handle_z_option(const char* arg
)
689 const int z_options_size
= options::Command_line_options::z_options_size
;
690 const gold::options::One_z_option
* z_options
=
691 gold::options::Command_line_options::z_options
;
692 for (int i
= 0; i
< z_options_size
; ++i
)
694 if (strcmp(arg
, z_options
[i
].name
) == 0)
696 (this->*(z_options
[i
].set
))();
701 fprintf(stderr
, _("%s: unrecognized -z subcommand: %s\n"),
703 ::exit(EXIT_FAILURE
);
706 // Handle the --debug option.
709 General_options::handle_debug_option(const char* arg
)
711 const int debug_options_size
=
712 options::Command_line_options::debug_options_size
;
713 const gold::options::One_debug_option
* debug_options
=
714 options::Command_line_options::debug_options
;
715 for (int i
= 0; i
< debug_options_size
; ++i
)
717 if (strcmp(arg
, debug_options
[i
].name
) == 0)
719 this->set_debug(debug_options
[i
].debug_flags
);
724 fprintf(stderr
, _("%s: unrecognized --debug subcommand: %s\n"),
726 ::exit(EXIT_FAILURE
);
729 // Add the sysroot, if any, to the search paths.
732 General_options::add_sysroot()
734 if (this->sysroot_
.empty())
736 this->sysroot_
= get_default_sysroot();
737 if (this->sysroot_
.empty())
741 const char* sysroot
= this->sysroot_
.c_str();
742 char* canonical_sysroot
= lrealpath(sysroot
);
744 for (Dir_list::iterator p
= this->search_path_
.begin();
745 p
!= this->search_path_
.end();
747 p
->add_sysroot(sysroot
, canonical_sysroot
);
749 free(canonical_sysroot
);
752 // The default values for the position dependent options.
754 Position_dependent_options::Position_dependent_options()
755 : do_static_search_(false),
757 include_whole_archive_(false),
758 input_format_(General_options::OBJECT_FORMAT_ELF
)
762 // Set the input format.
765 Position_dependent_options::set_input_format(const char* arg
)
767 this->input_format_
= string_to_object_format(arg
);
770 // Search_directory methods.
772 // This is called if we have a sysroot. Apply the sysroot if
773 // appropriate. Record whether the directory is in the sysroot.
776 Search_directory::add_sysroot(const char* sysroot
,
777 const char* canonical_sysroot
)
779 gold_assert(*sysroot
!= '\0');
780 if (this->put_in_sysroot_
)
782 if (!IS_DIR_SEPARATOR(this->name_
[0])
783 && !IS_DIR_SEPARATOR(sysroot
[strlen(sysroot
) - 1]))
784 this->name_
= '/' + this->name_
;
785 this->name_
= sysroot
+ this->name_
;
786 this->is_in_sysroot_
= true;
790 // Check whether this entry is in the sysroot. To do this
791 // correctly, we need to use canonical names. Otherwise we will
792 // get confused by the ../../.. paths that gcc tends to use.
793 char* canonical_name
= lrealpath(this->name_
.c_str());
794 int canonical_name_len
= strlen(canonical_name
);
795 int canonical_sysroot_len
= strlen(canonical_sysroot
);
796 if (canonical_name_len
> canonical_sysroot_len
797 && IS_DIR_SEPARATOR(canonical_name
[canonical_sysroot_len
]))
799 canonical_name
[canonical_sysroot_len
] = '\0';
800 if (FILENAME_CMP(canonical_name
, canonical_sysroot
) == 0)
801 this->is_in_sysroot_
= true;
803 free(canonical_name
);
807 // Input_arguments methods.
809 // Add a file to the list.
812 Input_arguments::add_file(const Input_file_argument
& file
)
814 if (!this->in_group_
)
815 this->input_argument_list_
.push_back(Input_argument(file
));
818 gold_assert(!this->input_argument_list_
.empty());
819 gold_assert(this->input_argument_list_
.back().is_group());
820 this->input_argument_list_
.back().group()->add_file(file
);
827 Input_arguments::start_group()
829 gold_assert(!this->in_group_
);
830 Input_file_group
* group
= new Input_file_group();
831 this->input_argument_list_
.push_back(Input_argument(group
));
832 this->in_group_
= true;
838 Input_arguments::end_group()
840 gold_assert(this->in_group_
);
841 this->in_group_
= false;
844 // Command_line options.
846 Command_line::Command_line(Script_options
* script_options
)
847 : options_(script_options
), position_options_(), inputs_()
851 // Process the command line options. For process_one_option,
852 // i is the index of argv to process next, and the return value
853 // is the index of the next option to process (i+1 or i+2, or argc
854 // to indicate processing is done). no_more_options is set to true
855 // if (and when) "--" is seen as an option.
858 Command_line::process_one_option(int argc
, char** argv
, int i
,
859 bool* no_more_options
)
861 const int options_size
= options::Command_line_options::options_size
;
862 const options::One_option
* options
= options::Command_line_options::options
;
863 gold_assert(i
< argc
);
865 if (argv
[i
][0] != '-' || *no_more_options
)
867 this->add_file(argv
[i
], false);
871 // Option starting with '-'.
873 if (argv
[i
][1] == '-')
876 if (argv
[i
][2] == '\0')
878 *no_more_options
= true;
883 // Look for a long option match.
884 char* opt
= argv
[i
] + dashes
;
887 char* arg
= strchr(opt
, '=');
888 bool argument_with_equals
= arg
!= NULL
;
894 else if (i
+ 1 < argc
)
901 for (j
= 0; j
< options_size
; ++j
)
903 if (options
[j
].long_option
!= NULL
906 != options::One_option::EXACTLY_TWO_DASHES
))
907 && first
== options
[j
].long_option
[0]
908 && strcmp(opt
, options
[j
].long_option
) == 0)
910 if (options
[j
].special
)
912 // Restore the '=' we clobbered above.
913 if (arg
!= NULL
&& skiparg
== 0)
915 i
+= options
[j
].special(argc
- i
, argv
+ i
, opt
, true, this);
919 if (!options
[j
].takes_argument())
921 if (argument_with_equals
)
922 this->usage(_("unexpected argument"), argv
[i
]);
929 this->usage(_("missing argument"), argv
[i
]);
931 this->apply_option(options
[j
], arg
);
937 if (j
< options_size
)
940 // If we saw two dashes, we needed to have seen a long option.
942 this->usage(_("unknown option"), argv
[i
]);
944 // Look for a short option match. There may be more than one
945 // short option in a given argument.
947 char* s
= argv
[i
] + 1;
949 while (*s
!= '\0' && !done
)
953 for (j
= 0; j
< options_size
; ++j
)
955 if (options
[j
].short_option
== opt
)
957 if (options
[j
].special
)
959 // Undo the argument skip done above.
961 i
+= options
[j
].special(argc
- i
, argv
+ i
, s
, false,
968 if (options
[j
].takes_argument())
981 this->usage(_("missing argument"), opt
);
983 this->apply_option(options
[j
], arg
);
989 if (j
>= options_size
)
990 this->usage(_("unknown option"), *s
);
999 Command_line::process(int argc
, char** argv
)
1001 bool no_more_options
= false;
1004 i
= process_one_option(argc
, argv
, i
, &no_more_options
);
1006 if (this->inputs_
.in_group())
1008 fprintf(stderr
, _("%s: missing group end\n"), program_name
);
1012 // FIXME: We should only do this when configured in native mode.
1013 this->options_
.add_to_search_path_with_sysroot("/lib");
1014 this->options_
.add_to_search_path_with_sysroot("/usr/lib");
1016 this->options_
.add_sysroot();
1018 // Ensure options don't contradict each other and are otherwise kosher.
1019 this->normalize_options();
1022 // Extract an option argument for a special option. LONGNAME is the
1023 // long name of the option. This sets *PRET to the return value for
1024 // the special function handler to skip to the next option.
1027 Command_line::get_special_argument(const char* longname
, int argc
, char** argv
,
1028 const char* arg
, bool long_option
,
1033 size_t longlen
= strlen(longname
);
1034 gold_assert(strncmp(arg
, longname
, longlen
) == 0);
1043 gold_assert(*arg
== '\0');
1062 this->usage(_("missing argument"), arg
);
1065 // Ensure options don't contradict each other and are otherwise kosher.
1068 Command_line::normalize_options()
1070 if (this->options_
.is_shared() && this->options_
.is_relocatable())
1071 gold_fatal(_("-shared and -r are incompatible"));
1073 if (this->options_
.output_format() != General_options::OBJECT_FORMAT_ELF
1074 && (this->options_
.is_shared() || this->options_
.is_relocatable()))
1075 gold_fatal(_("binary output format not compatible with -shared or -r"));
1077 // If the user specifies both -s and -r, convert the -s as -S.
1078 // -r requires us to keep externally visible symbols!
1079 if (this->options_
.strip_all() && this->options_
.is_relocatable())
1081 // Clears the strip_all() status, replacing it with strip_debug().
1082 this->options_
.set_strip_debug();
1085 // FIXME: we can/should be doing a lot more sanity checking here.
1089 // Apply a command line option.
1092 Command_line::apply_option(const options::One_option
& opt
,
1097 if (opt
.general_noarg
)
1098 (this->options_
.*(opt
.general_noarg
))();
1099 else if (opt
.dependent_noarg
)
1100 (this->position_options_
.*(opt
.dependent_noarg
))();
1106 if (opt
.general_arg
)
1107 (this->options_
.*(opt
.general_arg
))(arg
);
1108 else if (opt
.dependent_arg
)
1109 (this->position_options_
.*(opt
.dependent_arg
))(arg
);
1115 // Add an input file or library.
1118 Command_line::add_file(const char* name
, bool is_lib
)
1120 Input_file_argument
file(name
, is_lib
, "", false, this->position_options_
);
1121 this->inputs_
.add_file(file
);
1124 // Handle the -l option, which requires special treatment.
1127 Command_line::process_l_option(int argc
, char** argv
, char* arg
,
1131 const char* libname
= this->get_special_argument("library", argc
, argv
, arg
,
1133 this->add_file(libname
, true);
1137 // Handle the --start-group option.
1140 Command_line::start_group(const char* arg
)
1142 if (this->inputs_
.in_group())
1143 this->usage(_("may not nest groups"), arg
);
1144 this->inputs_
.start_group();
1147 // Handle the --end-group option.
1150 Command_line::end_group(const char* arg
)
1152 if (!this->inputs_
.in_group())
1153 this->usage(_("group end without group start"), arg
);
1154 this->inputs_
.end_group();
1157 // Report a usage error. */
1160 Command_line::usage()
1163 _("%s: use the --help option for usage information\n"),
1165 ::exit(EXIT_FAILURE
);
1169 Command_line::usage(const char* msg
, const char *opt
)
1173 program_name
, opt
, msg
);
1178 Command_line::usage(const char* msg
, char opt
)
1182 program_name
, opt
, msg
);
1186 } // End namespace gold.