]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/lexsup.c
imprrove error message
[thirdparty/binutils-gdb.git] / ld / lexsup.c
CommitLineData
252b5132 1/* Parse options for the GNU linker.
a2b64bed
NC
2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001
252b5132
RH
4 Free Software Foundation, Inc.
5
6This file is part of GLD, the Gnu Linker.
7
8GLD is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 2, or (at your option)
11any later version.
12
13GLD is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with GLD; see the file COPYING. If not, write to the Free
20Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2102111-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"
28c309a2 41#include "demangle.h"
252b5132
RH
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
5cc18311 51/* Somewhere above, sys/stat.h got included . . . . */
252b5132
RH
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. */
58unsigned long strtoul ();
59
3d9f6277 60static int is_num PARAMS ((const char *, int, int, int));
252b5132
RH
61static void set_default_dirlist PARAMS ((char *dirlist_ptr));
62static void set_section_start PARAMS ((char *sect, char *valstr));
63static void help PARAMS ((void));
64
65/* Non-zero if we are processing a --defsym from the command line. */
66int 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)
7ce691ae
C
112#define OPTION_WARN_FATAL (OPTION_WARN_CONSTRUCTORS + 1)
113#define OPTION_WARN_MULTIPLE_GP (OPTION_WARN_FATAL + 1)
252b5132
RH
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)
3dbf70a2
MM
127#define OPTION_INIT (OPTION_NO_UNDEFINED + 1)
128#define OPTION_FINI (OPTION_INIT + 1)
176355da 129#define OPTION_SECTION_START (OPTION_FINI + 1)
a854a4a7 130#define OPTION_UNIQUE (OPTION_SECTION_START + 1)
ea20a7da 131#define OPTION_TARGET_HELP (OPTION_UNIQUE + 1)
b79e8c78 132#define OPTION_ALLOW_SHLIB_UNDEFINED (OPTION_TARGET_HELP + 1)
f5fa8ca2 133#define OPTION_DISCARD_NONE (OPTION_ALLOW_SHLIB_UNDEFINED + 1)
252b5132
RH
134
135/* The long options. This structure is used for both the option
136 parsing and the help text. */
137
b79e8c78
NC
138struct ld_option
139{
252b5132
RH
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;
e47d05ad
KH
149 enum {
150 /* Use one dash before long option name. */
151 ONE_DASH,
152 /* Use two dashes before long option name. */
153 TWO_DASHES,
e4897a32
NC
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,
e47d05ad
KH
164 /* Don't mention this option in --help output. */
165 NO_HELP
166 } control;
252b5132
RH
167};
168
b79e8c78
NC
169static const struct ld_option ld_options[] =
170{
252b5132
RH
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 { {"library", required_argument, NULL, 'l'},
205 'l', N_("LIBNAME"), N_("Search for library LIBNAME"), TWO_DASHES },
206 { {"library-path", required_argument, NULL, 'L'},
207 'L', N_("DIRECTORY"), N_("Add DIRECTORY to library search path"), TWO_DASHES },
208 { {NULL, required_argument, NULL, '\0'},
209 'm', N_("EMULATION"), N_("Set emulation"), ONE_DASH },
210 { {"print-map", no_argument, NULL, 'M'},
211 'M', NULL, N_("Print map file on standard output"), TWO_DASHES },
212 { {"nmagic", no_argument, NULL, 'n'},
213 'n', NULL, N_("Do not page align data"), TWO_DASHES },
214 { {"omagic", no_argument, NULL, 'N'},
215 'N', NULL, N_("Do not page align data, do not make text readonly"),
e4897a32 216 EXACTLY_TWO_DASHES },
252b5132 217 { {"output", required_argument, NULL, 'o'},
e4897a32 218 'o', N_("FILE"), N_("Set output file name"), EXACTLY_TWO_DASHES },
252b5132
RH
219 { {NULL, required_argument, NULL, '\0'},
220 'O', NULL, N_("Optimize output file"), ONE_DASH },
221 { {"Qy", no_argument, NULL, OPTION_IGNORE},
222 '\0', NULL, N_("Ignored for SVR4 compatibility"), ONE_DASH },
a712da20
NC
223 { {"emit-relocs", no_argument, NULL, 'q'},
224 'q', NULL, "Generate relocations in final output", TWO_DASHES },
079a8e4a
NC
225 { {"relocateable", no_argument, NULL, 'r'},
226 'r', NULL, N_("Generate relocateable output"), TWO_DASHES },
252b5132
RH
227 { {NULL, no_argument, NULL, '\0'},
228 'i', NULL, NULL, ONE_DASH },
229 { {"just-symbols", required_argument, NULL, 'R'},
230 'R', N_("FILE"), N_("Just link symbols (if directory, same as --rpath)"),
231 TWO_DASHES },
232 { {"strip-all", no_argument, NULL, 's'},
233 's', NULL, N_("Strip all symbols"), TWO_DASHES },
234 { {"strip-debug", no_argument, NULL, 'S'},
235 'S', NULL, N_("Strip debugging symbols"), TWO_DASHES },
236 { {"trace", no_argument, NULL, 't'},
237 't', NULL, N_("Trace file opens"), TWO_DASHES },
238 { {"script", required_argument, NULL, 'T'},
239 'T', N_("FILE"), N_("Read linker script"), TWO_DASHES },
240 { {"undefined", required_argument, NULL, 'u'},
241 'u', N_("SYMBOL"), N_("Start with undefined reference to SYMBOL"), TWO_DASHES },
577a0623
AM
242 { {"unique", optional_argument, NULL, OPTION_UNIQUE},
243 '\0', N_("[=SECTION]"), N_("Don't merge input [SECTION | orphan] sections"), TWO_DASHES },
252b5132
RH
244 { {"Ur", no_argument, NULL, OPTION_UR},
245 '\0', NULL, N_("Build global constructor/destructor tables"), ONE_DASH },
246 { {"version", no_argument, NULL, OPTION_VERSION},
247 'v', NULL, N_("Print version information"), TWO_DASHES },
248 { {NULL, no_argument, NULL, '\0'},
249 'V', NULL, N_("Print version and emulation information"), ONE_DASH },
250 { {"discard-all", no_argument, NULL, 'x'},
251 'x', NULL, N_("Discard all local symbols"), TWO_DASHES },
252 { {"discard-locals", no_argument, NULL, 'X'},
f5fa8ca2
JJ
253 'X', NULL, N_("Discard temporary local symbols (default)"), TWO_DASHES },
254 { {"discard-none", no_argument, NULL, OPTION_DISCARD_NONE},
255 '\0', NULL, N_("Don't discard any local symbols"), TWO_DASHES },
252b5132
RH
256 { {"trace-symbol", required_argument, NULL, 'y'},
257 'y', N_("SYMBOL"), N_("Trace mentions of SYMBOL"), TWO_DASHES },
258 { {NULL, required_argument, NULL, '\0'},
259 'Y', N_("PATH"), N_("Default search path for Solaris compatibility"), ONE_DASH },
252b5132
RH
260 { {"start-group", no_argument, NULL, '('},
261 '(', NULL, N_("Start a group"), TWO_DASHES },
262 { {"end-group", no_argument, NULL, ')'},
263 ')', NULL, N_("End a group"), TWO_DASHES },
264 { {"assert", required_argument, NULL, OPTION_ASSERT},
265 '\0', N_("KEYWORD"), N_("Ignored for SunOS compatibility"), ONE_DASH },
266 { {"Bdynamic", no_argument, NULL, OPTION_CALL_SHARED},
267 '\0', NULL, N_("Link against shared libraries"), ONE_DASH },
268 { {"dy", no_argument, NULL, OPTION_CALL_SHARED},
269 '\0', NULL, NULL, ONE_DASH },
270 { {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
271 '\0', NULL, NULL, ONE_DASH },
272 { {"Bstatic", no_argument, NULL, OPTION_NON_SHARED},
273 '\0', NULL, N_("Do not link against shared libraries"), ONE_DASH },
274 { {"dn", no_argument, NULL, OPTION_NON_SHARED},
275 '\0', NULL, NULL, ONE_DASH },
276 { {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
277 '\0', NULL, NULL, ONE_DASH },
278 { {"static", no_argument, NULL, OPTION_NON_SHARED},
279 '\0', NULL, NULL, ONE_DASH },
280 { {"Bsymbolic", no_argument, NULL, OPTION_SYMBOLIC},
281 '\0', NULL, N_("Bind global references locally"), ONE_DASH },
282 { {"check-sections", no_argument, NULL, OPTION_CHECK_SECTIONS},
283 '\0', NULL, N_("Check section addresses for overlaps (default)"), TWO_DASHES },
284 { {"no-check-sections", no_argument, NULL, OPTION_NO_CHECK_SECTIONS},
285 '\0', NULL, N_("Do not check section addresses for overlaps"),
286 TWO_DASHES },
287 { {"cref", no_argument, NULL, OPTION_CREF},
288 '\0', NULL, N_("Output cross reference table"), TWO_DASHES },
289 { {"defsym", required_argument, NULL, OPTION_DEFSYM},
290 '\0', N_("SYMBOL=EXPRESSION"), N_("Define a symbol"), TWO_DASHES },
28c309a2
NC
291 { {"demangle", optional_argument, NULL, OPTION_DEMANGLE},
292 '\0', N_("[=STYLE]"), N_("Demangle symbol names [using STYLE]"), TWO_DASHES },
252b5132
RH
293 { {"dynamic-linker", required_argument, NULL, OPTION_DYNAMIC_LINKER},
294 '\0', N_("PROGRAM"), N_("Set the dynamic linker to use"), TWO_DASHES },
295 { {"embedded-relocs", no_argument, NULL, OPTION_EMBEDDED_RELOCS},
296 '\0', NULL, N_("Generate embedded relocs"), TWO_DASHES},
3dbf70a2
MM
297 { {"fini", required_argument, NULL, OPTION_FINI},
298 '\0', N_("SYMBOL"), N_("Call SYMBOL at unload-time"), ONE_DASH },
252b5132
RH
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 },
3dbf70a2
MM
309 { {"init", required_argument, NULL, OPTION_INIT},
310 '\0', N_("SYMBOL"), N_("Call SYMBOL at load-time"), ONE_DASH },
252b5132
RH
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 },
b79e8c78
NC
319 { {"allow-shlib-undefined", no_argument, NULL, OPTION_ALLOW_SHLIB_UNDEFINED},
320 '\0', NULL, N_("Allow undefined symbols in shared objects"), TWO_DASHES },
252b5132
RH
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},
e4897a32 330 '\0', N_("TARGET"), N_("Specify target of output file"), EXACTLY_TWO_DASHES },
252b5132
RH
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 },
a854a4a7
AM
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 },
252b5132
RH
354 { {"stats", no_argument, NULL, OPTION_STATS},
355 '\0', NULL, N_("Print memory usage statistics"), TWO_DASHES },
ea20a7da
CC
356 { {"target-help", no_argument, NULL, OPTION_TARGET_HELP},
357 '\0', NULL, N_("Display target specific options"), TWO_DASHES },
252b5132
RH
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 },
176355da
NC
362 { {"section-start", required_argument, NULL, OPTION_SECTION_START},
363 '\0', N_("SECTION=ADDRESS"), N_("Set address of named section"), TWO_DASHES },
252b5132
RH
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 },
b3043ee4 378 '\0', N_("SYMBOL"), N_("Take export symbols list from .exports, using\n\t\t\t\tSYMBOL as the version."),
252b5132
RH
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 },
7ce691ae
C
392 { {"fatal-warnings", no_argument, NULL, OPTION_WARN_FATAL},
393 '\0', NULL, N_("Treat warnings as errors"),
394 TWO_DASHES },
252b5132
RH
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},
b3043ee4 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 }
252b5132
RH
401};
402
e4897a32 403#define OPTION_COUNT ARRAY_SIZE (ld_options)
252b5132 404
3d9f6277
ILT
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
408static int
409is_num (string, min, max, err)
410 const char *string;
411 int min;
412 int max;
413 int err;
252b5132
RH
414{
415 int result = 0;
416
3d9f6277 417 for (; *string; ++string)
252b5132 418 {
3d9f6277
ILT
419 if (! isdigit (*string))
420 {
421 result = err;
422 break;
423 }
424 result = result * 10 + (*string - '0');
252b5132 425 }
252b5132
RH
426 if (result < min || result > max)
427 result = err;
428
429 return result;
430}
431
432void
433parse_args (argc, argv)
e4897a32 434 unsigned argc;
252b5132
RH
435 char **argv;
436{
e4897a32
NC
437 unsigned i;
438 int is, il, irl;
252b5132
RH
439 int ingroup = 0;
440 char *default_dirlist = NULL;
441 char shortopts[OPTION_COUNT * 3 + 2];
442 struct option longopts[OPTION_COUNT + 1];
e4897a32 443 struct option really_longopts[OPTION_COUNT + 1];
252b5132
RH
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;
e4897a32 453 irl = 0;
252b5132
RH
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 {
e4897a32
NC
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 }
252b5132
RH
484 }
485 }
486 shortopts[is] = '\0';
487 longopts[il].name = NULL;
e4897a32 488 really_longopts[irl].name = NULL;
252b5132
RH
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;
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. */
0fc3347a 554 opterr = 0;
252b5132 555 optc = getopt_long_only (argc, argv, shortopts, longopts, &longind);
0fc3347a
NC
556 if (optc == '?')
557 {
558 --optind;
559 optc = getopt_long (argc, argv, shortopts, really_longopts, &longind);
560 }
b7ed8fad 561
252b5132
RH
562 if (optc == -1)
563 break;
0fc3347a 564
252b5132
RH
565 switch (optc)
566 {
0fc3347a
NC
567 case '?':
568 fprintf (stderr, _("%s: unrecognized option '%s'\n"),
569 program_name, argv[optind - 1]);
252b5132 570 default:
03983865
ILT
571 fprintf (stderr,
572 _("%s: use the --help option for usage information\n"),
573 program_name);
252b5132
RH
574 xexit (1);
575 case 1: /* File name. */
576 lang_add_input_file (optarg, lang_input_file_is_file_enum,
577 (char *) NULL);
578 break;
579
580 case OPTION_IGNORE:
581 break;
582 case 'a':
583 /* For HP/UX compatibility. Actually -a shared should mean
584 ``use only shared libraries'' but, then, we don't
585 currently support shared libraries on HP/UX anyhow. */
586 if (strcmp (optarg, "archive") == 0)
587 config.dynamic_link = false;
588 else if (strcmp (optarg, "shared") == 0
589 || strcmp (optarg, "default") == 0)
590 config.dynamic_link = true;
591 else
592 einfo (_("%P%F: unrecognized -a option `%s'\n"), optarg);
593 break;
594 case OPTION_ASSERT:
595 /* FIXME: We just ignore these, but we should handle them. */
596 if (strcmp (optarg, "definitions") == 0)
597 ;
598 else if (strcmp (optarg, "nodefinitions") == 0)
599 ;
600 else if (strcmp (optarg, "nosymbolic") == 0)
601 ;
602 else if (strcmp (optarg, "pure-text") == 0)
603 ;
604 else
605 einfo (_("%P%F: unrecognized -assert option `%s'\n"), optarg);
606 break;
607 case 'A':
608 ldfile_add_arch (optarg);
609 break;
610 case 'b':
611 lang_add_target (optarg);
612 break;
613 case 'c':
614 ldfile_open_command_file (optarg);
615 parser_input = input_mri_script;
616 yyparse ();
617 break;
618 case OPTION_CALL_SHARED:
619 config.dynamic_link = true;
620 break;
621 case OPTION_NON_SHARED:
622 config.dynamic_link = false;
623 break;
624 case OPTION_CREF:
625 command_line.cref = true;
626 link_info.notice_all = true;
627 break;
628 case 'd':
629 command_line.force_common_definition = true;
630 break;
631 case OPTION_DEFSYM:
632 lex_string = optarg;
633 lex_redirect (optarg);
634 parser_input = input_defsym;
635 parsing_defsym = 1;
636 yyparse ();
637 parsing_defsym = 0;
638 lex_string = NULL;
639 break;
640 case OPTION_DEMANGLE:
641 demangling = true;
28c309a2
NC
642 if (optarg != NULL)
643 {
644 enum demangling_styles style;
5cc18311 645
28c309a2 646 style = cplus_demangle_name_to_style (optarg);
5cc18311 647 if (style == unknown_demangling)
28c309a2
NC
648 einfo (_("%F%P: unknown demangling style `%s'"),
649 optarg);
5cc18311 650
28c309a2 651 cplus_demangle_set_style (style);
e47d05ad 652 }
252b5132
RH
653 break;
654 case OPTION_DYNAMIC_LINKER:
655 command_line.interpreter = optarg;
656 break;
657 case OPTION_EB:
658 command_line.endian = ENDIAN_BIG;
659 break;
660 case OPTION_EL:
661 command_line.endian = ENDIAN_LITTLE;
662 break;
663 case OPTION_EMBEDDED_RELOCS:
664 command_line.embedded_relocs = true;
665 break;
666 case OPTION_EXPORT_DYNAMIC:
667 case 'E': /* HP/UX compatibility. */
668 command_line.export_dynamic = true;
669 break;
670 case 'e':
671 lang_add_entry (optarg, true);
672 break;
673 case 'f':
674 if (command_line.auxiliary_filters == NULL)
675 {
676 command_line.auxiliary_filters =
677 (char **) xmalloc (2 * sizeof (char *));
678 command_line.auxiliary_filters[0] = optarg;
679 command_line.auxiliary_filters[1] = NULL;
680 }
681 else
682 {
683 int c;
684 char **p;
685
686 c = 0;
687 for (p = command_line.auxiliary_filters; *p != NULL; p++)
688 ++c;
689 command_line.auxiliary_filters =
690 (char **) xrealloc (command_line.auxiliary_filters,
691 (c + 2) * sizeof (char *));
692 command_line.auxiliary_filters[c] = optarg;
693 command_line.auxiliary_filters[c + 1] = NULL;
694 }
695 break;
696 case 'F':
697 command_line.filter_shlib = optarg;
698 break;
699 case OPTION_FORCE_EXE_SUFFIX:
700 command_line.force_exe_suffix = true;
701 break;
702 case 'G':
703 {
704 char *end;
705 g_switch_value = strtoul (optarg, &end, 0);
706 if (*end)
707 einfo (_("%P%F: invalid number `%s'\n"), optarg);
708 }
709 break;
710 case 'g':
711 /* Ignore. */
712 break;
713 case OPTION_GC_SECTIONS:
714 command_line.gc_sections = true;
715 break;
716 case OPTION_HELP:
717 help ();
718 xexit (0);
719 break;
720 case 'L':
721 ldfile_add_library_path (optarg, true);
722 break;
723 case 'l':
724 lang_add_input_file (optarg, lang_input_file_is_l_enum,
725 (char *) NULL);
726 break;
727 case 'M':
728 config.map_filename = "-";
729 break;
730 case 'm':
731 /* Ignore. Was handled in a pre-parse. */
732 break;
733 case OPTION_MAP:
734 config.map_filename = optarg;
735 break;
736 case 'N':
737 config.text_read_only = false;
738 config.magic_demand_paged = false;
739 config.dynamic_link = false;
740 break;
741 case 'n':
742 config.magic_demand_paged = false;
743 config.dynamic_link = false;
744 break;
745 case OPTION_NO_DEMANGLE:
746 demangling = false;
747 break;
748 case OPTION_NO_GC_SECTIONS:
749 command_line.gc_sections = false;
750 break;
751 case OPTION_NO_KEEP_MEMORY:
752 link_info.keep_memory = false;
753 break;
754 case OPTION_NO_UNDEFINED:
755 link_info.no_undefined = true;
756 break;
b79e8c78
NC
757 case OPTION_ALLOW_SHLIB_UNDEFINED:
758 link_info.allow_shlib_undefined = true;
759 break;
252b5132
RH
760 case OPTION_NO_WARN_MISMATCH:
761 command_line.warn_mismatch = false;
762 break;
763 case OPTION_NOINHIBIT_EXEC:
764 force_make_executable = true;
765 break;
766 case OPTION_NO_WHOLE_ARCHIVE:
767 whole_archive = false;
768 break;
769 case 'O':
770 /* FIXME "-O<non-digits> <value>" used to set the address of
771 section <non-digits>. Was this for compatibility with
772 something, or can we create a new option to do that
773 (with a syntax similar to -defsym)?
774 getopt can't handle two args to an option without kludges. */
775
776 /* Enable optimizations of output files. */
777 link_info.optimize = strtoul (optarg, NULL, 0) ? true : false;
778 break;
779 case 'o':
5cc18311 780 lang_add_output (optarg, 0);
252b5132
RH
781 break;
782 case OPTION_OFORMAT:
783 lang_add_output_format (optarg, (char *) NULL, (char *) NULL, 0);
784 break;
a712da20
NC
785 case 'q':
786 link_info.emitrelocations = true;
787 break;
8c5ff972 788 case 'i':
252b5132
RH
789 case 'r':
790 link_info.relocateable = true;
791 config.build_constructors = false;
792 config.magic_demand_paged = false;
793 config.text_read_only = false;
794 config.dynamic_link = false;
795 break;
796 case 'R':
797 /* The GNU linker traditionally uses -R to mean to include
798 only the symbols from a file. The Solaris linker uses -R
799 to set the path used by the runtime linker to find
800 libraries. This is the GNU linker -rpath argument. We
801 try to support both simultaneously by checking the file
802 named. If it is a directory, rather than a regular file,
803 we assume -rpath was meant. */
804 {
805 struct stat s;
806
807 if (stat (optarg, &s) >= 0
808 && ! S_ISDIR (s.st_mode))
809 {
810 lang_add_input_file (optarg,
811 lang_input_file_is_symbols_only_enum,
812 (char *) NULL);
813 break;
814 }
815 }
816 /* Fall through. */
817 case OPTION_RPATH:
818 if (command_line.rpath == NULL)
819 command_line.rpath = buystring (optarg);
820 else
821 {
822 size_t rpath_len = strlen (command_line.rpath);
823 size_t optarg_len = strlen (optarg);
824 char *buf;
825 char *cp = command_line.rpath;
826
827 /* First see whether OPTARG is already in the path. */
828 do
829 {
830 size_t idx = 0;
831 while (optarg[idx] != '\0' && optarg[idx] == cp[idx])
832 ++idx;
833 if (optarg[idx] == '\0'
834 && (cp[idx] == '\0' || cp[idx] == ':'))
835 /* We found it. */
836 break;
837
838 /* Not yet found. */
839 cp = strchr (cp, ':');
840 if (cp != NULL)
841 ++cp;
842 }
843 while (cp != NULL);
844
845 if (cp == NULL)
846 {
847 buf = xmalloc (rpath_len + optarg_len + 2);
848 sprintf (buf, "%s:%s", command_line.rpath, optarg);
849 free (command_line.rpath);
850 command_line.rpath = buf;
851 }
852 }
853 break;
854 case OPTION_RPATH_LINK:
855 if (command_line.rpath_link == NULL)
856 command_line.rpath_link = buystring (optarg);
857 else
858 {
859 char *buf;
860
861 buf = xmalloc (strlen (command_line.rpath_link)
862 + strlen (optarg)
863 + 2);
864 sprintf (buf, "%s:%s", command_line.rpath_link, optarg);
865 free (command_line.rpath_link);
866 command_line.rpath_link = buf;
867 }
868 break;
869 case OPTION_RELAX:
870 command_line.relax = true;
871 break;
872 case OPTION_RETAIN_SYMBOLS_FILE:
873 add_keepsyms_file (optarg);
874 break;
875 case 'S':
876 link_info.strip = strip_debugger;
877 break;
878 case 's':
879 link_info.strip = strip_all;
880 break;
881 case OPTION_SHARED:
882 if (config.has_shared)
883 link_info.shared = true;
884 else
885 einfo (_("%P%F: -shared not supported\n"));
886 break;
887 case 'h': /* Used on Solaris. */
888 case OPTION_SONAME:
889 command_line.soname = optarg;
890 break;
891 case OPTION_SORT_COMMON:
892 config.sort_common = true;
893 break;
894 case OPTION_STATS:
895 config.stats = true;
896 break;
897 case OPTION_SYMBOLIC:
898 link_info.symbolic = true;
899 break;
900 case 't':
901 trace_files = true;
902 break;
903 case 'T':
904 ldfile_open_command_file (optarg);
905 parser_input = input_script;
906 yyparse ();
907 break;
176355da
NC
908 case OPTION_SECTION_START:
909 {
910 char *optarg2;
227aeb07
AM
911 char *sec_name;
912 int len;
176355da
NC
913
914 /* Check for <something>=<somthing>... */
915 optarg2 = strchr (optarg, '=');
916 if (optarg2 == NULL)
917 {
918 fprintf (stderr,
919 _("%s: Invalid argument to option \"--section-start\"\n"),
920 program_name);
921 xexit (1);
922 }
923
e47d05ad 924 optarg2++;
5cc18311 925
176355da
NC
926 /* So far so good. Are all the args present? */
927 if ((*optarg == '\0') || (*optarg2 == '\0'))
928 {
929 fprintf (stderr,
930 _("%s: Missing argument(s) to option \"--section-start\"\n"),
931 program_name);
932 xexit (1);
933 }
934
227aeb07
AM
935 /* We must copy the section name as set_section_start
936 doesn't do it for us. */
937 len = optarg2 - optarg;
938 sec_name = xmalloc (len);
939 memcpy (sec_name, optarg, len - 1);
940 sec_name[len - 1] = 0;
176355da
NC
941
942 /* Then set it... */
227aeb07 943 set_section_start (sec_name, optarg2);
176355da
NC
944 }
945 break;
ea20a7da
CC
946 case OPTION_TARGET_HELP:
947 /* Mention any target specific options. */
948 ldemul_list_emulation_options (stdout);
949 exit (0);
252b5132
RH
950 case OPTION_TBSS:
951 set_section_start (".bss", optarg);
952 break;
953 case OPTION_TDATA:
954 set_section_start (".data", optarg);
955 break;
956 case OPTION_TTEXT:
957 set_section_start (".text", optarg);
958 break;
959 case OPTION_TRADITIONAL_FORMAT:
960 link_info.traditional_format = true;
961 break;
962 case OPTION_TASK_LINK:
963 link_info.task_link = true;
964 /* Fall through - do an implied -r option. */
965 case OPTION_UR:
966 link_info.relocateable = true;
967 config.build_constructors = true;
968 config.magic_demand_paged = false;
969 config.text_read_only = false;
970 config.dynamic_link = false;
971 break;
972 case 'u':
973 ldlang_add_undef (optarg);
974 break;
a854a4a7 975 case OPTION_UNIQUE:
577a0623
AM
976 if (optarg != NULL)
977 lang_add_unique (optarg);
978 else
979 config.unique_orphan_sections = true;
a854a4a7 980 break;
252b5132
RH
981 case OPTION_VERBOSE:
982 ldversion (1);
983 version_printed = true;
984 trace_file_tries = true;
985 break;
986 case 'v':
987 ldversion (0);
988 version_printed = true;
989 break;
990 case 'V':
991 ldversion (1);
992 version_printed = true;
993 break;
994 case OPTION_VERSION:
995 /* This output is intended to follow the GNU standards document. */
996 printf ("GNU ld %s\n", ld_program_version);
d0398d6a 997 printf (_("Copyright 2001 Free Software Foundation, Inc.\n"));
252b5132
RH
998 printf (_("\
999This program is free software; you may redistribute it under the terms of\n\
1000the GNU General Public License. This program has absolutely no warranty.\n"));
1001 {
1002 ld_emulation_xfer_type **ptr = ld_emulations;
5cc18311 1003
252b5132 1004 printf (_(" Supported emulations:\n"));
5cc18311 1005 while (*ptr)
252b5132
RH
1006 {
1007 printf (" %s\n", (*ptr)->emulation_name);
1008 ptr++;
1009 }
1010 }
1011 xexit (0);
1012 break;
1013 case OPTION_VERSION_SCRIPT:
1014 /* This option indicates a small script that only specifies
1015 version information. Read it, but don't assume that
1016 we've seen a linker script. */
1017 {
1018 boolean hold_had_script;
1019
1020 hold_had_script = had_script;
1021 ldfile_open_command_file (optarg);
1022 had_script = hold_had_script;
1023 parser_input = input_version_script;
1024 yyparse ();
1025 }
1026 break;
1027 case OPTION_VERSION_EXPORTS_SECTION:
1028 /* This option records a version symbol to be applied to the
1029 symbols listed for export to be found in the object files
1030 .exports sections. */
1031 command_line.version_exports_section = optarg;
1032 break;
1033 case OPTION_WARN_COMMON:
1034 config.warn_common = true;
1035 break;
1036 case OPTION_WARN_CONSTRUCTORS:
1037 config.warn_constructors = true;
1038 break;
7ce691ae
C
1039 case OPTION_WARN_FATAL:
1040 config.fatal_warnings = true;
1041 break;
252b5132
RH
1042 case OPTION_WARN_MULTIPLE_GP:
1043 config.warn_multiple_gp = true;
1044 break;
1045 case OPTION_WARN_ONCE:
1046 config.warn_once = true;
1047 break;
1048 case OPTION_WARN_SECTION_ALIGN:
1049 config.warn_section_align = true;
1050 break;
1051 case OPTION_WHOLE_ARCHIVE:
1052 whole_archive = true;
1053 break;
1054 case OPTION_WRAP:
1055 add_wrap (optarg);
1056 break;
f5fa8ca2
JJ
1057 case OPTION_DISCARD_NONE:
1058 link_info.discard = discard_none;
1059 break;
252b5132
RH
1060 case 'X':
1061 link_info.discard = discard_l;
1062 break;
1063 case 'x':
1064 link_info.discard = discard_all;
1065 break;
1066 case 'Y':
1067 if (strncmp (optarg, "P,", 2) == 0)
1068 optarg += 2;
1069 default_dirlist = xstrdup (optarg);
1070 break;
1071 case 'y':
1072 add_ysym (optarg);
1073 break;
252b5132 1074 case OPTION_SPLIT_BY_RELOC:
a854a4a7
AM
1075 if (optarg != NULL)
1076 config.split_by_reloc = strtoul (optarg, NULL, 0);
1077 else
1078 config.split_by_reloc = 32768;
5cc18311 1079 break;
252b5132 1080 case OPTION_SPLIT_BY_FILE:
a854a4a7
AM
1081 if (optarg != NULL)
1082 config.split_by_file = bfd_scan_vma (optarg, NULL, 0);
1083 else
1084 config.split_by_file = 1;
5cc18311 1085 break;
252b5132
RH
1086 case OPTION_CHECK_SECTIONS:
1087 command_line.check_section_addresses = true;
1088 break;
1089 case OPTION_NO_CHECK_SECTIONS:
1090 command_line.check_section_addresses = false;
1091 break;
1092 case '(':
1093 if (ingroup)
1094 {
1095 fprintf (stderr,
1096 _("%s: may not nest groups (--help for usage)\n"),
1097 program_name);
1098 xexit (1);
1099 }
1100 lang_enter_group ();
1101 ingroup = 1;
1102 break;
1103 case ')':
1104 if (! ingroup)
1105 {
1106 fprintf (stderr,
1107 _("%s: group ended before it began (--help for usage)\n"),
1108 program_name);
1109 xexit (1);
1110 }
1111 lang_leave_group ();
1112 ingroup = 0;
1113 break;
e47d05ad
KH
1114 case OPTION_MPC860C0:
1115 link_info.mpc860c0 = 20; /* default value (in bytes) */
1116 if (optarg)
1117 {
1118 unsigned words;
252b5132 1119
e47d05ad
KH
1120 words = is_num (optarg, 1, 10, 0);
1121 if (words == 0)
1122 {
1123 fprintf (stderr,
3d9f6277
ILT
1124 _("%s: Invalid argument to option \"mpc860c0\"\n"),
1125 program_name);
e47d05ad
KH
1126 xexit (1);
1127 }
1128 link_info.mpc860c0 = words * 4; /* convert words to bytes */
1129 }
1130 command_line.relax = true;
1131 break;
3dbf70a2
MM
1132
1133 case OPTION_INIT:
1134 link_info.init_function = optarg;
1135 break;
5cc18311 1136
3dbf70a2
MM
1137 case OPTION_FINI:
1138 link_info.fini_function = optarg;
1139 break;
252b5132
RH
1140 }
1141 }
1142
1143 if (ingroup)
1144 lang_leave_group ();
1145
1146 if (default_dirlist != NULL)
1147 set_default_dirlist (default_dirlist);
1148
1149}
1150
1151/* Add the (colon-separated) elements of DIRLIST_PTR to the
1152 library search path. */
1153
1154static void
1155set_default_dirlist (dirlist_ptr)
1156 char *dirlist_ptr;
1157{
1158 char *p;
1159
1160 while (1)
1161 {
1162 p = strchr (dirlist_ptr, PATH_SEPARATOR);
1163 if (p != NULL)
1164 *p = '\0';
1165 if (*dirlist_ptr != '\0')
1166 ldfile_add_library_path (dirlist_ptr, true);
1167 if (p == NULL)
1168 break;
1169 dirlist_ptr = p + 1;
1170 }
1171}
1172
1173static void
1174set_section_start (sect, valstr)
1175 char *sect, *valstr;
1176{
93697284
AM
1177 const char *end;
1178 bfd_vma val = bfd_scan_vma (valstr, &end, 16);
252b5132
RH
1179 if (*end)
1180 einfo (_("%P%F: invalid hex number `%s'\n"), valstr);
1181 lang_section_start (sect, exp_intop (val));
1182}
1183\f
1184/* Print help messages for the options. */
1185
1186static void
1187help ()
1188{
e4897a32 1189 unsigned i;
252b5132
RH
1190 const char **targets, **pp;
1191
1192 printf (_("Usage: %s [options] file...\n"), program_name);
1193
1194 printf (_("Options:\n"));
1195 for (i = 0; i < OPTION_COUNT; i++)
1196 {
1197 if (ld_options[i].doc != NULL)
1198 {
1199 boolean comma;
1200 int len;
e4897a32 1201 unsigned j;
252b5132
RH
1202
1203 printf (" ");
1204
1205 comma = false;
1206 len = 2;
1207
1208 j = i;
1209 do
1210 {
1211 if (ld_options[j].shortopt != '\0'
1212 && ld_options[j].control != NO_HELP)
1213 {
1214 printf ("%s-%c", comma ? ", " : "", ld_options[j].shortopt);
1215 len += (comma ? 2 : 0) + 2;
1216 if (ld_options[j].arg != NULL)
1217 {
1218 if (ld_options[j].opt.has_arg != optional_argument)
1219 {
1220 printf (" ");
1221 ++len;
1222 }
1223 printf ("%s", _(ld_options[j].arg));
1224 len += strlen (_(ld_options[j].arg));
1225 }
1226 comma = true;
1227 }
1228 ++j;
1229 }
1230 while (j < OPTION_COUNT && ld_options[j].doc == NULL);
1231
1232 j = i;
1233 do
1234 {
1235 if (ld_options[j].opt.name != NULL
1236 && ld_options[j].control != NO_HELP)
1237 {
e4897a32
NC
1238 int two_dashes =
1239 (ld_options[j].control == TWO_DASHES
1240 || ld_options[j].control == EXACTLY_TWO_DASHES);
1241
252b5132
RH
1242 printf ("%s-%s%s",
1243 comma ? ", " : "",
e4897a32 1244 two_dashes ? "-" : "",
252b5132
RH
1245 ld_options[j].opt.name);
1246 len += ((comma ? 2 : 0)
1247 + 1
e4897a32 1248 + (two_dashes ? 1 : 0)
252b5132
RH
1249 + strlen (ld_options[j].opt.name));
1250 if (ld_options[j].arg != NULL)
1251 {
1252 printf (" %s", _(ld_options[j].arg));
1253 len += 1 + strlen (_(ld_options[j].arg));
1254 }
1255 comma = true;
1256 }
1257 ++j;
1258 }
1259 while (j < OPTION_COUNT && ld_options[j].doc == NULL);
1260
1261 if (len >= 30)
1262 {
1263 printf ("\n");
1264 len = 0;
1265 }
1266
1267 for (; len < 30; len++)
1268 putchar (' ');
1269
1270 printf ("%s\n", _(ld_options[i].doc));
1271 }
1272 }
1273
f75692fe
NC
1274 /* Note: Various tools (such as libtool) depend upon the
1275 format of the listings below - do not change them. */
252b5132 1276 /* xgettext:c-format */
f75692fe 1277 printf (_("%s: supported targets:"), program_name);
252b5132
RH
1278 targets = bfd_target_list ();
1279 for (pp = targets; *pp != NULL; pp++)
1280 printf (" %s", *pp);
1281 free (targets);
1282 printf ("\n");
1283
1284 /* xgettext:c-format */
f75692fe 1285 printf (_("%s: supported emulations: "), program_name);
252b5132
RH
1286 ldemul_list_emulations (stdout);
1287 printf ("\n");
1288
1289 /* xgettext:c-format */
1290 printf (_("%s: emulation specific options:\n"), program_name);
1291 ldemul_list_emulation_options (stdout);
1292 printf ("\n");
c20f4f8c 1293
8ad3436c 1294 printf (_("Report bugs to %s\n"), REPORT_BUGS_TO);
252b5132 1295}