1 // options.h -- handle command line options for gold -*- C++ -*-
3 // Copyright 2006, 2007 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.
24 // Holds everything we get from the command line.
25 // General_options (from Command_line::options())
26 // Options which are not position dependent.
27 // Input_argument (from Command_line::inputs())
28 // The list of input files, including -l options.
29 // Position_dependent_options (from Input_argument::options())
30 // Position dependent options which apply to this argument.
32 #ifndef GOLD_OPTIONS_H
33 #define GOLD_OPTIONS_H
44 class Input_file_group
;
48 class Command_line_options
;
51 } // End namespace gold::options.
53 // A directory to search. For each directory we record whether it is
54 // in the sysroot. We need to know this so that, if a linker script
55 // is found within the sysroot, we will apply the sysroot to any files
56 // named by that script.
58 class Search_directory
61 // We need a default constructor because we put this in a
64 : name_(NULL
), put_in_sysroot_(false), is_in_sysroot_(false)
67 // This is the usual constructor.
68 Search_directory(const char* name
, bool put_in_sysroot
)
69 : name_(name
), put_in_sysroot_(put_in_sysroot
), is_in_sysroot_(false)
70 { gold_assert(!this->name_
.empty()); }
72 // This is called if we have a sysroot. The sysroot is prefixed to
73 // any entries for which put_in_sysroot_ is true. is_in_sysroot_ is
74 // set to true for any enries which are in the sysroot (this will
75 // naturally include any entries for which put_in_sysroot_ is true).
76 // SYSROOT is the sysroot, CANONICAL_SYSROOT is the result of
77 // passing SYSROOT to lrealpath.
79 add_sysroot(const char* sysroot
, const char* canonical_sysroot
);
81 // Get the directory name.
84 { return this->name_
; }
86 // Return whether this directory is in the sysroot.
89 { return this->is_in_sysroot_
; }
97 // The position independent options which apply to the whole link.
98 // There are a lot of them.
100 class General_options
105 // -E: export dynamic symbols.
107 export_dynamic() const
108 { return this->export_dynamic_
; }
110 // -I: dynamic linker name.
112 dynamic_linker() const
113 { return this->dynamic_linker_
; }
115 // -L: Library search path.
116 typedef std::vector
<Search_directory
> Dir_list
;
120 { return this->search_path_
; }
122 // -O: optimization level (0: don't try to optimize output size).
124 optimization_level() const
125 { return this->optimization_level_
; }
127 // -o: Output file name.
129 output_file_name() const
130 { return this->output_file_name_
; }
132 // -r: Whether we are doing a relocatable link.
134 is_relocatable() const
135 { return this->is_relocatable_
; }
137 // -s: Strip all symbols.
140 { return this->strip_
== STRIP_ALL
; }
142 // -S: Strip debugging information.
145 { return this->strip_
== STRIP_ALL
|| this->strip_
== STRIP_DEBUG
; }
147 // --eh-frame-hdr: Whether to generate an exception frame header.
149 create_eh_frame_hdr() const
150 { return this->create_eh_frame_hdr_
; }
152 // --rpath: The runtime search path.
155 { return this->rpath_
; }
157 // --rpath-link: The link time search patch for shared libraries.
160 { return this->rpath_link_
; }
162 // --shared: Whether generating a shared object.
165 { return this->is_shared_
; }
167 // --static: Whether doing a static link.
170 { return this->is_static_
; }
172 // --stats: Print resource usage statistics.
175 { return this->print_stats_
; }
177 // --sysroot: The system root of a cross-linker.
180 { return this->sysroot_
; }
182 // -Ttext: The address of the .text section
184 text_segment_address() const
185 { return this->text_segment_address_
; }
187 // Whether -Ttext was used.
189 user_set_text_segment_address() const
190 { return this->text_segment_address_
!= -1U; }
192 // --threads: Whether to use threads.
195 { return this->threads_
; }
197 // --thread-count-initial: Threads to use in initial pass.
199 thread_count_initial() const
200 { return this->thread_count_initial_
; }
202 // --thread-count-middle: Threads to use in middle pass.
204 thread_count_middle() const
205 { return this->thread_count_middle_
; }
207 // --thread-count-final: Threads to use in final pass.
209 thread_count_final() const
210 { return this->thread_count_final_
; }
213 // Don't copy this structure.
214 General_options(const General_options
&);
215 General_options
& operator=(const General_options
&);
217 friend class Command_line
;
218 friend class options::Command_line_options
;
220 // Which symbols to strip.
223 // Don't strip any symbols.
225 // Strip all symbols.
227 // Strip debugging information.
233 { this->export_dynamic_
= true; }
236 set_dynamic_linker(const char* arg
)
237 { this->dynamic_linker_
= arg
; }
240 add_to_search_path(const char* arg
)
241 { this->search_path_
.push_back(Search_directory(arg
, false)); }
244 add_to_search_path_with_sysroot(const char* arg
)
245 { this->search_path_
.push_back(Search_directory(arg
, true)); }
248 set_optimization_level(const char* arg
)
249 { this->optimization_level_
= atoi(arg
); }
252 set_output_file_name(const char* arg
)
253 { this->output_file_name_
= arg
; }
257 { this->is_relocatable_
= true; }
261 { this->strip_
= STRIP_ALL
; }
263 // Note: normalize_options() depends on the fact that this turns off
264 // STRIP_ALL if it were already set.
267 { this->strip_
= STRIP_DEBUG
; }
270 set_create_eh_frame_hdr()
271 { this->create_eh_frame_hdr_
= true; }
274 add_to_rpath(const char* arg
)
275 { this->rpath_
.push_back(Search_directory(arg
, false)); }
278 add_to_rpath_link(const char* arg
)
279 { this->rpath_link_
.push_back(Search_directory(arg
, false)); }
283 { this->is_shared_
= true; }
287 { this->is_static_
= true; }
291 { this->print_stats_
= true; }
294 set_sysroot(const char* arg
)
295 { this->sysroot_
= arg
; }
298 set_text_segment_address(const char* arg
)
301 this->text_segment_address_
= strtoull(arg
, &endptr
, 0);
303 || this->text_segment_address_
== -1U)
305 fprintf(stderr
, _("%s: invalid argument to -Ttext: %s\n"),
312 parse_thread_count(const char* arg
)
315 int count
= strtol(arg
, &endptr
, 0);
316 if (*endptr
!= '\0' || count
< 0)
318 fprintf(stderr
, _("%s: invalid thread count: %s\n"),
327 { this->threads_
= true; }
331 { this->threads_
= false; }
334 set_thread_count(const char* arg
)
336 int count
= this->parse_thread_count(arg
);
337 this->thread_count_initial_
= count
;
338 this->thread_count_middle_
= count
;
339 this->thread_count_final_
= count
;
343 set_thread_count_initial(const char* arg
)
344 { this->thread_count_initial_
= this->parse_thread_count(arg
); }
347 set_thread_count_middle(const char* arg
)
348 { this->thread_count_initial_
= this->parse_thread_count(arg
); }
351 set_thread_count_final(const char* arg
)
352 { this->thread_count_initial_
= this->parse_thread_count(arg
); }
358 // Apply any sysroot to the directory lists.
362 bool export_dynamic_
;
363 const char* dynamic_linker_
;
364 Dir_list search_path_
;
365 int optimization_level_
;
366 const char* output_file_name_
;
367 bool is_relocatable_
;
369 bool create_eh_frame_hdr_
;
371 Dir_list rpath_link_
;
375 std::string sysroot_
;
376 uint64_t text_segment_address_
;
378 int thread_count_initial_
;
379 int thread_count_middle_
;
380 int thread_count_final_
;
383 // The current state of the position dependent options.
385 class Position_dependent_options
388 Position_dependent_options();
390 // -Bstatic: Whether we are searching for a static archive rather
391 // than a shared object.
393 do_static_search() const
394 { return this->do_static_search_
; }
396 // --as-needed: Whether to add a DT_NEEDED argument only if the
397 // dynamic object is used.
400 { return this->as_needed_
; }
402 // --whole-archive: Whether to include the entire contents of an
405 include_whole_archive() const
406 { return this->include_whole_archive_
; }
410 { this->do_static_search_
= true; }
414 { this->do_static_search_
= false; }
418 { this->as_needed_
= true; }
422 { this->as_needed_
= false; }
426 { this->include_whole_archive_
= true; }
429 clear_whole_archive()
430 { this->include_whole_archive_
= false; }
433 bool do_static_search_
;
435 bool include_whole_archive_
;
438 // A single file or library argument from the command line.
440 class Input_file_argument
443 // name: file name or library name
444 // is_lib: true if name is a library name: that is, emits the leading
445 // "lib" and trailing ".so"/".a" from the name
446 // extra_search_path: an extra directory to look for the file, prior
447 // to checking the normal library search path. If this is "",
448 // then no extra directory is added.
449 // options: The position dependent options at this point in the
450 // command line, such as --whole-archive.
451 Input_file_argument()
452 : name_(), is_lib_(false), extra_search_path_(""), options_()
455 Input_file_argument(const char* name
, bool is_lib
,
456 const char* extra_search_path
,
457 const Position_dependent_options
& options
)
458 : name_(name
), is_lib_(is_lib
), extra_search_path_(extra_search_path
),
464 { return this->name_
.c_str(); }
466 const Position_dependent_options
&
468 { return this->options_
; }
472 { return this->is_lib_
; }
475 extra_search_path() const
477 return (this->extra_search_path_
.empty()
479 : this->extra_search_path_
.c_str());
482 // Return whether this file may require a search using the -L
485 may_need_search() const
486 { return this->is_lib_
|| !this->extra_search_path_
.empty(); }
489 // We use std::string, not const char*, here for convenience when
490 // using script files, so that we do not have to preserve the string
494 std::string extra_search_path_
;
495 Position_dependent_options options_
;
498 // A file or library, or a group, from the command line.
503 // Create a file or library argument.
504 explicit Input_argument(Input_file_argument file
)
505 : is_file_(true), file_(file
), group_(NULL
)
508 // Create a group argument.
509 explicit Input_argument(Input_file_group
* group
)
510 : is_file_(false), group_(group
)
513 // Return whether this is a file.
516 { return this->is_file_
; }
518 // Return whether this is a group.
521 { return !this->is_file_
; }
523 // Return the information about the file.
524 const Input_file_argument
&
527 gold_assert(this->is_file_
);
531 // Return the information about the group.
532 const Input_file_group
*
535 gold_assert(!this->is_file_
);
542 gold_assert(!this->is_file_
);
548 Input_file_argument file_
;
549 Input_file_group
* group_
;
552 // A group from the command line. This is a set of arguments within
553 // --start-group ... --end-group.
555 class Input_file_group
558 typedef std::vector
<Input_argument
> Files
;
559 typedef Files::const_iterator const_iterator
;
565 // Add a file to the end of the group.
567 add_file(const Input_file_argument
& arg
)
568 { this->files_
.push_back(Input_argument(arg
)); }
570 // Iterators to iterate over the group contents.
574 { return this->files_
.begin(); }
578 { return this->files_
.end(); }
584 // A list of files from the command line or a script.
586 class Input_arguments
589 typedef std::vector
<Input_argument
> Input_argument_list
;
590 typedef Input_argument_list::const_iterator const_iterator
;
593 : input_argument_list_(), in_group_(false)
598 add_file(const Input_file_argument
& arg
);
600 // Start a group (the --start-group option).
604 // End a group (the --end-group option).
608 // Return whether we are currently in a group.
611 { return this->in_group_
; }
613 // The number of entries in the list.
616 { return this->input_argument_list_
.size(); }
618 // Iterators to iterate over the list of input files.
622 { return this->input_argument_list_
.begin(); }
626 { return this->input_argument_list_
.end(); }
628 // Return whether the list is empty.
631 { return this->input_argument_list_
.empty(); }
634 Input_argument_list input_argument_list_
;
638 // All the information read from the command line.
643 typedef Input_arguments::const_iterator const_iterator
;
647 // Process the command line options. This will exit with an
648 // appropriate error message if an unrecognized option is seen.
650 process(int argc
, char** argv
);
652 // Handle a -l option.
654 process_l_option(int, char**, char*);
656 // Handle a --start-group option.
658 start_group(const char* arg
);
660 // Handle a --end-group option.
662 end_group(const char* arg
);
664 // Get the general options.
665 const General_options
&
667 { return this->options_
; }
669 // The number of input files.
671 number_of_input_files() const
672 { return this->inputs_
.size(); }
674 // Iterators to iterate over the list of input files.
678 { return this->inputs_
.begin(); }
682 { return this->inputs_
.end(); }
685 Command_line(const Command_line
&);
686 Command_line
& operator=(const Command_line
&);
688 // Report usage error.
690 usage() ATTRIBUTE_NORETURN
;
692 usage(const char* msg
, const char* opt
) ATTRIBUTE_NORETURN
;
694 usage(const char* msg
, char opt
) ATTRIBUTE_NORETURN
;
696 // Apply a command line option.
698 apply_option(const gold::options::One_option
&, const char*);
702 add_file(const char* name
, bool is_lib
);
704 // Examine the result of processing the command-line, and verify
705 // the flags do not contradict each other or are otherwise illegal.
709 General_options options_
;
710 Position_dependent_options position_options_
;
711 Input_arguments inputs_
;
714 } // End namespace gold.
716 #endif // !defined(GOLD_OPTIONS_H)