2001-06-15 H.J. Lu <hjl@gnu.org>
[platform/upstream/binutils.git] / ld / lexsup.c
1 /* Parse options for the GNU linker.
2    Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3    2001
4    Free Software Foundation, Inc.
5
6 This file is part of GLD, the Gnu Linker.
7
8 GLD 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 2, or (at your option)
11 any later version.
12
13 GLD 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 GLD; see the file COPYING.  If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21 02111-1307, USA.  */
22
23 #include "bfd.h"
24 #include "sysdep.h"
25 #include "libiberty.h"
26 #include <stdio.h>
27 #include <string.h>
28 #include <ctype.h>
29 #include "getopt.h"
30 #include "bfdlink.h"
31 #include "ld.h"
32 #include "ldmain.h"
33 #include "ldmisc.h"
34 #include "ldexp.h"
35 #include "ldlang.h"
36 #include "ldgram.h"
37 #include "ldlex.h"
38 #include "ldfile.h"
39 #include "ldver.h"
40 #include "ldemul.h"
41 #include "demangle.h"
42
43 #ifndef PATH_SEPARATOR
44 #if defined (__MSDOS__) || (defined (_WIN32) && ! defined (__CYGWIN32__))
45 #define PATH_SEPARATOR ';'
46 #else
47 #define PATH_SEPARATOR ':'
48 #endif
49 #endif
50
51 /* Somewhere above, sys/stat.h got included . . . .  */
52 #if !defined(S_ISDIR) && defined(S_IFDIR)
53 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
54 #endif
55
56 /* Omit args to avoid the possibility of clashing with a system header
57    that might disagree about consts.  */
58 unsigned long strtoul ();
59
60 static int is_num PARAMS ((const char *, int, int, int));
61 static void set_default_dirlist PARAMS ((char *dirlist_ptr));
62 static void set_section_start PARAMS ((char *sect, char *valstr));
63 static void help PARAMS ((void));
64
65 /* Non-zero if we are processing a --defsym from the command line.  */
66 int parsing_defsym = 0;
67
68 /* Codes used for the long options with no short synonyms.  150 isn't
69    special; it's just an arbitrary non-ASCII char value.  */
70
71 #define OPTION_ASSERT                   150
72 #define OPTION_CALL_SHARED              (OPTION_ASSERT + 1)
73 #define OPTION_CREF                     (OPTION_CALL_SHARED + 1)
74 #define OPTION_DEFSYM                   (OPTION_CREF + 1)
75 #define OPTION_DEMANGLE                 (OPTION_DEFSYM + 1)
76 #define OPTION_DYNAMIC_LINKER           (OPTION_DEMANGLE + 1)
77 #define OPTION_EB                       (OPTION_DYNAMIC_LINKER + 1)
78 #define OPTION_EL                       (OPTION_EB + 1)
79 #define OPTION_EMBEDDED_RELOCS          (OPTION_EL + 1)
80 #define OPTION_EXPORT_DYNAMIC           (OPTION_EMBEDDED_RELOCS + 1)
81 #define OPTION_HELP                     (OPTION_EXPORT_DYNAMIC + 1)
82 #define OPTION_IGNORE                   (OPTION_HELP + 1)
83 #define OPTION_MAP                      (OPTION_IGNORE + 1)
84 #define OPTION_NO_DEMANGLE              (OPTION_MAP + 1)
85 #define OPTION_NO_KEEP_MEMORY           (OPTION_NO_DEMANGLE + 1)
86 #define OPTION_NO_WARN_MISMATCH         (OPTION_NO_KEEP_MEMORY + 1)
87 #define OPTION_NOINHIBIT_EXEC           (OPTION_NO_WARN_MISMATCH + 1)
88 #define OPTION_NON_SHARED               (OPTION_NOINHIBIT_EXEC + 1)
89 #define OPTION_NO_WHOLE_ARCHIVE         (OPTION_NON_SHARED + 1)
90 #define OPTION_OFORMAT                  (OPTION_NO_WHOLE_ARCHIVE + 1)
91 #define OPTION_RELAX                    (OPTION_OFORMAT + 1)
92 #define OPTION_RETAIN_SYMBOLS_FILE      (OPTION_RELAX + 1)
93 #define OPTION_RPATH                    (OPTION_RETAIN_SYMBOLS_FILE + 1)
94 #define OPTION_RPATH_LINK               (OPTION_RPATH + 1)
95 #define OPTION_SHARED                   (OPTION_RPATH_LINK + 1)
96 #define OPTION_SONAME                   (OPTION_SHARED + 1)
97 #define OPTION_SORT_COMMON              (OPTION_SONAME + 1)
98 #define OPTION_STATS                    (OPTION_SORT_COMMON + 1)
99 #define OPTION_SYMBOLIC                 (OPTION_STATS + 1)
100 #define OPTION_TASK_LINK                (OPTION_SYMBOLIC + 1)
101 #define OPTION_TBSS                     (OPTION_TASK_LINK + 1)
102 #define OPTION_TDATA                    (OPTION_TBSS + 1)
103 #define OPTION_TTEXT                    (OPTION_TDATA + 1)
104 #define OPTION_TRADITIONAL_FORMAT       (OPTION_TTEXT + 1)
105 #define OPTION_UR                       (OPTION_TRADITIONAL_FORMAT + 1)
106 #define OPTION_VERBOSE                  (OPTION_UR + 1)
107 #define OPTION_VERSION                  (OPTION_VERBOSE + 1)
108 #define OPTION_VERSION_SCRIPT           (OPTION_VERSION + 1)
109 #define OPTION_VERSION_EXPORTS_SECTION  (OPTION_VERSION_SCRIPT + 1)
110 #define OPTION_WARN_COMMON              (OPTION_VERSION_EXPORTS_SECTION + 1)
111 #define OPTION_WARN_CONSTRUCTORS        (OPTION_WARN_COMMON + 1)
112 #define OPTION_WARN_FATAL               (OPTION_WARN_CONSTRUCTORS + 1)
113 #define OPTION_WARN_MULTIPLE_GP         (OPTION_WARN_FATAL + 1)
114 #define OPTION_WARN_ONCE                (OPTION_WARN_MULTIPLE_GP + 1)
115 #define OPTION_WARN_SECTION_ALIGN       (OPTION_WARN_ONCE + 1)
116 #define OPTION_SPLIT_BY_RELOC           (OPTION_WARN_SECTION_ALIGN + 1)
117 #define OPTION_SPLIT_BY_FILE            (OPTION_SPLIT_BY_RELOC + 1)
118 #define OPTION_WHOLE_ARCHIVE            (OPTION_SPLIT_BY_FILE + 1)
119 #define OPTION_WRAP                     (OPTION_WHOLE_ARCHIVE + 1)
120 #define OPTION_FORCE_EXE_SUFFIX         (OPTION_WRAP + 1)
121 #define OPTION_GC_SECTIONS              (OPTION_FORCE_EXE_SUFFIX + 1)
122 #define OPTION_NO_GC_SECTIONS           (OPTION_GC_SECTIONS + 1)
123 #define OPTION_CHECK_SECTIONS           (OPTION_NO_GC_SECTIONS + 1)
124 #define OPTION_NO_CHECK_SECTIONS        (OPTION_CHECK_SECTIONS + 1)
125 #define OPTION_MPC860C0                 (OPTION_NO_CHECK_SECTIONS + 1)
126 #define OPTION_NO_UNDEFINED             (OPTION_MPC860C0 + 1)
127 #define OPTION_INIT                     (OPTION_NO_UNDEFINED + 1)
128 #define OPTION_FINI                     (OPTION_INIT + 1)
129 #define OPTION_SECTION_START            (OPTION_FINI + 1)
130 #define OPTION_UNIQUE                   (OPTION_SECTION_START + 1)
131 #define OPTION_TARGET_HELP              (OPTION_UNIQUE + 1)
132 #define OPTION_ALLOW_SHLIB_UNDEFINED    (OPTION_TARGET_HELP + 1)
133 #define OPTION_DISCARD_NONE             (OPTION_ALLOW_SHLIB_UNDEFINED + 1)
134
135 /* The long options.  This structure is used for both the option
136    parsing and the help text.  */
137
138 struct ld_option
139 {
140   /* The long option information.  */
141   struct option opt;
142   /* The short option with the same meaning ('\0' if none).  */
143   char shortopt;
144   /* The name of the argument (NULL if none).  */
145   const char *arg;
146   /* The documentation string.  If this is NULL, this is a synonym for
147      the previous option.  */
148   const char *doc;
149   enum {
150     /* Use one dash before long option name.  */
151     ONE_DASH,
152     /* Use two dashes before long option name.  */
153     TWO_DASHES,
154     /* Only accept two dashes before the long option name.
155        This is an overloading of the use of this enum, since originally it
156        was only intended to tell the --help display function how to display
157        the long option name.  This feature was added in order to resolve
158        the confusion about the -omagic command line switch.  Is it setting
159        the output file name to "magic" or is it setting the NMAGIC flag on
160        the output ?  It has been decided that it is setting the output file
161        name, and that if you want to set the NMAGIC flag you should use -N
162        or --omagic.  */
163     EXACTLY_TWO_DASHES,
164     /* Don't mention this option in --help output.  */
165     NO_HELP
166   } control;
167 };
168
169 static const struct ld_option ld_options[] =
170 {
171   { {NULL, required_argument, NULL, '\0'},
172       'a', N_("KEYWORD"), N_("Shared library control for HP/UX compatibility"),
173       ONE_DASH },
174   { {"architecture", required_argument, NULL, 'A'},
175       'A', N_("ARCH"), N_("Set architecture") , TWO_DASHES },
176   { {"format", required_argument, NULL, 'b'},
177       'b', N_("TARGET"), N_("Specify target for following input files"), TWO_DASHES },
178   { {"mri-script", required_argument, NULL, 'c'},
179       'c', N_("FILE"), N_("Read MRI format linker script"), TWO_DASHES },
180   { {"dc", no_argument, NULL, 'd'},
181       'd', NULL, N_("Force common symbols to be defined"), ONE_DASH },
182   { {"dp", no_argument, NULL, 'd'},
183       '\0', NULL, NULL, ONE_DASH },
184   { {"entry", required_argument, NULL, 'e'},
185       'e', N_("ADDRESS"), N_("Set start address"), TWO_DASHES },
186   { {"export-dynamic", no_argument, NULL, OPTION_EXPORT_DYNAMIC},
187       'E', NULL, N_("Export all dynamic symbols"), TWO_DASHES },
188   { {"EB", no_argument, NULL, OPTION_EB},
189       '\0', NULL, N_("Link big-endian objects"), ONE_DASH },
190   { {"EL", no_argument, NULL, OPTION_EL},
191       '\0', NULL, N_("Link little-endian objects"), ONE_DASH },
192   { {"auxiliary", required_argument, NULL, 'f'},
193       'f', N_("SHLIB"), N_("Auxiliary filter for shared object symbol table"),
194       TWO_DASHES },
195   { {"filter", required_argument, NULL, 'F'},
196       'F', N_("SHLIB"), N_("Filter for shared object symbol table"), TWO_DASHES },
197   { {NULL, no_argument, NULL, '\0'},
198       'g', NULL, N_("Ignored"), ONE_DASH },
199   { {"gpsize", required_argument, NULL, 'G'},
200       'G', N_("SIZE"), N_("Small data size (if no size, same as --shared)"),
201       TWO_DASHES },
202   { {"soname", required_argument, NULL, OPTION_SONAME},
203       'h', N_("FILENAME"), N_("Set internal name of shared library"), ONE_DASH },
204   { {"dynamic-linker", required_argument, NULL, OPTION_DYNAMIC_LINKER},
205       'I', N_("PROGRAM"), N_("Set the dynamic linker to use"), TWO_DASHES },
206   { {"library", required_argument, NULL, 'l'},
207       'l', N_("LIBNAME"), N_("Search for library LIBNAME"), TWO_DASHES },
208   { {"library-path", required_argument, NULL, 'L'},
209       'L', N_("DIRECTORY"), N_("Add DIRECTORY to library search path"), TWO_DASHES },
210   { {NULL, required_argument, NULL, '\0'},
211       'm', N_("EMULATION"), N_("Set emulation"), ONE_DASH },
212   { {"print-map", no_argument, NULL, 'M'},
213       'M', NULL, N_("Print map file on standard output"), TWO_DASHES },
214   { {"nmagic", no_argument, NULL, 'n'},
215       'n', NULL, N_("Do not page align data"), TWO_DASHES },
216   { {"omagic", no_argument, NULL, 'N'},
217       'N', NULL, N_("Do not page align data, do not make text readonly"),
218       EXACTLY_TWO_DASHES },
219   { {"output", required_argument, NULL, 'o'},
220       'o', N_("FILE"), N_("Set output file name"), EXACTLY_TWO_DASHES },
221   { {NULL, required_argument, NULL, '\0'},
222       'O', NULL, N_("Optimize output file"), ONE_DASH },
223   { {"Qy", no_argument, NULL, OPTION_IGNORE},
224       '\0', NULL, N_("Ignored for SVR4 compatibility"), ONE_DASH },
225   { {"emit-relocs", no_argument, NULL, 'q'},
226       'q', NULL, "Generate relocations in final output", TWO_DASHES },
227   { {"relocateable", no_argument, NULL, 'r'},
228       'r', NULL, N_("Generate relocateable output"), TWO_DASHES },
229   { {NULL, no_argument, NULL, '\0'},
230       'i', NULL, NULL, ONE_DASH },
231   { {"just-symbols", required_argument, NULL, 'R'},
232       'R', N_("FILE"), N_("Just link symbols (if directory, same as --rpath)"),
233       TWO_DASHES },
234   { {"strip-all", no_argument, NULL, 's'},
235       's', NULL, N_("Strip all symbols"), TWO_DASHES },
236   { {"strip-debug", no_argument, NULL, 'S'},
237       'S', NULL, N_("Strip debugging symbols"), TWO_DASHES },
238   { {"trace", no_argument, NULL, 't'},
239       't', NULL, N_("Trace file opens"), TWO_DASHES },
240   { {"script", required_argument, NULL, 'T'},
241       'T', N_("FILE"), N_("Read linker script"), TWO_DASHES },
242   { {"undefined", required_argument, NULL, 'u'},
243       'u', N_("SYMBOL"), N_("Start with undefined reference to SYMBOL"), TWO_DASHES },
244   { {"unique", optional_argument, NULL, OPTION_UNIQUE},
245       '\0', N_("[=SECTION]"), N_("Don't merge input [SECTION | orphan] sections"), TWO_DASHES },
246   { {"Ur", no_argument, NULL, OPTION_UR},
247       '\0', NULL, N_("Build global constructor/destructor tables"), ONE_DASH },
248   { {"version", no_argument, NULL, OPTION_VERSION},
249       'v', NULL, N_("Print version information"), TWO_DASHES },
250   { {NULL, no_argument, NULL, '\0'},
251       'V', NULL, N_("Print version and emulation information"), ONE_DASH },
252   { {"discard-all", no_argument, NULL, 'x'},
253       'x', NULL, N_("Discard all local symbols"), TWO_DASHES },
254   { {"discard-locals", no_argument, NULL, 'X'},
255       'X', NULL, N_("Discard temporary local symbols (default)"), TWO_DASHES },
256   { {"discard-none", no_argument, NULL, OPTION_DISCARD_NONE},
257       '\0', NULL, N_("Don't discard any local symbols"), TWO_DASHES },
258   { {"trace-symbol", required_argument, NULL, 'y'},
259       'y', N_("SYMBOL"), N_("Trace mentions of SYMBOL"), TWO_DASHES },
260   { {NULL, required_argument, NULL, '\0'},
261       'Y', N_("PATH"), N_("Default search path for Solaris compatibility"), ONE_DASH },
262   { {"start-group", no_argument, NULL, '('},
263       '(', NULL, N_("Start a group"), TWO_DASHES },
264   { {"end-group", no_argument, NULL, ')'},
265       ')', NULL, N_("End a group"), TWO_DASHES },
266   { {"assert", required_argument, NULL, OPTION_ASSERT},
267       '\0', N_("KEYWORD"), N_("Ignored for SunOS compatibility"), ONE_DASH },
268   { {"Bdynamic", no_argument, NULL, OPTION_CALL_SHARED},
269       '\0', NULL, N_("Link against shared libraries"), ONE_DASH },
270   { {"dy", no_argument, NULL, OPTION_CALL_SHARED},
271       '\0', NULL, NULL, ONE_DASH },
272   { {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
273       '\0', NULL, NULL, ONE_DASH },
274   { {"Bstatic", no_argument, NULL, OPTION_NON_SHARED},
275       '\0', NULL, N_("Do not link against shared libraries"), ONE_DASH },
276   { {"dn", no_argument, NULL, OPTION_NON_SHARED},
277       '\0', NULL, NULL, ONE_DASH },
278   { {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
279       '\0', NULL, NULL, ONE_DASH },
280   { {"static", no_argument, NULL, OPTION_NON_SHARED},
281       '\0', NULL, NULL, ONE_DASH },
282   { {"Bsymbolic", no_argument, NULL, OPTION_SYMBOLIC},
283       '\0', NULL, N_("Bind global references locally"), ONE_DASH },
284   { {"check-sections", no_argument, NULL, OPTION_CHECK_SECTIONS},
285       '\0', NULL, N_("Check section addresses for overlaps (default)"), TWO_DASHES },
286   { {"no-check-sections", no_argument, NULL, OPTION_NO_CHECK_SECTIONS},
287       '\0', NULL, N_("Do not check section addresses for overlaps"),
288       TWO_DASHES },
289   { {"cref", no_argument, NULL, OPTION_CREF},
290       '\0', NULL, N_("Output cross reference table"), TWO_DASHES },
291   { {"defsym", required_argument, NULL, OPTION_DEFSYM},
292       '\0', N_("SYMBOL=EXPRESSION"), N_("Define a symbol"), TWO_DASHES },
293   { {"demangle", optional_argument, NULL, OPTION_DEMANGLE},
294       '\0', N_("[=STYLE]"), N_("Demangle symbol names [using STYLE]"), TWO_DASHES },
295   { {"embedded-relocs", no_argument, NULL, OPTION_EMBEDDED_RELOCS},
296       '\0', NULL, N_("Generate embedded relocs"), TWO_DASHES},
297   { {"fini", required_argument, NULL, OPTION_FINI},
298      '\0', N_("SYMBOL"), N_("Call SYMBOL at unload-time"), ONE_DASH },
299   { {"force-exe-suffix", no_argument, NULL, OPTION_FORCE_EXE_SUFFIX},
300       '\0', NULL, N_("Force generation of file with .exe suffix"), TWO_DASHES},
301   { {"gc-sections", no_argument, NULL, OPTION_GC_SECTIONS},
302       '\0', NULL, N_("Remove unused sections (on some targets)"),
303       TWO_DASHES },
304   { {"no-gc-sections", no_argument, NULL, OPTION_NO_GC_SECTIONS},
305       '\0', NULL, N_("Don't remove unused sections (default)"),
306       TWO_DASHES },
307   { {"help", no_argument, NULL, OPTION_HELP},
308       '\0', NULL, N_("Print option help"), TWO_DASHES },
309   { {"init", required_argument, NULL, OPTION_INIT},
310      '\0', N_("SYMBOL"), N_("Call SYMBOL at load-time"), ONE_DASH },
311   { {"Map", required_argument, NULL, OPTION_MAP},
312       '\0', N_("FILE"), N_("Write a map file"), ONE_DASH },
313   { {"no-demangle", no_argument, NULL, OPTION_NO_DEMANGLE },
314       '\0', NULL, N_("Do not demangle symbol names"), TWO_DASHES },
315   { {"no-keep-memory", no_argument, NULL, OPTION_NO_KEEP_MEMORY},
316       '\0', NULL, N_("Use less memory and more disk I/O"), TWO_DASHES },
317   { {"no-undefined", no_argument, NULL, OPTION_NO_UNDEFINED},
318      '\0', NULL, N_("Allow no undefined symbols"), TWO_DASHES },
319   { {"allow-shlib-undefined", no_argument, NULL, OPTION_ALLOW_SHLIB_UNDEFINED},
320      '\0', NULL, N_("Allow undefined symbols in shared objects"), TWO_DASHES },
321   { {"no-warn-mismatch", no_argument, NULL, OPTION_NO_WARN_MISMATCH},
322       '\0', NULL, N_("Don't warn about mismatched input files"), TWO_DASHES},
323   { {"no-whole-archive", no_argument, NULL, OPTION_NO_WHOLE_ARCHIVE},
324       '\0', NULL, N_("Turn off --whole-archive"), TWO_DASHES },
325   { {"noinhibit-exec", no_argument, NULL, OPTION_NOINHIBIT_EXEC},
326       '\0', NULL, N_("Create an output file even if errors occur"), TWO_DASHES },
327   { {"noinhibit_exec", no_argument, NULL, OPTION_NOINHIBIT_EXEC},
328       '\0', NULL, NULL, NO_HELP },
329   { {"oformat", required_argument, NULL, OPTION_OFORMAT},
330       '\0', N_("TARGET"), N_("Specify target of output file"), EXACTLY_TWO_DASHES },
331   { {"qmagic", no_argument, NULL, OPTION_IGNORE},
332       '\0', NULL, N_("Ignored for Linux compatibility"), ONE_DASH },
333   { {"relax", no_argument, NULL, OPTION_RELAX},
334       '\0', NULL, N_("Relax branches on certain targets"), TWO_DASHES },
335   { {"retain-symbols-file", required_argument, NULL,
336        OPTION_RETAIN_SYMBOLS_FILE},
337       '\0', N_("FILE"), N_("Keep only symbols listed in FILE"), TWO_DASHES },
338   { {"rpath", required_argument, NULL, OPTION_RPATH},
339       '\0', N_("PATH"), N_("Set runtime shared library search path"), ONE_DASH },
340   { {"rpath-link", required_argument, NULL, OPTION_RPATH_LINK},
341       '\0', N_("PATH"), N_("Set link time shared library search path"), ONE_DASH },
342   { {"shared", no_argument, NULL, OPTION_SHARED},
343       '\0', NULL, N_("Create a shared library"), ONE_DASH },
344   { {"Bshareable", no_argument, NULL, OPTION_SHARED }, /* FreeBSD.  */
345       '\0', NULL, NULL, ONE_DASH },
346   { {"sort-common", no_argument, NULL, OPTION_SORT_COMMON},
347       '\0', NULL, N_("Sort common symbols by size"), TWO_DASHES },
348   { {"sort_common", no_argument, NULL, OPTION_SORT_COMMON},
349       '\0', NULL, NULL, NO_HELP },
350   { {"split-by-file", optional_argument, NULL, OPTION_SPLIT_BY_FILE},
351       '\0', N_("[=SIZE]"), N_("Split output sections every SIZE octets"), TWO_DASHES },
352   { {"split-by-reloc", optional_argument, NULL, OPTION_SPLIT_BY_RELOC},
353       '\0', N_("[=COUNT]"), N_("Split output sections every COUNT relocs"), TWO_DASHES },
354   { {"stats", no_argument, NULL, OPTION_STATS},
355       '\0', NULL, N_("Print memory usage statistics"), TWO_DASHES },
356   { {"target-help", no_argument, NULL, OPTION_TARGET_HELP},
357       '\0', NULL, N_("Display target specific options"), TWO_DASHES },
358   { {"task-link", required_argument, NULL, OPTION_TASK_LINK},
359       '\0', N_("SYMBOL"), N_("Do task level linking"), TWO_DASHES },
360   { {"traditional-format", no_argument, NULL, OPTION_TRADITIONAL_FORMAT},
361       '\0', NULL, N_("Use same format as native linker"), TWO_DASHES },
362   { {"section-start", required_argument, NULL, OPTION_SECTION_START},
363       '\0', N_("SECTION=ADDRESS"), N_("Set address of named section"), TWO_DASHES },
364   { {"Tbss", required_argument, NULL, OPTION_TBSS},
365       '\0', N_("ADDRESS"), N_("Set address of .bss section"), ONE_DASH },
366   { {"Tdata", required_argument, NULL, OPTION_TDATA},
367       '\0', N_("ADDRESS"), N_("Set address of .data section"), ONE_DASH },
368   { {"Ttext", required_argument, NULL, OPTION_TTEXT},
369       '\0', N_("ADDRESS"), N_("Set address of .text section"), ONE_DASH },
370   { {"verbose", no_argument, NULL, OPTION_VERBOSE},
371       '\0', NULL, N_("Output lots of information during link"), TWO_DASHES },
372   { {"dll-verbose", no_argument, NULL, OPTION_VERBOSE}, /* Linux.  */
373       '\0', NULL, NULL, NO_HELP },
374   { {"version-script", required_argument, NULL, OPTION_VERSION_SCRIPT },
375       '\0', N_("FILE"), N_("Read version information script"), TWO_DASHES },
376   { {"version-exports-section", required_argument, NULL,
377      OPTION_VERSION_EXPORTS_SECTION },
378     '\0', N_("SYMBOL"), N_("Take export symbols list from .exports, using\n\t\t\t\tSYMBOL as the version."),
379     TWO_DASHES },
380   { {"warn-common", no_argument, NULL, OPTION_WARN_COMMON},
381       '\0', NULL, N_("Warn about duplicate common symbols"), TWO_DASHES },
382   { {"warn-constructors", no_argument, NULL, OPTION_WARN_CONSTRUCTORS},
383       '\0', NULL, N_("Warn if global constructors/destructors are seen"),
384       TWO_DASHES },
385   { {"warn-multiple-gp", no_argument, NULL, OPTION_WARN_MULTIPLE_GP},
386       '\0', NULL, N_("Warn if the multiple GP values are used"), TWO_DASHES },
387   { {"warn-once", no_argument, NULL, OPTION_WARN_ONCE},
388       '\0', NULL, N_("Warn only once per undefined symbol"), TWO_DASHES },
389   { {"warn-section-align", no_argument, NULL, OPTION_WARN_SECTION_ALIGN},
390       '\0', NULL, N_("Warn if start of section changes due to alignment"),
391       TWO_DASHES },
392   { {"fatal-warnings", no_argument, NULL, OPTION_WARN_FATAL},
393      '\0', NULL, N_("Treat warnings as errors"),
394      TWO_DASHES },
395   { {"whole-archive", no_argument, NULL, OPTION_WHOLE_ARCHIVE},
396       '\0', NULL, N_("Include all objects from following archives"), TWO_DASHES },
397   { {"wrap", required_argument, NULL, OPTION_WRAP},
398       '\0', N_("SYMBOL"), N_("Use wrapper functions for SYMBOL"), TWO_DASHES },
399   { {"mpc860c0", optional_argument, NULL, OPTION_MPC860C0},
400       '\0', N_("[=WORDS]"), N_("Modify problematic branches in last WORDS (1-10,\n\t\t\t\tdefault 5) words of a page"), TWO_DASHES }
401 };
402
403 #define OPTION_COUNT ARRAY_SIZE (ld_options)
404
405 /* Test STRING for containing a string of digits that form a number
406    between MIN and MAX.  The return value is the number or ERR.  */
407
408 static int
409 is_num (string, min, max, err)
410      const char *string;
411      int min;
412      int max;
413      int err;
414 {
415   int result = 0;
416
417   for (; *string; ++string)
418     {
419       if (! isdigit (*string))
420         {
421           result = err;
422           break;
423         }
424       result = result * 10 + (*string - '0');
425     }
426   if (result < min || result > max)
427     result = err;
428
429   return result;
430 }
431
432 void
433 parse_args (argc, argv)
434      unsigned argc;
435      char **argv;
436 {
437   unsigned i;
438   int is, il, irl;
439   int ingroup = 0;
440   char *default_dirlist = NULL;
441   char shortopts[OPTION_COUNT * 3 + 2];
442   struct option longopts[OPTION_COUNT + 1];
443   struct option really_longopts[OPTION_COUNT + 1];
444   int last_optind;
445
446   /* Starting the short option string with '-' is for programs that
447      expect options and other ARGV-elements in any order and that care about
448      the ordering of the two.  We describe each non-option ARGV-element
449      as if it were the argument of an option with character code 1.  */
450   shortopts[0] = '-';
451   is = 1;
452   il = 0;
453   irl = 0;
454   for (i = 0; i < OPTION_COUNT; i++)
455     {
456       if (ld_options[i].shortopt != '\0')
457         {
458           shortopts[is] = ld_options[i].shortopt;
459           ++is;
460           if (ld_options[i].opt.has_arg == required_argument
461               || ld_options[i].opt.has_arg == optional_argument)
462             {
463               shortopts[is] = ':';
464               ++is;
465               if (ld_options[i].opt.has_arg == optional_argument)
466                 {
467                   shortopts[is] = ':';
468                   ++is;
469                 }
470             }
471         }
472       if (ld_options[i].opt.name != NULL)
473         {
474           if (ld_options[i].control == EXACTLY_TWO_DASHES)
475             {
476               really_longopts[irl] = ld_options[i].opt;
477               ++irl;
478             }
479           else
480             {
481               longopts[il] = ld_options[i].opt;
482               ++il;
483             }
484         }
485     }
486   shortopts[is] = '\0';
487   longopts[il].name = NULL;
488   really_longopts[irl].name = NULL;
489
490   /* The -G option is ambiguous on different platforms.  Sometimes it
491      specifies the largest data size to put into the small data
492      section.  Sometimes it is equivalent to --shared.  Unfortunately,
493      the first form takes an argument, while the second does not.
494
495      We need to permit the --shared form because on some platforms,
496      such as Solaris, gcc -shared will pass -G to the linker.
497
498      To permit either usage, we look through the argument list.  If we
499      find -G not followed by a number, we change it into --shared.
500      This will work for most normal cases.  */
501   for (i = 1; i < argc; i++)
502     if (strcmp (argv[i], "-G") == 0
503         && (i + 1 >= argc
504             || ! isdigit ((unsigned char) argv[i + 1][0])))
505       argv[i] = (char *) "--shared";
506
507   /* Because we permit long options to start with a single dash, and
508      we have a --library option, and the -l option is conventionally
509      used with an immediately following argument, we can have bad
510      results if somebody tries to use -l with a library whose name
511      happens to start with "ibrary", as in -li.  We avoid problems by
512      simply turning -l into --library.  This means that users will
513      have to use two dashes in order to use --library, which is OK
514      since that's how it is documented.
515
516      FIXME: It's possible that this problem can arise for other short
517      options as well, although the user does always have the recourse
518      of adding a space between the option and the argument.  */
519   for (i = 1; i < argc; i++)
520     {
521       if (argv[i][0] == '-'
522           && argv[i][1] == 'l'
523           && argv[i][2] != '\0')
524         {
525           char *n;
526
527           n = (char *) xmalloc (strlen (argv[i]) + 20);
528           sprintf (n, "--library=%s", argv[i] + 2);
529           argv[i] = n;
530         }
531     }
532
533   last_optind = -1;
534   while (1)
535     {
536       int longind, errind;
537       int optc;
538
539       /* Using last_optind lets us avoid calling ldemul_parse_args
540          multiple times on a single option, which would lead to
541          confusion in the internal static variables maintained by
542          getopt.  This could otherwise happen for an argument like
543          -nx, in which the -n is parsed as a single option, and we
544          loop around to pick up the -x.  */
545       if (optind != last_optind)
546         {
547           if (ldemul_parse_args (argc, argv))
548             continue;
549           last_optind = optind;
550         }
551
552       /* getopt_long_only is like getopt_long, but '-' as well as '--'
553          can indicate a long option.  */
554       opterr = 0;
555       errind = optind;
556       optc = getopt_long_only (argc, argv, shortopts, longopts, &longind);
557       if (optc == '?')
558         {
559           --optind;
560           optc = getopt_long (argc, argv, shortopts, really_longopts, &longind);
561         }
562
563       if (optc == -1)
564         break;
565
566       switch (optc)
567         {
568         case '?':
569           fprintf (stderr, _("%s: unrecognized option '%s'\n"),
570                    program_name, argv[errind]);
571         default:
572           fprintf (stderr,
573                    _("%s: use the --help option for usage information\n"),
574                    program_name);
575           xexit (1);
576         case 1:                 /* File name.  */
577           lang_add_input_file (optarg, lang_input_file_is_file_enum,
578                                (char *) NULL);
579           break;
580
581         case OPTION_IGNORE:
582           break;
583         case 'a':
584           /* For HP/UX compatibility.  Actually -a shared should mean
585              ``use only shared libraries'' but, then, we don't
586              currently support shared libraries on HP/UX anyhow.  */
587           if (strcmp (optarg, "archive") == 0)
588             config.dynamic_link = false;
589           else if (strcmp (optarg, "shared") == 0
590                    || strcmp (optarg, "default") == 0)
591             config.dynamic_link = true;
592           else
593             einfo (_("%P%F: unrecognized -a option `%s'\n"), optarg);
594           break;
595         case OPTION_ASSERT:
596           /* FIXME: We just ignore these, but we should handle them.  */
597           if (strcmp (optarg, "definitions") == 0)
598             ;
599           else if (strcmp (optarg, "nodefinitions") == 0)
600             ;
601           else if (strcmp (optarg, "nosymbolic") == 0)
602             ;
603           else if (strcmp (optarg, "pure-text") == 0)
604             ;
605           else
606             einfo (_("%P%F: unrecognized -assert option `%s'\n"), optarg);
607           break;
608         case 'A':
609           ldfile_add_arch (optarg);
610           break;
611         case 'b':
612           lang_add_target (optarg);
613           break;
614         case 'c':
615           ldfile_open_command_file (optarg);
616           parser_input = input_mri_script;
617           yyparse ();
618           break;
619         case OPTION_CALL_SHARED:
620           config.dynamic_link = true;
621           break;
622         case OPTION_NON_SHARED:
623           config.dynamic_link = false;
624           break;
625         case OPTION_CREF:
626           command_line.cref = true;
627           link_info.notice_all = true;
628           break;
629         case 'd':
630           command_line.force_common_definition = true;
631           break;
632         case OPTION_DEFSYM:
633           lex_string = optarg;
634           lex_redirect (optarg);
635           parser_input = input_defsym;
636           parsing_defsym = 1;
637           yyparse ();
638           parsing_defsym = 0;
639           lex_string = NULL;
640           break;
641         case OPTION_DEMANGLE:
642           demangling = true;
643           if (optarg != NULL)
644             {
645               enum demangling_styles style;
646
647               style = cplus_demangle_name_to_style (optarg);
648               if (style == unknown_demangling)
649                 einfo (_("%F%P: unknown demangling style `%s'"),
650                        optarg);
651
652               cplus_demangle_set_style (style);
653             }
654           break;
655         case 'I':               /* Used on Solaris.  */
656         case OPTION_DYNAMIC_LINKER:
657           command_line.interpreter = optarg;
658           break;
659         case OPTION_EB:
660           command_line.endian = ENDIAN_BIG;
661           break;
662         case OPTION_EL:
663           command_line.endian = ENDIAN_LITTLE;
664           break;
665         case OPTION_EMBEDDED_RELOCS:
666           command_line.embedded_relocs = true;
667           break;
668         case OPTION_EXPORT_DYNAMIC:
669         case 'E': /* HP/UX compatibility.  */
670           command_line.export_dynamic = true;
671           link_info.export_dynamic = true;
672           break;
673         case 'e':
674           lang_add_entry (optarg, true);
675           break;
676         case 'f':
677           if (command_line.auxiliary_filters == NULL)
678             {
679               command_line.auxiliary_filters =
680                 (char **) xmalloc (2 * sizeof (char *));
681               command_line.auxiliary_filters[0] = optarg;
682               command_line.auxiliary_filters[1] = NULL;
683             }
684           else
685             {
686               int c;
687               char **p;
688
689               c = 0;
690               for (p = command_line.auxiliary_filters; *p != NULL; p++)
691                 ++c;
692               command_line.auxiliary_filters =
693                 (char **) xrealloc (command_line.auxiliary_filters,
694                                     (c + 2) * sizeof (char *));
695               command_line.auxiliary_filters[c] = optarg;
696               command_line.auxiliary_filters[c + 1] = NULL;
697             }
698           break;
699         case 'F':
700           command_line.filter_shlib = optarg;
701           break;
702         case OPTION_FORCE_EXE_SUFFIX:
703           command_line.force_exe_suffix = true;
704           break;
705         case 'G':
706           {
707             char *end;
708             g_switch_value = strtoul (optarg, &end, 0);
709             if (*end)
710               einfo (_("%P%F: invalid number `%s'\n"), optarg);
711           }
712           break;
713         case 'g':
714           /* Ignore.  */
715           break;
716         case OPTION_GC_SECTIONS:
717           command_line.gc_sections = true;
718           break;
719         case OPTION_HELP:
720           help ();
721           xexit (0);
722           break;
723         case 'L':
724           ldfile_add_library_path (optarg, true);
725           break;
726         case 'l':
727           lang_add_input_file (optarg, lang_input_file_is_l_enum,
728                                (char *) NULL);
729           break;
730         case 'M':
731           config.map_filename = "-";
732           break;
733         case 'm':
734           /* Ignore.  Was handled in a pre-parse.   */
735           break;
736         case OPTION_MAP:
737           config.map_filename = optarg;
738           break;
739         case 'N':
740           config.text_read_only = false;
741           config.magic_demand_paged = false;
742           config.dynamic_link = false;
743           break;
744         case 'n':
745           config.magic_demand_paged = false;
746           config.dynamic_link = false;
747           break;
748         case OPTION_NO_DEMANGLE:
749           demangling = false;
750           break;
751         case OPTION_NO_GC_SECTIONS:
752           command_line.gc_sections = false;
753           break;
754         case OPTION_NO_KEEP_MEMORY:
755           link_info.keep_memory = false;
756           break;
757         case OPTION_NO_UNDEFINED:
758           link_info.no_undefined = true;
759           break;
760         case OPTION_ALLOW_SHLIB_UNDEFINED:
761           link_info.allow_shlib_undefined = true;
762           break;
763         case OPTION_NO_WARN_MISMATCH:
764           command_line.warn_mismatch = false;
765           break;
766         case OPTION_NOINHIBIT_EXEC:
767           force_make_executable = true;
768           break;
769         case OPTION_NO_WHOLE_ARCHIVE:
770           whole_archive = false;
771           break;
772         case 'O':
773           /* FIXME "-O<non-digits> <value>" used to set the address of
774              section <non-digits>.  Was this for compatibility with
775              something, or can we create a new option to do that
776              (with a syntax similar to -defsym)?
777              getopt can't handle two args to an option without kludges.  */
778
779           /* Enable optimizations of output files.  */
780           link_info.optimize = strtoul (optarg, NULL, 0) ? true : false;
781           break;
782         case 'o':
783           lang_add_output (optarg, 0);
784           break;
785         case OPTION_OFORMAT:
786           lang_add_output_format (optarg, (char *) NULL, (char *) NULL, 0);
787           break;
788         case 'q':
789           link_info.emitrelocations = true;
790           break;
791         case 'i':
792         case 'r':
793           link_info.relocateable = true;
794           config.build_constructors = false;
795           config.magic_demand_paged = false;
796           config.text_read_only = false;
797           config.dynamic_link = false;
798           break;
799         case 'R':
800           /* The GNU linker traditionally uses -R to mean to include
801              only the symbols from a file.  The Solaris linker uses -R
802              to set the path used by the runtime linker to find
803              libraries.  This is the GNU linker -rpath argument.  We
804              try to support both simultaneously by checking the file
805              named.  If it is a directory, rather than a regular file,
806              we assume -rpath was meant.  */
807           {
808             struct stat s;
809
810             if (stat (optarg, &s) >= 0
811                 && ! S_ISDIR (s.st_mode))
812               {
813                 lang_add_input_file (optarg,
814                                      lang_input_file_is_symbols_only_enum,
815                                      (char *) NULL);
816                 break;
817               }
818           }
819           /* Fall through.  */
820         case OPTION_RPATH:
821           if (command_line.rpath == NULL)
822             command_line.rpath = xstrdup (optarg);
823           else
824             {
825               size_t rpath_len = strlen (command_line.rpath);
826               size_t optarg_len = strlen (optarg);
827               char *buf;
828               char *cp = command_line.rpath;
829
830               /* First see whether OPTARG is already in the path.  */
831               do
832                 {
833                   size_t idx = 0;
834                   while (optarg[idx] != '\0' && optarg[idx] == cp[idx])
835                     ++idx;
836                   if (optarg[idx] == '\0'
837                       && (cp[idx] == '\0' || cp[idx] == ':'))
838                     /* We found it.  */
839                     break;
840
841                   /* Not yet found.  */
842                   cp = strchr (cp, ':');
843                   if (cp != NULL)
844                     ++cp;
845                 }
846               while (cp != NULL);
847
848               if (cp == NULL)
849                 {
850                   buf = xmalloc (rpath_len + optarg_len + 2);
851                   sprintf (buf, "%s:%s", command_line.rpath, optarg);
852                   free (command_line.rpath);
853                   command_line.rpath = buf;
854                 }
855             }
856           break;
857         case OPTION_RPATH_LINK:
858           if (command_line.rpath_link == NULL)
859             command_line.rpath_link = xstrdup (optarg);
860           else
861             {
862               char *buf;
863
864               buf = xmalloc (strlen (command_line.rpath_link)
865                              + strlen (optarg)
866                              + 2);
867               sprintf (buf, "%s:%s", command_line.rpath_link, optarg);
868               free (command_line.rpath_link);
869               command_line.rpath_link = buf;
870             }
871           break;
872         case OPTION_RELAX:
873           command_line.relax = true;
874           break;
875         case OPTION_RETAIN_SYMBOLS_FILE:
876           add_keepsyms_file (optarg);
877           break;
878         case 'S':
879           link_info.strip = strip_debugger;
880           break;
881         case 's':
882           link_info.strip = strip_all;
883           break;
884         case OPTION_SHARED:
885           if (config.has_shared)
886             link_info.shared = true;
887           else
888             einfo (_("%P%F: -shared not supported\n"));
889           break;
890         case 'h':               /* Used on Solaris.  */
891         case OPTION_SONAME:
892           command_line.soname = optarg;
893           break;
894         case OPTION_SORT_COMMON:
895           config.sort_common = true;
896           break;
897         case OPTION_STATS:
898           config.stats = true;
899           break;
900         case OPTION_SYMBOLIC:
901           link_info.symbolic = true;
902           break;
903         case 't':
904           trace_files = true;
905           break;
906         case 'T':
907           ldfile_open_command_file (optarg);
908           parser_input = input_script;
909           yyparse ();
910           break;
911         case OPTION_SECTION_START:
912           {
913             char *optarg2;
914             char *sec_name;
915             int len;
916
917             /* Check for <something>=<somthing>...  */
918             optarg2 = strchr (optarg, '=');
919             if (optarg2 == NULL)
920               {
921                 fprintf (stderr,
922                          _("%s: Invalid argument to option \"--section-start\"\n"),
923                          program_name);
924                 xexit (1);
925               }
926
927             optarg2++;
928
929             /* So far so good.  Are all the args present?  */
930             if ((*optarg == '\0') || (*optarg2 == '\0'))
931               {
932                 fprintf (stderr,
933                          _("%s: Missing argument(s) to option \"--section-start\"\n"),
934                          program_name);
935                 xexit (1);
936               }
937
938             /* We must copy the section name as set_section_start
939                doesn't do it for us.  */
940             len = optarg2 - optarg;
941             sec_name = xmalloc (len);
942             memcpy (sec_name, optarg, len - 1);
943             sec_name[len - 1] = 0;
944
945             /* Then set it...  */
946             set_section_start (sec_name, optarg2);
947           }
948           break;
949         case OPTION_TARGET_HELP:
950           /* Mention any target specific options.  */
951           ldemul_list_emulation_options (stdout);
952           exit (0);
953         case OPTION_TBSS:
954           set_section_start (".bss", optarg);
955           break;
956         case OPTION_TDATA:
957           set_section_start (".data", optarg);
958           break;
959         case OPTION_TTEXT:
960           set_section_start (".text", optarg);
961           break;
962         case OPTION_TRADITIONAL_FORMAT:
963           link_info.traditional_format = true;
964           break;
965         case OPTION_TASK_LINK:
966           link_info.task_link = true;
967           /* Fall through - do an implied -r option.  */
968         case OPTION_UR:
969           link_info.relocateable = true;
970           config.build_constructors = true;
971           config.magic_demand_paged = false;
972           config.text_read_only = false;
973           config.dynamic_link = false;
974           break;
975         case 'u':
976           ldlang_add_undef (optarg);
977           break;
978         case OPTION_UNIQUE:
979           if (optarg != NULL)
980             lang_add_unique (optarg);
981           else
982             config.unique_orphan_sections = true;
983           break;
984         case OPTION_VERBOSE:
985           ldversion (1);
986           version_printed = true;
987           trace_file_tries = true;
988           break;
989         case 'v':
990           ldversion (0);
991           version_printed = true;
992           break;
993         case 'V':
994           ldversion (1);
995           version_printed = true;
996           break;
997         case OPTION_VERSION:
998           /* This output is intended to follow the GNU standards document.  */
999           printf ("GNU ld %s\n", ld_program_version);
1000           printf (_("Copyright 2001 Free Software Foundation, Inc.\n"));
1001           printf (_("\
1002 This program is free software; you may redistribute it under the terms of\n\
1003 the GNU General Public License.  This program has absolutely no warranty.\n"));
1004           {
1005             ld_emulation_xfer_type **ptr = ld_emulations;
1006
1007             printf (_("  Supported emulations:\n"));
1008             while (*ptr)
1009               {
1010                 printf ("   %s\n", (*ptr)->emulation_name);
1011                 ptr++;
1012               }
1013           }
1014           xexit (0);
1015           break;
1016         case OPTION_VERSION_SCRIPT:
1017           /* This option indicates a small script that only specifies
1018              version information.  Read it, but don't assume that
1019              we've seen a linker script.  */
1020           {
1021             boolean hold_had_script;
1022
1023             hold_had_script = had_script;
1024             ldfile_open_command_file (optarg);
1025             had_script = hold_had_script;
1026             parser_input = input_version_script;
1027             yyparse ();
1028           }
1029           break;
1030         case OPTION_VERSION_EXPORTS_SECTION:
1031           /* This option records a version symbol to be applied to the
1032              symbols listed for export to be found in the object files
1033              .exports sections.  */
1034           command_line.version_exports_section = optarg;
1035           break;
1036         case OPTION_WARN_COMMON:
1037           config.warn_common = true;
1038           break;
1039         case OPTION_WARN_CONSTRUCTORS:
1040           config.warn_constructors = true;
1041           break;
1042         case OPTION_WARN_FATAL:
1043           config.fatal_warnings = true;
1044           break;
1045         case OPTION_WARN_MULTIPLE_GP:
1046           config.warn_multiple_gp = true;
1047           break;
1048         case OPTION_WARN_ONCE:
1049           config.warn_once = true;
1050           break;
1051         case OPTION_WARN_SECTION_ALIGN:
1052           config.warn_section_align = true;
1053           break;
1054         case OPTION_WHOLE_ARCHIVE:
1055           whole_archive = true;
1056           break;
1057         case OPTION_WRAP:
1058           add_wrap (optarg);
1059           break;
1060         case OPTION_DISCARD_NONE:
1061           link_info.discard = discard_none;
1062           break;
1063         case 'X':
1064           link_info.discard = discard_l;
1065           break;
1066         case 'x':
1067           link_info.discard = discard_all;
1068           break;
1069         case 'Y':
1070           if (strncmp (optarg, "P,", 2) == 0)
1071             optarg += 2;
1072           default_dirlist = xstrdup (optarg);
1073           break;
1074         case 'y':
1075           add_ysym (optarg);
1076           break;
1077         case OPTION_SPLIT_BY_RELOC:
1078           if (optarg != NULL)
1079             config.split_by_reloc = strtoul (optarg, NULL, 0);
1080           else
1081             config.split_by_reloc = 32768;
1082           break;
1083         case OPTION_SPLIT_BY_FILE:
1084           if (optarg != NULL)
1085             config.split_by_file = bfd_scan_vma (optarg, NULL, 0);
1086           else
1087             config.split_by_file = 1;
1088           break;
1089         case OPTION_CHECK_SECTIONS:
1090           command_line.check_section_addresses = true;
1091           break;
1092         case OPTION_NO_CHECK_SECTIONS:
1093           command_line.check_section_addresses = false;
1094           break;
1095         case '(':
1096           if (ingroup)
1097             {
1098               fprintf (stderr,
1099                        _("%s: may not nest groups (--help for usage)\n"),
1100                        program_name);
1101               xexit (1);
1102             }
1103           lang_enter_group ();
1104           ingroup = 1;
1105           break;
1106         case ')':
1107           if (! ingroup)
1108             {
1109               fprintf (stderr,
1110                        _("%s: group ended before it began (--help for usage)\n"),
1111                        program_name);
1112               xexit (1);
1113             }
1114           lang_leave_group ();
1115           ingroup = 0;
1116           break;
1117         case OPTION_MPC860C0:
1118           link_info.mpc860c0 = 20;      /* default value (in bytes) */
1119           if (optarg)
1120             {
1121               unsigned words;
1122
1123               words = is_num (optarg, 1, 10, 0);
1124               if (words == 0)
1125                 {
1126                   fprintf (stderr,
1127                            _("%s: Invalid argument to option \"mpc860c0\"\n"),
1128                            program_name);
1129                   xexit (1);
1130                 }
1131               link_info.mpc860c0 = words * 4;   /* convert words to bytes */
1132             }
1133           command_line.relax = true;
1134           break;
1135
1136         case OPTION_INIT:
1137           link_info.init_function = optarg;
1138           break;
1139
1140         case OPTION_FINI:
1141           link_info.fini_function = optarg;
1142           break;
1143         }
1144     }
1145
1146   if (ingroup)
1147     lang_leave_group ();
1148
1149   if (default_dirlist != NULL)
1150     set_default_dirlist (default_dirlist);
1151
1152 }
1153
1154 /* Add the (colon-separated) elements of DIRLIST_PTR to the
1155    library search path.  */
1156
1157 static void
1158 set_default_dirlist (dirlist_ptr)
1159      char *dirlist_ptr;
1160 {
1161   char *p;
1162
1163   while (1)
1164     {
1165       p = strchr (dirlist_ptr, PATH_SEPARATOR);
1166       if (p != NULL)
1167         *p = '\0';
1168       if (*dirlist_ptr != '\0')
1169         ldfile_add_library_path (dirlist_ptr, true);
1170       if (p == NULL)
1171         break;
1172       dirlist_ptr = p + 1;
1173     }
1174 }
1175
1176 static void
1177 set_section_start (sect, valstr)
1178      char *sect, *valstr;
1179 {
1180   const char *end;
1181   bfd_vma val = bfd_scan_vma (valstr, &end, 16);
1182   if (*end)
1183     einfo (_("%P%F: invalid hex number `%s'\n"), valstr);
1184   lang_section_start (sect, exp_intop (val));
1185 }
1186 \f
1187 /* Print help messages for the options.  */
1188
1189 static void
1190 help ()
1191 {
1192   unsigned i;
1193   const char **targets, **pp;
1194
1195   printf (_("Usage: %s [options] file...\n"), program_name);
1196
1197   printf (_("Options:\n"));
1198   for (i = 0; i < OPTION_COUNT; i++)
1199     {
1200       if (ld_options[i].doc != NULL)
1201         {
1202           boolean comma;
1203           int len;
1204           unsigned j;
1205
1206           printf ("  ");
1207
1208           comma = false;
1209           len = 2;
1210
1211           j = i;
1212           do
1213             {
1214               if (ld_options[j].shortopt != '\0'
1215                   && ld_options[j].control != NO_HELP)
1216                 {
1217                   printf ("%s-%c", comma ? ", " : "", ld_options[j].shortopt);
1218                   len += (comma ? 2 : 0) + 2;
1219                   if (ld_options[j].arg != NULL)
1220                     {
1221                       if (ld_options[j].opt.has_arg != optional_argument)
1222                         {
1223                           printf (" ");
1224                           ++len;
1225                         }
1226                       printf ("%s", _(ld_options[j].arg));
1227                       len += strlen (_(ld_options[j].arg));
1228                     }
1229                   comma = true;
1230                 }
1231               ++j;
1232             }
1233           while (j < OPTION_COUNT && ld_options[j].doc == NULL);
1234
1235           j = i;
1236           do
1237             {
1238               if (ld_options[j].opt.name != NULL
1239                   && ld_options[j].control != NO_HELP)
1240                 {
1241                   int two_dashes =
1242                     (ld_options[j].control == TWO_DASHES
1243                      || ld_options[j].control == EXACTLY_TWO_DASHES);
1244                   
1245                   printf ("%s-%s%s",
1246                           comma ? ", " : "",
1247                           two_dashes ? "-" : "",
1248                           ld_options[j].opt.name);
1249                   len += ((comma ? 2 : 0)
1250                           + 1
1251                           + (two_dashes ? 1 : 0)
1252                           + strlen (ld_options[j].opt.name));
1253                   if (ld_options[j].arg != NULL)
1254                     {
1255                       printf (" %s", _(ld_options[j].arg));
1256                       len += 1 + strlen (_(ld_options[j].arg));
1257                     }
1258                   comma = true;
1259                 }
1260               ++j;
1261             }
1262           while (j < OPTION_COUNT && ld_options[j].doc == NULL);
1263
1264           if (len >= 30)
1265             {
1266               printf ("\n");
1267               len = 0;
1268             }
1269
1270           for (; len < 30; len++)
1271             putchar (' ');
1272
1273           printf ("%s\n", _(ld_options[i].doc));
1274         }
1275     }
1276
1277   /* Note: Various tools (such as libtool) depend upon the
1278      format of the listings below - do not change them.  */
1279   /* xgettext:c-format */
1280   printf (_("%s: supported targets:"), program_name);
1281   targets = bfd_target_list ();
1282   for (pp = targets; *pp != NULL; pp++)
1283     printf (" %s", *pp);
1284   free (targets);
1285   printf ("\n");
1286
1287   /* xgettext:c-format */
1288   printf (_("%s: supported emulations: "), program_name);
1289   ldemul_list_emulations (stdout);
1290   printf ("\n");
1291
1292   /* xgettext:c-format */
1293   printf (_("%s: emulation specific options:\n"), program_name);
1294   ldemul_list_emulation_options (stdout);
1295   printf ("\n");
1296
1297   printf (_("Report bugs to %s\n"), REPORT_BUGS_TO);
1298 }