]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gold/options.h
Add threading support.
[thirdparty/binutils-gdb.git] / gold / options.h
CommitLineData
bae7f79e
ILT
1// options.h -- handle command line options for gold -*- C++ -*-
2
6cb15b7f
ILT
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
bae7f79e
ILT
23// Command_line
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.
31
32#ifndef GOLD_OPTIONS_H
33#define GOLD_OPTIONS_H
34
ca3a67a5 35#include <cstdlib>
bae7f79e 36#include <list>
61ba1cf9 37#include <string>
92e059d8 38#include <vector>
bae7f79e 39
3c2fafa5
ILT
40#include "script.h"
41
bae7f79e
ILT
42namespace gold
43{
44
45class Command_line;
ead1e424 46class Input_file_group;
3c2fafa5 47class Position_dependent_options;
bae7f79e 48
c7912668
ILT
49namespace options
50{
bae7f79e
ILT
51
52class Command_line_options;
53struct One_option;
35cdfc9a 54struct One_z_option;
c7912668 55struct One_debug_option;
bae7f79e
ILT
56
57} // End namespace gold::options.
58
ad2d6943
ILT
59// A directory to search. For each directory we record whether it is
60// in the sysroot. We need to know this so that, if a linker script
61// is found within the sysroot, we will apply the sysroot to any files
62// named by that script.
63
64class Search_directory
65{
66 public:
67 // We need a default constructor because we put this in a
68 // std::vector.
69 Search_directory()
70 : name_(NULL), put_in_sysroot_(false), is_in_sysroot_(false)
71 { }
72
73 // This is the usual constructor.
74 Search_directory(const char* name, bool put_in_sysroot)
75 : name_(name), put_in_sysroot_(put_in_sysroot), is_in_sysroot_(false)
76 { gold_assert(!this->name_.empty()); }
77
78 // This is called if we have a sysroot. The sysroot is prefixed to
79 // any entries for which put_in_sysroot_ is true. is_in_sysroot_ is
80 // set to true for any enries which are in the sysroot (this will
81 // naturally include any entries for which put_in_sysroot_ is true).
82 // SYSROOT is the sysroot, CANONICAL_SYSROOT is the result of
83 // passing SYSROOT to lrealpath.
84 void
85 add_sysroot(const char* sysroot, const char* canonical_sysroot);
86
87 // Get the directory name.
88 const std::string&
89 name() const
90 { return this->name_; }
91
92 // Return whether this directory is in the sysroot.
93 bool
94 is_in_sysroot() const
95 { return this->is_in_sysroot_; }
96
97 private:
98 std::string name_;
99 bool put_in_sysroot_;
100 bool is_in_sysroot_;
101};
102
bae7f79e
ILT
103// The position independent options which apply to the whole link.
104// There are a lot of them.
105
106class General_options
107{
108 public:
109 General_options();
110
a6badf5a
ILT
111 // -E: export dynamic symbols.
112 bool
113 export_dynamic() const
114 { return this->export_dynamic_; }
115
dbe717ef
ILT
116 // -I: dynamic linker name.
117 const char*
118 dynamic_linker() const
119 { return this->dynamic_linker_; }
120
bae7f79e 121 // -L: Library search path.
ad2d6943 122 typedef std::vector<Search_directory> Dir_list;
bae7f79e
ILT
123
124 const Dir_list&
125 search_path() const
126 { return this->search_path_; }
127
ca3a67a5
ILT
128 // -O: optimization level (0: don't try to optimize output size).
129 int
130 optimization_level() const
131 { return this->optimization_level_; }
132
61ba1cf9
ILT
133 // -o: Output file name.
134 const char*
135 output_file_name() const
136 { return this->output_file_name_; }
137
bae7f79e
ILT
138 // -r: Whether we are doing a relocatable link.
139 bool
140 is_relocatable() const
141 { return this->is_relocatable_; }
142
9e2dcb77
ILT
143 // -s: Strip all symbols.
144 bool
145 strip_all() const
146 { return this->strip_ == STRIP_ALL; }
147
148 // -S: Strip debugging information.
149 bool
150 strip_debug() const
151 { return this->strip_ == STRIP_ALL || this->strip_ == STRIP_DEBUG; }
152
02d2ba74
ILT
153 // -Sgdb: strip only debugging information that's not used by
154 // gdb (at least, for gdb versions <= 6.7).
155 bool
156 strip_debug_gdb() const
157 { return this->strip_debug() || this->strip_ == STRIP_DEBUG_UNUSED_BY_GDB; }
158
e2827e5f
ILT
159 // --allow-shlib-undefined: do not warn about unresolved symbols in
160 // --shared libraries.
161 bool
162 allow_shlib_undefined() const
163 { return this->allow_shlib_undefined_; }
164
51b08ebe
ILT
165 // -Bsymbolic: bind defined symbols locally.
166 bool
167 symbolic() const
168 { return this->symbolic_; }
169
a2b1aa12
ILT
170 // --demangle: demangle C++ symbols in our log messages.
171 bool
172 demangle() const
173 { return this->demangle_; }
174
a55ce7fe
ILT
175 // --detect-odr-violations: Whether to search for One Defn Rule violations.
176 bool
177 detect_odr_violations() const
178 { return this->detect_odr_violations_; }
179
7da52175
ILT
180 // --eh-frame-hdr: Whether to generate an exception frame header.
181 bool
182 create_eh_frame_hdr() const
183 { return this->create_eh_frame_hdr_; }
184
41f542e7
ILT
185 // --rpath: The runtime search path.
186 const Dir_list&
187 rpath() const
188 { return this->rpath_; }
189
15b3cfae
ILT
190 // --rpath-link: The link time search patch for shared libraries.
191 const Dir_list&
192 rpath_link() const
193 { return this->rpath_link_; }
194
92e059d8
ILT
195 // --shared: Whether generating a shared object.
196 bool
197 is_shared() const
198 { return this->is_shared_; }
199
bae7f79e
ILT
200 // --static: Whether doing a static link.
201 bool
202 is_static() const
203 { return this->is_static_; }
204
0c5e9c22 205 // --stats: Print resource usage statistics.
e44fcf3b
ILT
206 bool
207 print_stats() const
208 { return this->print_stats_; }
209
ad2d6943
ILT
210 // --sysroot: The system root of a cross-linker.
211 const std::string&
212 sysroot() const
213 { return this->sysroot_; }
214
0c5e9c22
ILT
215 // -Ttext: The address of the .text section
216 uint64_t
217 text_segment_address() const
218 { return this->text_segment_address_; }
219
220 // Whether -Ttext was used.
221 bool
222 user_set_text_segment_address() const
223 { return this->text_segment_address_ != -1U; }
224
fe9a4c12
ILT
225 // --threads: Whether to use threads.
226 bool
227 threads() const
228 { return this->threads_; }
229
230 // --thread-count-initial: Threads to use in initial pass.
231 int
232 thread_count_initial() const
233 { return this->thread_count_initial_; }
234
235 // --thread-count-middle: Threads to use in middle pass.
236 int
237 thread_count_middle() const
238 { return this->thread_count_middle_; }
239
240 // --thread-count-final: Threads to use in final pass.
241 int
242 thread_count_final() const
243 { return this->thread_count_final_; }
244
35cdfc9a
ILT
245 // -z execstack, -z noexecstack
246 bool
247 is_execstack_set() const
248 { return this->execstack_ != EXECSTACK_FROM_INPUT; }
249
250 bool
251 is_stack_executable() const
252 { return this->execstack_ == EXECSTACK_YES; }
253
c7912668
ILT
254 // --debug
255 unsigned int
256 debug() const
257 { return this->debug_; }
258
bae7f79e 259 private:
dbe717ef
ILT
260 // Don't copy this structure.
261 General_options(const General_options&);
262 General_options& operator=(const General_options&);
263
bae7f79e
ILT
264 friend class Command_line;
265 friend class options::Command_line_options;
266
9e2dcb77
ILT
267 // Which symbols to strip.
268 enum Strip
269 {
270 // Don't strip any symbols.
271 STRIP_NONE,
272 // Strip all symbols.
273 STRIP_ALL,
274 // Strip debugging information.
02d2ba74
ILT
275 STRIP_DEBUG,
276 // Strip debugging information that's not used by gdb (at least <= 6.7)
277 STRIP_DEBUG_UNUSED_BY_GDB
9e2dcb77
ILT
278 };
279
35cdfc9a
ILT
280 // Whether to mark the stack as executable.
281 enum Execstack
282 {
283 // Not set on command line.
284 EXECSTACK_FROM_INPUT,
285 // Mark the stack as executable.
286 EXECSTACK_YES,
287 // Mark the stack as not executable.
288 EXECSTACK_NO
289 };
290
a6badf5a
ILT
291 void
292 set_export_dynamic()
293 { this->export_dynamic_ = true; }
294
dbe717ef
ILT
295 void
296 set_dynamic_linker(const char* arg)
297 { this->dynamic_linker_ = arg; }
298
bae7f79e
ILT
299 void
300 add_to_search_path(const char* arg)
ad2d6943
ILT
301 { this->search_path_.push_back(Search_directory(arg, false)); }
302
303 void
304 add_to_search_path_with_sysroot(const char* arg)
305 { this->search_path_.push_back(Search_directory(arg, true)); }
bae7f79e 306
ca3a67a5
ILT
307 void
308 set_optimization_level(const char* arg)
309 { this->optimization_level_ = atoi(arg); }
310
61ba1cf9
ILT
311 void
312 set_output_file_name(const char* arg)
313 { this->output_file_name_ = arg; }
314
bae7f79e
ILT
315 void
316 set_relocatable()
317 { this->is_relocatable_ = true; }
318
9e2dcb77
ILT
319 void
320 set_strip_all()
321 { this->strip_ = STRIP_ALL; }
322
46738c9a
ILT
323 // Note: normalize_options() depends on the fact that this turns off
324 // STRIP_ALL if it were already set.
9e2dcb77
ILT
325 void
326 set_strip_debug()
327 { this->strip_ = STRIP_DEBUG; }
328
02d2ba74
ILT
329 void
330 set_strip_debug_gdb()
331 { this->strip_ = STRIP_DEBUG_UNUSED_BY_GDB; }
332
e2827e5f
ILT
333 void
334 set_allow_shlib_undefined()
335 { this->allow_shlib_undefined_ = true; }
336
337 void
338 set_no_allow_shlib_undefined()
339 { this->allow_shlib_undefined_ = false; }
340
51b08ebe
ILT
341 void
342 set_symbolic()
343 { this->symbolic_ = true; }
344
a2b1aa12
ILT
345 void
346 set_demangle()
347 { this->demangle_ = true; }
348
349 void
350 clear_demangle()
351 { this->demangle_ = false; }
352
a55ce7fe
ILT
353 void
354 set_detect_odr_violations()
355 { this->detect_odr_violations_ = true; }
356
7da52175 357 void
192f9b85 358 set_create_eh_frame_hdr()
7da52175
ILT
359 { this->create_eh_frame_hdr_ = true; }
360
41f542e7
ILT
361 void
362 add_to_rpath(const char* arg)
ad2d6943 363 { this->rpath_.push_back(Search_directory(arg, false)); }
41f542e7 364
15b3cfae
ILT
365 void
366 add_to_rpath_link(const char* arg)
ad2d6943 367 { this->rpath_link_.push_back(Search_directory(arg, false)); }
15b3cfae 368
92e059d8
ILT
369 void
370 set_shared()
371 { this->is_shared_ = true; }
372
bae7f79e
ILT
373 void
374 set_static()
375 { this->is_static_ = true; }
376
e44fcf3b
ILT
377 void
378 set_stats()
379 { this->print_stats_ = true; }
380
ad2d6943
ILT
381 void
382 set_sysroot(const char* arg)
383 { this->sysroot_ = arg; }
384
0c5e9c22
ILT
385 void
386 set_text_segment_address(const char* arg)
387 {
388 char* endptr;
389 this->text_segment_address_ = strtoull(arg, &endptr, 0);
390 if (*endptr != '\0'
391 || this->text_segment_address_ == -1U)
392 {
393 fprintf(stderr, _("%s: invalid argument to -Ttext: %s\n"),
394 program_name, arg);
395 ::exit(1);
396 }
397 }
398
fe9a4c12
ILT
399 int
400 parse_thread_count(const char* arg)
401 {
402 char* endptr;
403 int count = strtol(arg, &endptr, 0);
404 if (*endptr != '\0' || count < 0)
405 {
406 fprintf(stderr, _("%s: invalid thread count: %s\n"),
407 program_name, arg);
408 ::exit(1);
409 }
410 return count;
411 }
412
413 void
414 set_threads()
415 { this->threads_ = true; }
416
417 void
418 clear_threads()
419 { this->threads_ = false; }
420
421 void
422 set_thread_count(const char* arg)
423 {
424 int count = this->parse_thread_count(arg);
425 this->thread_count_initial_ = count;
426 this->thread_count_middle_ = count;
427 this->thread_count_final_ = count;
428 }
429
430 void
431 set_thread_count_initial(const char* arg)
432 { this->thread_count_initial_ = this->parse_thread_count(arg); }
433
434 void
435 set_thread_count_middle(const char* arg)
436 { this->thread_count_initial_ = this->parse_thread_count(arg); }
437
438 void
439 set_thread_count_final(const char* arg)
440 { this->thread_count_initial_ = this->parse_thread_count(arg); }
441
652ec9bd
ILT
442 void
443 ignore(const char*)
444 { }
445
35cdfc9a
ILT
446 void
447 set_execstack()
448 { this->execstack_ = EXECSTACK_YES; }
449
450 void
451 set_noexecstack()
452 { this->execstack_ = EXECSTACK_NO; }
453
c7912668
ILT
454 void
455 set_debug(unsigned int flags)
456 { this->debug_ = flags; }
457
35cdfc9a
ILT
458 // Handle the -z option.
459 void
460 handle_z_option(const char*);
461
c7912668
ILT
462 // Handle the --debug option.
463 void
464 handle_debug_option(const char*);
465
ad2d6943
ILT
466 // Apply any sysroot to the directory lists.
467 void
468 add_sysroot();
469
a6badf5a 470 bool export_dynamic_;
dbe717ef 471 const char* dynamic_linker_;
bae7f79e 472 Dir_list search_path_;
ca3a67a5 473 int optimization_level_;
61ba1cf9 474 const char* output_file_name_;
bae7f79e 475 bool is_relocatable_;
9e2dcb77 476 Strip strip_;
e2827e5f 477 bool allow_shlib_undefined_;
51b08ebe 478 bool symbolic_;
a2b1aa12 479 bool demangle_;
a55ce7fe 480 bool detect_odr_violations_;
7da52175 481 bool create_eh_frame_hdr_;
41f542e7 482 Dir_list rpath_;
15b3cfae 483 Dir_list rpath_link_;
92e059d8 484 bool is_shared_;
bae7f79e 485 bool is_static_;
e44fcf3b 486 bool print_stats_;
ad2d6943 487 std::string sysroot_;
0c5e9c22 488 uint64_t text_segment_address_;
fe9a4c12
ILT
489 bool threads_;
490 int thread_count_initial_;
491 int thread_count_middle_;
492 int thread_count_final_;
35cdfc9a 493 Execstack execstack_;
c7912668 494 unsigned int debug_;
bae7f79e
ILT
495};
496
497// The current state of the position dependent options.
498
499class Position_dependent_options
500{
501 public:
502 Position_dependent_options();
503
61611222
ILT
504 // -Bdynamic/-Bstatic: Whether we are searching for a static archive
505 // -rather than a shared object.
bae7f79e 506 bool
dbe717ef 507 do_static_search() const
bae7f79e
ILT
508 { return this->do_static_search_; }
509
dbe717ef
ILT
510 // --as-needed: Whether to add a DT_NEEDED argument only if the
511 // dynamic object is used.
512 bool
513 as_needed() const
514 { return this->as_needed_; }
bae7f79e 515
4973341a
ILT
516 // --whole-archive: Whether to include the entire contents of an
517 // --archive.
518 bool
519 include_whole_archive() const
520 { return this->include_whole_archive_; }
521
bae7f79e
ILT
522 void
523 set_static_search()
524 { this->do_static_search_ = true; }
525
526 void
527 set_dynamic_search()
528 { this->do_static_search_ = false; }
529
dbe717ef
ILT
530 void
531 set_as_needed()
532 { this->as_needed_ = true; }
533
534 void
535 clear_as_needed()
536 { this->as_needed_ = false; }
537
4973341a
ILT
538 void
539 set_whole_archive()
540 { this->include_whole_archive_ = true; }
541
542 void
543 clear_whole_archive()
544 { this->include_whole_archive_ = false; }
545
dbe717ef 546 private:
bae7f79e 547 bool do_static_search_;
dbe717ef 548 bool as_needed_;
4973341a 549 bool include_whole_archive_;
bae7f79e
ILT
550};
551
552// A single file or library argument from the command line.
553
ead1e424 554class Input_file_argument
bae7f79e
ILT
555{
556 public:
51dee2fe
ILT
557 // name: file name or library name
558 // is_lib: true if name is a library name: that is, emits the leading
559 // "lib" and trailing ".so"/".a" from the name
560 // extra_search_path: an extra directory to look for the file, prior
561 // to checking the normal library search path. If this is "",
562 // then no extra directory is added.
563 // options: The position dependent options at this point in the
ad2d6943 564 // command line, such as --whole-archive.
ead1e424 565 Input_file_argument()
51dee2fe 566 : name_(), is_lib_(false), extra_search_path_(""), options_()
ead1e424
ILT
567 { }
568
569 Input_file_argument(const char* name, bool is_lib,
51dee2fe 570 const char* extra_search_path,
ead1e424 571 const Position_dependent_options& options)
51dee2fe
ILT
572 : name_(name), is_lib_(is_lib), extra_search_path_(extra_search_path),
573 options_(options)
bae7f79e
ILT
574 { }
575
576 const char*
577 name() const
dbe717ef 578 { return this->name_.c_str(); }
bae7f79e
ILT
579
580 const Position_dependent_options&
581 options() const
582 { return this->options_; }
583
584 bool
585 is_lib() const
61ba1cf9 586 { return this->is_lib_; }
bae7f79e 587
51dee2fe
ILT
588 const char*
589 extra_search_path() const
590 {
591 return (this->extra_search_path_.empty()
592 ? NULL
593 : this->extra_search_path_.c_str());
594 }
595
596 // Return whether this file may require a search using the -L
597 // options.
598 bool
599 may_need_search() const
600 { return this->is_lib_ || !this->extra_search_path_.empty(); }
601
bae7f79e 602 private:
dbe717ef
ILT
603 // We use std::string, not const char*, here for convenience when
604 // using script files, so that we do not have to preserve the string
605 // in that case.
606 std::string name_;
61ba1cf9 607 bool is_lib_;
51dee2fe 608 std::string extra_search_path_;
bae7f79e
ILT
609 Position_dependent_options options_;
610};
611
ead1e424
ILT
612// A file or library, or a group, from the command line.
613
614class Input_argument
615{
616 public:
617 // Create a file or library argument.
618 explicit Input_argument(Input_file_argument file)
619 : is_file_(true), file_(file), group_(NULL)
620 { }
621
622 // Create a group argument.
623 explicit Input_argument(Input_file_group* group)
624 : is_file_(false), group_(group)
625 { }
626
627 // Return whether this is a file.
628 bool
629 is_file() const
630 { return this->is_file_; }
631
632 // Return whether this is a group.
633 bool
634 is_group() const
635 { return !this->is_file_; }
636
637 // Return the information about the file.
638 const Input_file_argument&
639 file() const
640 {
a3ad94ed 641 gold_assert(this->is_file_);
ead1e424
ILT
642 return this->file_;
643 }
644
645 // Return the information about the group.
646 const Input_file_group*
647 group() const
648 {
a3ad94ed 649 gold_assert(!this->is_file_);
ead1e424
ILT
650 return this->group_;
651 }
652
653 Input_file_group*
654 group()
655 {
a3ad94ed 656 gold_assert(!this->is_file_);
ead1e424
ILT
657 return this->group_;
658 }
659
660 private:
661 bool is_file_;
662 Input_file_argument file_;
663 Input_file_group* group_;
664};
665
666// A group from the command line. This is a set of arguments within
667// --start-group ... --end-group.
668
669class Input_file_group
92e059d8 670{
ead1e424
ILT
671 public:
672 typedef std::vector<Input_argument> Files;
673 typedef Files::const_iterator const_iterator;
674
675 Input_file_group()
676 : files_()
677 { }
678
679 // Add a file to the end of the group.
680 void
681 add_file(const Input_file_argument& arg)
682 { this->files_.push_back(Input_argument(arg)); }
683
684 // Iterators to iterate over the group contents.
685
686 const_iterator
687 begin() const
688 { return this->files_.begin(); }
689
690 const_iterator
691 end() const
692 { return this->files_.end(); }
693
694 private:
695 Files files_;
92e059d8
ILT
696};
697
dbe717ef
ILT
698// A list of files from the command line or a script.
699
700class Input_arguments
701{
702 public:
703 typedef std::vector<Input_argument> Input_argument_list;
704 typedef Input_argument_list::const_iterator const_iterator;
705
706 Input_arguments()
707 : input_argument_list_(), in_group_(false)
708 { }
709
710 // Add a file.
711 void
712 add_file(const Input_file_argument& arg);
713
714 // Start a group (the --start-group option).
715 void
716 start_group();
717
718 // End a group (the --end-group option).
719 void
720 end_group();
721
722 // Return whether we are currently in a group.
723 bool
724 in_group() const
725 { return this->in_group_; }
726
fe9a4c12
ILT
727 // The number of entries in the list.
728 int
729 size() const
730 { return this->input_argument_list_.size(); }
731
dbe717ef
ILT
732 // Iterators to iterate over the list of input files.
733
734 const_iterator
735 begin() const
736 { return this->input_argument_list_.begin(); }
737
738 const_iterator
739 end() const
740 { return this->input_argument_list_.end(); }
741
742 // Return whether the list is empty.
743 bool
744 empty() const
745 { return this->input_argument_list_.empty(); }
746
747 private:
748 Input_argument_list input_argument_list_;
749 bool in_group_;
750};
751
bae7f79e
ILT
752// All the information read from the command line.
753
754class Command_line
755{
756 public:
ead1e424
ILT
757 typedef Input_arguments::const_iterator const_iterator;
758
bae7f79e
ILT
759 Command_line();
760
761 // Process the command line options. This will exit with an
762 // appropriate error message if an unrecognized option is seen.
763 void
764 process(int argc, char** argv);
765
a0451b38
ILT
766 // Process one command-line option. This takes the index of argv to
767 // process, and returns the index for the next option.
768 int
769 process_one_option(int argc, char** argv, int i, bool* no_more_options);
770
61ba1cf9
ILT
771 // Handle a -l option.
772 int
3c2fafa5 773 process_l_option(int, char**, char*, bool);
61ba1cf9 774
ead1e424
ILT
775 // Handle a --start-group option.
776 void
777 start_group(const char* arg);
778
779 // Handle a --end-group option.
780 void
781 end_group(const char* arg);
782
3c2fafa5
ILT
783 // Get an option argument--a helper function for special processing.
784 const char*
785 get_special_argument(const char* longname, int argc, char** argv,
786 const char* arg, bool long_option,
787 int *pret);
788
61ba1cf9 789 // Get the general options.
bae7f79e
ILT
790 const General_options&
791 options() const
792 { return this->options_; }
793
3c2fafa5
ILT
794 // Get the position dependent options.
795 const Position_dependent_options&
796 position_dependent_options() const
797 { return this->position_options_; }
798
fe9a4c12
ILT
799 // The number of input files.
800 int
801 number_of_input_files() const
802 { return this->inputs_.size(); }
803
ead1e424
ILT
804 // Iterators to iterate over the list of input files.
805
806 const_iterator
807 begin() const
808 { return this->inputs_.begin(); }
809
810 const_iterator
811 end() const
812 { return this->inputs_.end(); }
bae7f79e
ILT
813
814 private:
ead1e424
ILT
815 Command_line(const Command_line&);
816 Command_line& operator=(const Command_line&);
817
818 // Report usage error.
819 void
820 usage() ATTRIBUTE_NORETURN;
821 void
822 usage(const char* msg, const char* opt) ATTRIBUTE_NORETURN;
823 void
824 usage(const char* msg, char opt) ATTRIBUTE_NORETURN;
825
826 // Apply a command line option.
827 void
828 apply_option(const gold::options::One_option&, const char*);
829
830 // Add a file.
831 void
832 add_file(const char* name, bool is_lib);
bae7f79e 833
46738c9a
ILT
834 // Examine the result of processing the command-line, and verify
835 // the flags do not contradict each other or are otherwise illegal.
836 void
837 normalize_options();
838
bae7f79e
ILT
839 General_options options_;
840 Position_dependent_options position_options_;
ead1e424 841 Input_arguments inputs_;
bae7f79e
ILT
842};
843
844} // End namespace gold.
845
846#endif // !defined(GOLD_OPTIONS_H)