Replace "if (x) free (x)" with "free (x)", ld
[deliverable/binutils-gdb.git] / ld / lexsup.c
1 /* Parse options for the GNU linker.
2 Copyright (C) 1991-2020 Free Software Foundation, Inc.
3
4 This file is part of the GNU Binutils.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
20
21 #include "sysdep.h"
22 #include "bfd.h"
23 #include "bfdver.h"
24 #include "libiberty.h"
25 #include <stdio.h>
26 #include <string.h>
27 #include "safe-ctype.h"
28 #include "getopt.h"
29 #include "bfdlink.h"
30 #include "ctf-api.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 #ifdef ENABLE_PLUGINS
43 #include "plugin.h"
44 #endif /* ENABLE_PLUGINS */
45
46 #ifndef PATH_SEPARATOR
47 #if defined (__MSDOS__) || (defined (_WIN32) && ! defined (__CYGWIN32__))
48 #define PATH_SEPARATOR ';'
49 #else
50 #define PATH_SEPARATOR ':'
51 #endif
52 #endif
53
54 /* Somewhere above, sys/stat.h got included . . . . */
55 #if !defined(S_ISDIR) && defined(S_IFDIR)
56 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
57 #endif
58
59 static void set_default_dirlist (char *);
60 static void set_section_start (char *, char *);
61 static void set_segment_start (const char *, char *);
62 static void help (void);
63
64 /* The long options. This structure is used for both the option
65 parsing and the help text. */
66
67 enum control_enum {
68 /* Use one dash before long option name. */
69 ONE_DASH = 1,
70 /* Use two dashes before long option name. */
71 TWO_DASHES = 2,
72 /* Only accept two dashes before the long option name.
73 This is an overloading of the use of this enum, since originally it
74 was only intended to tell the --help display function how to display
75 the long option name. This feature was added in order to resolve
76 the confusion about the -omagic command line switch. Is it setting
77 the output file name to "magic" or is it setting the NMAGIC flag on
78 the output ? It has been decided that it is setting the output file
79 name, and that if you want to set the NMAGIC flag you should use -N
80 or --omagic. */
81 EXACTLY_TWO_DASHES,
82 /* Don't mention this option in --help output. */
83 NO_HELP
84 };
85
86 struct ld_option
87 {
88 /* The long option information. */
89 struct option opt;
90 /* The short option with the same meaning ('\0' if none). */
91 char shortopt;
92 /* The name of the argument (NULL if none). */
93 const char *arg;
94 /* The documentation string. If this is NULL, this is a synonym for
95 the previous option. */
96 const char *doc;
97 enum control_enum control;
98 };
99
100 static const struct ld_option ld_options[] =
101 {
102 { {NULL, required_argument, NULL, '\0'},
103 'a', N_("KEYWORD"), N_("Shared library control for HP/UX compatibility"),
104 ONE_DASH },
105 { {"architecture", required_argument, NULL, 'A'},
106 'A', N_("ARCH"), N_("Set architecture") , TWO_DASHES },
107 { {"format", required_argument, NULL, 'b'},
108 'b', N_("TARGET"), N_("Specify target for following input files"),
109 TWO_DASHES },
110 { {"mri-script", required_argument, NULL, 'c'},
111 'c', N_("FILE"), N_("Read MRI format linker script"), TWO_DASHES },
112 { {"dc", no_argument, NULL, 'd'},
113 'd', NULL, N_("Force common symbols to be defined"), ONE_DASH },
114 { {"dp", no_argument, NULL, 'd'},
115 '\0', NULL, NULL, ONE_DASH },
116 { {"force-group-allocation", no_argument, NULL,
117 OPTION_FORCE_GROUP_ALLOCATION},
118 '\0', NULL, N_("Force group members out of groups"), TWO_DASHES },
119 { {"entry", required_argument, NULL, 'e'},
120 'e', N_("ADDRESS"), N_("Set start address"), TWO_DASHES },
121 { {"export-dynamic", no_argument, NULL, OPTION_EXPORT_DYNAMIC},
122 'E', NULL, N_("Export all dynamic symbols"), TWO_DASHES },
123 { {"no-export-dynamic", no_argument, NULL, OPTION_NO_EXPORT_DYNAMIC},
124 '\0', NULL, N_("Undo the effect of --export-dynamic"), TWO_DASHES },
125 { {"enable-non-contiguous-regions", no_argument, NULL, OPTION_NON_CONTIGUOUS_REGIONS},
126 '\0', NULL, N_("Enable support of non-contiguous memory regions"), TWO_DASHES },
127 { {"enable-non-contiguous-regions-warnings", no_argument, NULL, OPTION_NON_CONTIGUOUS_REGIONS_WARNINGS},
128 '\0', NULL, N_("Enable warnings when --enable-non-contiguous-regions may cause unexpected behaviour"), TWO_DASHES },
129 { {"EB", no_argument, NULL, OPTION_EB},
130 '\0', NULL, N_("Link big-endian objects"), ONE_DASH },
131 { {"EL", no_argument, NULL, OPTION_EL},
132 '\0', NULL, N_("Link little-endian objects"), ONE_DASH },
133 { {"auxiliary", required_argument, NULL, 'f'},
134 'f', N_("SHLIB"), N_("Auxiliary filter for shared object symbol table"),
135 TWO_DASHES },
136 { {"filter", required_argument, NULL, 'F'},
137 'F', N_("SHLIB"), N_("Filter for shared object symbol table"),
138 TWO_DASHES },
139 { {NULL, no_argument, NULL, '\0'},
140 'g', NULL, N_("Ignored"), ONE_DASH },
141 { {"gpsize", required_argument, NULL, 'G'},
142 'G', N_("SIZE"), N_("Small data size (if no size, same as --shared)"),
143 TWO_DASHES },
144 { {"soname", required_argument, NULL, OPTION_SONAME},
145 'h', N_("FILENAME"), N_("Set internal name of shared library"), ONE_DASH },
146 { {"dynamic-linker", required_argument, NULL, OPTION_DYNAMIC_LINKER},
147 'I', N_("PROGRAM"), N_("Set PROGRAM as the dynamic linker to use"),
148 TWO_DASHES },
149 { {"no-dynamic-linker", no_argument, NULL, OPTION_NO_DYNAMIC_LINKER},
150 '\0', NULL, N_("Produce an executable with no program interpreter header"),
151 TWO_DASHES },
152 { {"library", required_argument, NULL, 'l'},
153 'l', N_("LIBNAME"), N_("Search for library LIBNAME"), TWO_DASHES },
154 { {"library-path", required_argument, NULL, 'L'},
155 'L', N_("DIRECTORY"), N_("Add DIRECTORY to library search path"),
156 TWO_DASHES },
157 { {"sysroot=<DIRECTORY>", required_argument, NULL, OPTION_SYSROOT},
158 '\0', NULL, N_("Override the default sysroot location"), TWO_DASHES },
159 { {NULL, required_argument, NULL, '\0'},
160 'm', N_("EMULATION"), N_("Set emulation"), ONE_DASH },
161 { {"print-map", no_argument, NULL, 'M'},
162 'M', NULL, N_("Print map file on standard output"), TWO_DASHES },
163 { {"nmagic", no_argument, NULL, 'n'},
164 'n', NULL, N_("Do not page align data"), TWO_DASHES },
165 { {"omagic", no_argument, NULL, 'N'},
166 'N', NULL, N_("Do not page align data, do not make text readonly"),
167 EXACTLY_TWO_DASHES },
168 { {"no-omagic", no_argument, NULL, OPTION_NO_OMAGIC},
169 '\0', NULL, N_("Page align data, make text readonly"),
170 EXACTLY_TWO_DASHES },
171 { {"output", required_argument, NULL, 'o'},
172 'o', N_("FILE"), N_("Set output file name"), EXACTLY_TWO_DASHES },
173 { {NULL, required_argument, NULL, '\0'},
174 'O', NULL, N_("Optimize output file"), ONE_DASH },
175 { {"out-implib", required_argument, NULL, OPTION_OUT_IMPLIB},
176 '\0', N_("FILE"), N_("Generate import library"), TWO_DASHES },
177 #ifdef ENABLE_PLUGINS
178 { {"plugin", required_argument, NULL, OPTION_PLUGIN},
179 '\0', N_("PLUGIN"), N_("Load named plugin"), ONE_DASH },
180 { {"plugin-opt", required_argument, NULL, OPTION_PLUGIN_OPT},
181 '\0', N_("ARG"), N_("Send arg to last-loaded plugin"), ONE_DASH },
182 { {"flto", optional_argument, NULL, OPTION_IGNORE},
183 '\0', NULL, N_("Ignored for GCC LTO option compatibility"),
184 ONE_DASH },
185 { {"flto-partition=", required_argument, NULL, OPTION_IGNORE},
186 '\0', NULL, N_("Ignored for GCC LTO option compatibility"),
187 ONE_DASH },
188 #endif /* ENABLE_PLUGINS */
189 { {"fuse-ld=", required_argument, NULL, OPTION_IGNORE},
190 '\0', NULL, N_("Ignored for GCC linker option compatibility"),
191 ONE_DASH },
192 { {"map-whole-files", optional_argument, NULL, OPTION_IGNORE},
193 '\0', NULL, N_("Ignored for gold option compatibility"),
194 TWO_DASHES },
195 { {"no-map-whole-files", optional_argument, NULL, OPTION_IGNORE},
196 '\0', NULL, N_("Ignored for gold option compatibility"),
197 TWO_DASHES },
198 { {"Qy", no_argument, NULL, OPTION_IGNORE},
199 '\0', NULL, N_("Ignored for SVR4 compatibility"), ONE_DASH },
200 { {"emit-relocs", no_argument, NULL, 'q'},
201 'q', NULL, "Generate relocations in final output", TWO_DASHES },
202 { {"relocatable", no_argument, NULL, 'r'},
203 'r', NULL, N_("Generate relocatable output"), TWO_DASHES },
204 { {NULL, no_argument, NULL, '\0'},
205 'i', NULL, NULL, ONE_DASH },
206 { {"just-symbols", required_argument, NULL, 'R'},
207 'R', N_("FILE"), N_("Just link symbols (if directory, same as --rpath)"),
208 TWO_DASHES },
209 { {"strip-all", no_argument, NULL, 's'},
210 's', NULL, N_("Strip all symbols"), TWO_DASHES },
211 { {"strip-debug", no_argument, NULL, 'S'},
212 'S', NULL, N_("Strip debugging symbols"), TWO_DASHES },
213 { {"strip-discarded", no_argument, NULL, OPTION_STRIP_DISCARDED},
214 '\0', NULL, N_("Strip symbols in discarded sections"), TWO_DASHES },
215 { {"no-strip-discarded", no_argument, NULL, OPTION_NO_STRIP_DISCARDED},
216 '\0', NULL, N_("Do not strip symbols in discarded sections"), TWO_DASHES },
217 { {"trace", no_argument, NULL, 't'},
218 't', NULL, N_("Trace file opens"), TWO_DASHES },
219 { {"script", required_argument, NULL, 'T'},
220 'T', N_("FILE"), N_("Read linker script"), TWO_DASHES },
221 { {"default-script", required_argument, NULL, OPTION_DEFAULT_SCRIPT},
222 '\0', N_("FILE"), N_("Read default linker script"), TWO_DASHES },
223 { {"dT", required_argument, NULL, OPTION_DEFAULT_SCRIPT},
224 '\0', NULL, NULL, ONE_DASH },
225 { {"undefined", required_argument, NULL, 'u'},
226 'u', N_("SYMBOL"), N_("Start with undefined reference to SYMBOL"),
227 TWO_DASHES },
228 { {"require-defined", required_argument, NULL, OPTION_REQUIRE_DEFINED_SYMBOL},
229 '\0', N_("SYMBOL"), N_("Require SYMBOL be defined in the final output"),
230 TWO_DASHES },
231 { {"unique", optional_argument, NULL, OPTION_UNIQUE},
232 '\0', N_("[=SECTION]"),
233 N_("Don't merge input [SECTION | orphan] sections"), TWO_DASHES },
234 { {"Ur", no_argument, NULL, OPTION_UR},
235 '\0', NULL, N_("Build global constructor/destructor tables"), ONE_DASH },
236 { {"version", no_argument, NULL, OPTION_VERSION},
237 'v', NULL, N_("Print version information"), TWO_DASHES },
238 { {NULL, no_argument, NULL, '\0'},
239 'V', NULL, N_("Print version and emulation information"), ONE_DASH },
240 { {"discard-all", no_argument, NULL, 'x'},
241 'x', NULL, N_("Discard all local symbols"), TWO_DASHES },
242 { {"discard-locals", no_argument, NULL, 'X'},
243 'X', NULL, N_("Discard temporary local symbols (default)"), TWO_DASHES },
244 { {"discard-none", no_argument, NULL, OPTION_DISCARD_NONE},
245 '\0', NULL, N_("Don't discard any local symbols"), TWO_DASHES },
246 { {"trace-symbol", required_argument, NULL, 'y'},
247 'y', N_("SYMBOL"), N_("Trace mentions of SYMBOL"), TWO_DASHES },
248 { {NULL, required_argument, NULL, '\0'},
249 'Y', N_("PATH"), N_("Default search path for Solaris compatibility"),
250 ONE_DASH },
251 { {"start-group", no_argument, NULL, '('},
252 '(', NULL, N_("Start a group"), TWO_DASHES },
253 { {"end-group", no_argument, NULL, ')'},
254 ')', NULL, N_("End a group"), TWO_DASHES },
255 { {"accept-unknown-input-arch", no_argument, NULL,
256 OPTION_ACCEPT_UNKNOWN_INPUT_ARCH},
257 '\0', NULL,
258 N_("Accept input files whose architecture cannot be determined"),
259 TWO_DASHES },
260 { {"no-accept-unknown-input-arch", no_argument, NULL,
261 OPTION_NO_ACCEPT_UNKNOWN_INPUT_ARCH},
262 '\0', NULL, N_("Reject input files whose architecture is unknown"),
263 TWO_DASHES },
264
265 /* The next two options are deprecated because of their similarity to
266 --as-needed and --no-as-needed. They have been replaced by
267 --copy-dt-needed-entries and --no-copy-dt-needed-entries. */
268 { {"add-needed", no_argument, NULL, OPTION_ADD_DT_NEEDED_FOR_DYNAMIC},
269 '\0', NULL, NULL, NO_HELP },
270 { {"no-add-needed", no_argument, NULL, OPTION_NO_ADD_DT_NEEDED_FOR_DYNAMIC},
271 '\0', NULL, NULL, NO_HELP },
272
273 { {"as-needed", no_argument, NULL, OPTION_ADD_DT_NEEDED_FOR_REGULAR},
274 '\0', NULL, N_("Only set DT_NEEDED for following dynamic libs if used"),
275 TWO_DASHES },
276 { {"no-as-needed", no_argument, NULL, OPTION_NO_ADD_DT_NEEDED_FOR_REGULAR},
277 '\0', NULL, N_("Always set DT_NEEDED for dynamic libraries mentioned on\n"
278 " the command line"),
279 TWO_DASHES },
280 { {"assert", required_argument, NULL, OPTION_ASSERT},
281 '\0', N_("KEYWORD"), N_("Ignored for SunOS compatibility"), ONE_DASH },
282 { {"Bdynamic", no_argument, NULL, OPTION_CALL_SHARED},
283 '\0', NULL, N_("Link against shared libraries"), ONE_DASH },
284 { {"dy", no_argument, NULL, OPTION_CALL_SHARED},
285 '\0', NULL, NULL, ONE_DASH },
286 { {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
287 '\0', NULL, NULL, ONE_DASH },
288 { {"Bstatic", no_argument, NULL, OPTION_NON_SHARED},
289 '\0', NULL, N_("Do not link against shared libraries"), ONE_DASH },
290 { {"dn", no_argument, NULL, OPTION_NON_SHARED},
291 '\0', NULL, NULL, ONE_DASH },
292 { {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
293 '\0', NULL, NULL, ONE_DASH },
294 { {"static", no_argument, NULL, OPTION_NON_SHARED},
295 '\0', NULL, NULL, ONE_DASH },
296 { {"Bsymbolic", no_argument, NULL, OPTION_SYMBOLIC},
297 '\0', NULL, N_("Bind global references locally"), ONE_DASH },
298 { {"Bsymbolic-functions", no_argument, NULL, OPTION_SYMBOLIC_FUNCTIONS},
299 '\0', NULL, N_("Bind global function references locally"), ONE_DASH },
300 { {"check-sections", no_argument, NULL, OPTION_CHECK_SECTIONS},
301 '\0', NULL, N_("Check section addresses for overlaps (default)"),
302 TWO_DASHES },
303 { {"no-check-sections", no_argument, NULL, OPTION_NO_CHECK_SECTIONS},
304 '\0', NULL, N_("Do not check section addresses for overlaps"),
305 TWO_DASHES },
306 { {"copy-dt-needed-entries", no_argument, NULL,
307 OPTION_ADD_DT_NEEDED_FOR_DYNAMIC},
308 '\0', NULL, N_("Copy DT_NEEDED links mentioned inside DSOs that follow"),
309 TWO_DASHES },
310 { {"no-copy-dt-needed-entries", no_argument, NULL,
311 OPTION_NO_ADD_DT_NEEDED_FOR_DYNAMIC},
312 '\0', NULL, N_("Do not copy DT_NEEDED links mentioned inside DSOs that follow"),
313 TWO_DASHES },
314
315 { {"cref", no_argument, NULL, OPTION_CREF},
316 '\0', NULL, N_("Output cross reference table"), TWO_DASHES },
317 { {"defsym", required_argument, NULL, OPTION_DEFSYM},
318 '\0', N_("SYMBOL=EXPRESSION"), N_("Define a symbol"), TWO_DASHES },
319 { {"demangle", optional_argument, NULL, OPTION_DEMANGLE},
320 '\0', N_("[=STYLE]"), N_("Demangle symbol names [using STYLE]"),
321 TWO_DASHES },
322 { {"disable-multiple-abs-defs", no_argument, NULL,
323 OPTION_DISABLE_MULTIPLE_DEFS_ABS},
324 '\0', NULL, N_("Do not allow multiple definitions with symbols included\n"
325 " in filename invoked by -R or --just-symbols"),
326 TWO_DASHES},
327 { {"embedded-relocs", no_argument, NULL, OPTION_EMBEDDED_RELOCS},
328 '\0', NULL, N_("Generate embedded relocs"), TWO_DASHES},
329 { {"fatal-warnings", no_argument, NULL, OPTION_WARN_FATAL},
330 '\0', NULL, N_("Treat warnings as errors"),
331 TWO_DASHES },
332 { {"no-fatal-warnings", no_argument, NULL, OPTION_NO_WARN_FATAL},
333 '\0', NULL, N_("Do not treat warnings as errors (default)"),
334 TWO_DASHES },
335 { {"fini", required_argument, NULL, OPTION_FINI},
336 '\0', N_("SYMBOL"), N_("Call SYMBOL at unload-time"), ONE_DASH },
337 { {"force-exe-suffix", no_argument, NULL, OPTION_FORCE_EXE_SUFFIX},
338 '\0', NULL, N_("Force generation of file with .exe suffix"), TWO_DASHES},
339 { {"gc-sections", no_argument, NULL, OPTION_GC_SECTIONS},
340 '\0', NULL, N_("Remove unused sections (on some targets)"),
341 TWO_DASHES },
342 { {"no-gc-sections", no_argument, NULL, OPTION_NO_GC_SECTIONS},
343 '\0', NULL, N_("Don't remove unused sections (default)"),
344 TWO_DASHES },
345 { {"print-gc-sections", no_argument, NULL, OPTION_PRINT_GC_SECTIONS},
346 '\0', NULL, N_("List removed unused sections on stderr"),
347 TWO_DASHES },
348 { {"no-print-gc-sections", no_argument, NULL, OPTION_NO_PRINT_GC_SECTIONS},
349 '\0', NULL, N_("Do not list removed unused sections"),
350 TWO_DASHES },
351 { {"gc-keep-exported", no_argument, NULL, OPTION_GC_KEEP_EXPORTED},
352 '\0', NULL, N_("Keep exported symbols when removing unused sections"),
353 TWO_DASHES },
354 { {"hash-size=<NUMBER>", required_argument, NULL, OPTION_HASH_SIZE},
355 '\0', NULL, N_("Set default hash table size close to <NUMBER>"),
356 TWO_DASHES },
357 { {"help", no_argument, NULL, OPTION_HELP},
358 '\0', NULL, N_("Print option help"), TWO_DASHES },
359 { {"init", required_argument, NULL, OPTION_INIT},
360 '\0', N_("SYMBOL"), N_("Call SYMBOL at load-time"), ONE_DASH },
361 { {"Map", required_argument, NULL, OPTION_MAP},
362 '\0', N_("FILE"), N_("Write a map file"), ONE_DASH },
363 { {"no-define-common", no_argument, NULL, OPTION_NO_DEFINE_COMMON},
364 '\0', NULL, N_("Do not define Common storage"), TWO_DASHES },
365 { {"no-demangle", no_argument, NULL, OPTION_NO_DEMANGLE },
366 '\0', NULL, N_("Do not demangle symbol names"), TWO_DASHES },
367 { {"no-keep-memory", no_argument, NULL, OPTION_NO_KEEP_MEMORY},
368 '\0', NULL, N_("Use less memory and more disk I/O"), TWO_DASHES },
369 { {"no-undefined", no_argument, NULL, OPTION_NO_UNDEFINED},
370 '\0', NULL, N_("Do not allow unresolved references in object files"),
371 TWO_DASHES },
372 { {"allow-shlib-undefined", no_argument, NULL, OPTION_ALLOW_SHLIB_UNDEFINED},
373 '\0', NULL, N_("Allow unresolved references in shared libraries"),
374 TWO_DASHES },
375 { {"no-allow-shlib-undefined", no_argument, NULL,
376 OPTION_NO_ALLOW_SHLIB_UNDEFINED},
377 '\0', NULL, N_("Do not allow unresolved references in shared libs"),
378 TWO_DASHES },
379 { {"allow-multiple-definition", no_argument, NULL,
380 OPTION_ALLOW_MULTIPLE_DEFINITION},
381 '\0', NULL, N_("Allow multiple definitions"), TWO_DASHES },
382 { {"no-undefined-version", no_argument, NULL, OPTION_NO_UNDEFINED_VERSION},
383 '\0', NULL, N_("Disallow undefined version"), TWO_DASHES },
384 { {"default-symver", no_argument, NULL, OPTION_DEFAULT_SYMVER},
385 '\0', NULL, N_("Create default symbol version"), TWO_DASHES },
386 { {"default-imported-symver", no_argument, NULL,
387 OPTION_DEFAULT_IMPORTED_SYMVER},
388 '\0', NULL, N_("Create default symbol version for imported symbols"),
389 TWO_DASHES },
390 { {"no-warn-mismatch", no_argument, NULL, OPTION_NO_WARN_MISMATCH},
391 '\0', NULL, N_("Don't warn about mismatched input files"), TWO_DASHES},
392 { {"no-warn-search-mismatch", no_argument, NULL,
393 OPTION_NO_WARN_SEARCH_MISMATCH},
394 '\0', NULL, N_("Don't warn on finding an incompatible library"),
395 TWO_DASHES},
396 { {"no-whole-archive", no_argument, NULL, OPTION_NO_WHOLE_ARCHIVE},
397 '\0', NULL, N_("Turn off --whole-archive"), TWO_DASHES },
398 { {"noinhibit-exec", no_argument, NULL, OPTION_NOINHIBIT_EXEC},
399 '\0', NULL, N_("Create an output file even if errors occur"),
400 TWO_DASHES },
401 { {"noinhibit_exec", no_argument, NULL, OPTION_NOINHIBIT_EXEC},
402 '\0', NULL, NULL, NO_HELP },
403 { {"nostdlib", no_argument, NULL, OPTION_NOSTDLIB},
404 '\0', NULL, N_("Only use library directories specified on\n"
405 " the command line"),
406 ONE_DASH },
407 { {"oformat", required_argument, NULL, OPTION_OFORMAT},
408 '\0', N_("TARGET"), N_("Specify target of output file"),
409 EXACTLY_TWO_DASHES },
410 { {"print-output-format", no_argument, NULL, OPTION_PRINT_OUTPUT_FORMAT},
411 '\0', NULL, N_("Print default output format"), TWO_DASHES },
412 { {"print-sysroot", no_argument, NULL, OPTION_PRINT_SYSROOT},
413 '\0', NULL, N_("Print current sysroot"), TWO_DASHES },
414 { {"qmagic", no_argument, NULL, OPTION_IGNORE},
415 '\0', NULL, N_("Ignored for Linux compatibility"), ONE_DASH },
416 { {"reduce-memory-overheads", no_argument, NULL,
417 OPTION_REDUCE_MEMORY_OVERHEADS},
418 '\0', NULL, N_("Reduce memory overheads, possibly taking much longer"),
419 TWO_DASHES },
420 { {"relax", no_argument, NULL, OPTION_RELAX},
421 '\0', NULL, N_("Reduce code size by using target specific optimizations"), TWO_DASHES },
422 { {"no-relax", no_argument, NULL, OPTION_NO_RELAX},
423 '\0', NULL, N_("Do not use relaxation techniques to reduce code size"), TWO_DASHES },
424 { {"retain-symbols-file", required_argument, NULL,
425 OPTION_RETAIN_SYMBOLS_FILE},
426 '\0', N_("FILE"), N_("Keep only symbols listed in FILE"), TWO_DASHES },
427 { {"rpath", required_argument, NULL, OPTION_RPATH},
428 '\0', N_("PATH"), N_("Set runtime shared library search path"), ONE_DASH },
429 { {"rpath-link", required_argument, NULL, OPTION_RPATH_LINK},
430 '\0', N_("PATH"), N_("Set link time shared library search path"),
431 ONE_DASH },
432 { {"shared", no_argument, NULL, OPTION_SHARED},
433 '\0', NULL, N_("Create a shared library"), ONE_DASH },
434 { {"Bshareable", no_argument, NULL, OPTION_SHARED }, /* FreeBSD. */
435 '\0', NULL, NULL, ONE_DASH },
436 { {"pie", no_argument, NULL, OPTION_PIE},
437 '\0', NULL, N_("Create a position independent executable"), ONE_DASH },
438 { {"pic-executable", no_argument, NULL, OPTION_PIE},
439 '\0', NULL, NULL, TWO_DASHES },
440 { {"sort-common", optional_argument, NULL, OPTION_SORT_COMMON},
441 '\0', N_("[=ascending|descending]"),
442 N_("Sort common symbols by alignment [in specified order]"),
443 TWO_DASHES },
444 { {"sort_common", no_argument, NULL, OPTION_SORT_COMMON},
445 '\0', NULL, NULL, NO_HELP },
446 { {"sort-section", required_argument, NULL, OPTION_SORT_SECTION},
447 '\0', N_("name|alignment"),
448 N_("Sort sections by name or maximum alignment"), TWO_DASHES },
449 { {"spare-dynamic-tags", required_argument, NULL, OPTION_SPARE_DYNAMIC_TAGS},
450 '\0', N_("COUNT"), N_("How many tags to reserve in .dynamic section"),
451 TWO_DASHES },
452 { {"split-by-file", optional_argument, NULL, OPTION_SPLIT_BY_FILE},
453 '\0', N_("[=SIZE]"), N_("Split output sections every SIZE octets"),
454 TWO_DASHES },
455 { {"split-by-reloc", optional_argument, NULL, OPTION_SPLIT_BY_RELOC},
456 '\0', N_("[=COUNT]"), N_("Split output sections every COUNT relocs"),
457 TWO_DASHES },
458 { {"stats", no_argument, NULL, OPTION_STATS},
459 '\0', NULL, N_("Print memory usage statistics"), TWO_DASHES },
460 { {"target-help", no_argument, NULL, OPTION_TARGET_HELP},
461 '\0', NULL, N_("Display target specific options"), TWO_DASHES },
462 { {"task-link", required_argument, NULL, OPTION_TASK_LINK},
463 '\0', N_("SYMBOL"), N_("Do task level linking"), TWO_DASHES },
464 { {"traditional-format", no_argument, NULL, OPTION_TRADITIONAL_FORMAT},
465 '\0', NULL, N_("Use same format as native linker"), TWO_DASHES },
466 { {"section-start", required_argument, NULL, OPTION_SECTION_START},
467 '\0', N_("SECTION=ADDRESS"), N_("Set address of named section"),
468 TWO_DASHES },
469 { {"Tbss", required_argument, NULL, OPTION_TBSS},
470 '\0', N_("ADDRESS"), N_("Set address of .bss section"), ONE_DASH },
471 { {"Tdata", required_argument, NULL, OPTION_TDATA},
472 '\0', N_("ADDRESS"), N_("Set address of .data section"), ONE_DASH },
473 { {"Ttext", required_argument, NULL, OPTION_TTEXT},
474 '\0', N_("ADDRESS"), N_("Set address of .text section"), ONE_DASH },
475 { {"Ttext-segment", required_argument, NULL, OPTION_TTEXT_SEGMENT},
476 '\0', N_("ADDRESS"), N_("Set address of text segment"), ONE_DASH },
477 { {"Trodata-segment", required_argument, NULL, OPTION_TRODATA_SEGMENT},
478 '\0', N_("ADDRESS"), N_("Set address of rodata segment"), ONE_DASH },
479 { {"Tldata-segment", required_argument, NULL, OPTION_TLDATA_SEGMENT},
480 '\0', N_("ADDRESS"), N_("Set address of ldata segment"), ONE_DASH },
481 { {"unresolved-symbols=<method>", required_argument, NULL,
482 OPTION_UNRESOLVED_SYMBOLS},
483 '\0', NULL, N_("How to handle unresolved symbols. <method> is:\n"
484 " ignore-all, report-all, ignore-in-object-files,\n"
485 " ignore-in-shared-libs"),
486 TWO_DASHES },
487 { {"verbose", optional_argument, NULL, OPTION_VERBOSE},
488 '\0', N_("[=NUMBER]"),
489 N_("Output lots of information during link"), TWO_DASHES },
490 { {"dll-verbose", no_argument, NULL, OPTION_VERBOSE}, /* Linux. */
491 '\0', NULL, NULL, NO_HELP },
492 { {"version-script", required_argument, NULL, OPTION_VERSION_SCRIPT },
493 '\0', N_("FILE"), N_("Read version information script"), TWO_DASHES },
494 { {"version-exports-section", required_argument, NULL,
495 OPTION_VERSION_EXPORTS_SECTION },
496 '\0', N_("SYMBOL"), N_("Take export symbols list from .exports, using\n"
497 " SYMBOL as the version."),
498 TWO_DASHES },
499 { {"dynamic-list-data", no_argument, NULL, OPTION_DYNAMIC_LIST_DATA},
500 '\0', NULL, N_("Add data symbols to dynamic list"), TWO_DASHES },
501 { {"dynamic-list-cpp-new", no_argument, NULL, OPTION_DYNAMIC_LIST_CPP_NEW},
502 '\0', NULL, N_("Use C++ operator new/delete dynamic list"), TWO_DASHES },
503 { {"dynamic-list-cpp-typeinfo", no_argument, NULL, OPTION_DYNAMIC_LIST_CPP_TYPEINFO},
504 '\0', NULL, N_("Use C++ typeinfo dynamic list"), TWO_DASHES },
505 { {"dynamic-list", required_argument, NULL, OPTION_DYNAMIC_LIST},
506 '\0', N_("FILE"), N_("Read dynamic list"), TWO_DASHES },
507 { {"warn-common", no_argument, NULL, OPTION_WARN_COMMON},
508 '\0', NULL, N_("Warn about duplicate common symbols"), TWO_DASHES },
509 { {"warn-constructors", no_argument, NULL, OPTION_WARN_CONSTRUCTORS},
510 '\0', NULL, N_("Warn if global constructors/destructors are seen"),
511 TWO_DASHES },
512 { {"warn-multiple-gp", no_argument, NULL, OPTION_WARN_MULTIPLE_GP},
513 '\0', NULL, N_("Warn if the multiple GP values are used"), TWO_DASHES },
514 { {"warn-once", no_argument, NULL, OPTION_WARN_ONCE},
515 '\0', NULL, N_("Warn only once per undefined symbol"), TWO_DASHES },
516 { {"warn-section-align", no_argument, NULL, OPTION_WARN_SECTION_ALIGN},
517 '\0', NULL, N_("Warn if start of section changes due to alignment"),
518 TWO_DASHES },
519 { {"warn-shared-textrel", no_argument, NULL, OPTION_WARN_SHARED_TEXTREL},
520 '\0', NULL, N_("Warn if shared object has DT_TEXTREL"),
521 TWO_DASHES },
522 { {"warn-alternate-em", no_argument, NULL, OPTION_WARN_ALTERNATE_EM},
523 '\0', NULL, N_("Warn if an object has alternate ELF machine code"),
524 TWO_DASHES },
525 { {"warn-unresolved-symbols", no_argument, NULL,
526 OPTION_WARN_UNRESOLVED_SYMBOLS},
527 '\0', NULL, N_("Report unresolved symbols as warnings"), TWO_DASHES },
528 { {"error-unresolved-symbols", no_argument, NULL,
529 OPTION_ERROR_UNRESOLVED_SYMBOLS},
530 '\0', NULL, N_("Report unresolved symbols as errors"), TWO_DASHES },
531 { {"whole-archive", no_argument, NULL, OPTION_WHOLE_ARCHIVE},
532 '\0', NULL, N_("Include all objects from following archives"),
533 TWO_DASHES },
534 { {"wrap", required_argument, NULL, OPTION_WRAP},
535 '\0', N_("SYMBOL"), N_("Use wrapper functions for SYMBOL"), TWO_DASHES },
536 { {"ignore-unresolved-symbol", required_argument, NULL,
537 OPTION_IGNORE_UNRESOLVED_SYMBOL},
538 '\0', N_("SYMBOL"),
539 N_("Unresolved SYMBOL will not cause an error or warning"), TWO_DASHES },
540 { {"push-state", no_argument, NULL, OPTION_PUSH_STATE},
541 '\0', NULL, N_("Push state of flags governing input file handling"),
542 TWO_DASHES },
543 { {"pop-state", no_argument, NULL, OPTION_POP_STATE},
544 '\0', NULL, N_("Pop state of flags governing input file handling"),
545 TWO_DASHES },
546 { {"print-memory-usage", no_argument, NULL, OPTION_PRINT_MEMORY_USAGE},
547 '\0', NULL, N_("Report target memory usage"), TWO_DASHES },
548 { {"orphan-handling", required_argument, NULL, OPTION_ORPHAN_HANDLING},
549 '\0', N_("=MODE"), N_("Control how orphan sections are handled."),
550 TWO_DASHES },
551 { {"print-map-discarded", no_argument, NULL, OPTION_PRINT_MAP_DISCARDED},
552 '\0', NULL, N_("Show discarded sections in map file output (default)"),
553 TWO_DASHES },
554 { {"no-print-map-discarded", no_argument, NULL, OPTION_NO_PRINT_MAP_DISCARDED},
555 '\0', NULL, N_("Do not show discarded sections in map file output"),
556 TWO_DASHES },
557 };
558
559 #define OPTION_COUNT ARRAY_SIZE (ld_options)
560
561 void
562 parse_args (unsigned argc, char **argv)
563 {
564 unsigned i;
565 int is, il, irl;
566 int ingroup = 0;
567 char *default_dirlist = NULL;
568 char *shortopts;
569 struct option *longopts;
570 struct option *really_longopts;
571 int last_optind;
572 enum symbolic_enum
573 {
574 symbolic_unset = 0,
575 symbolic,
576 symbolic_functions,
577 } opt_symbolic = symbolic_unset;
578 enum dynamic_list_enum
579 {
580 dynamic_list_unset = 0,
581 dynamic_list_data,
582 dynamic_list
583 } opt_dynamic_list = dynamic_list_unset;
584
585 shortopts = (char *) xmalloc (OPTION_COUNT * 3 + 2);
586 longopts = (struct option *)
587 xmalloc (sizeof (*longopts) * (OPTION_COUNT + 1));
588 really_longopts = (struct option *)
589 malloc (sizeof (*really_longopts) * (OPTION_COUNT + 1));
590
591 /* Starting the short option string with '-' is for programs that
592 expect options and other ARGV-elements in any order and that care about
593 the ordering of the two. We describe each non-option ARGV-element
594 as if it were the argument of an option with character code 1. */
595 shortopts[0] = '-';
596 is = 1;
597 il = 0;
598 irl = 0;
599 for (i = 0; i < OPTION_COUNT; i++)
600 {
601 if (ld_options[i].shortopt != '\0')
602 {
603 shortopts[is] = ld_options[i].shortopt;
604 ++is;
605 if (ld_options[i].opt.has_arg == required_argument
606 || ld_options[i].opt.has_arg == optional_argument)
607 {
608 shortopts[is] = ':';
609 ++is;
610 if (ld_options[i].opt.has_arg == optional_argument)
611 {
612 shortopts[is] = ':';
613 ++is;
614 }
615 }
616 }
617 if (ld_options[i].opt.name != NULL)
618 {
619 if (ld_options[i].control == EXACTLY_TWO_DASHES)
620 {
621 really_longopts[irl] = ld_options[i].opt;
622 ++irl;
623 }
624 else
625 {
626 longopts[il] = ld_options[i].opt;
627 ++il;
628 }
629 }
630 }
631 shortopts[is] = '\0';
632 longopts[il].name = NULL;
633 really_longopts[irl].name = NULL;
634
635 ldemul_add_options (is, &shortopts, il, &longopts, irl, &really_longopts);
636
637 /* The -G option is ambiguous on different platforms. Sometimes it
638 specifies the largest data size to put into the small data
639 section. Sometimes it is equivalent to --shared. Unfortunately,
640 the first form takes an argument, while the second does not.
641
642 We need to permit the --shared form because on some platforms,
643 such as Solaris, gcc -shared will pass -G to the linker.
644
645 To permit either usage, we look through the argument list. If we
646 find -G not followed by a number, we change it into --shared.
647 This will work for most normal cases. */
648 for (i = 1; i < argc; i++)
649 if (strcmp (argv[i], "-G") == 0
650 && (i + 1 >= argc
651 || ! ISDIGIT (argv[i + 1][0])))
652 argv[i] = (char *) "--shared";
653
654 /* Because we permit long options to start with a single dash, and
655 we have a --library option, and the -l option is conventionally
656 used with an immediately following argument, we can have bad
657 results if somebody tries to use -l with a library whose name
658 happens to start with "ibrary", as in -li. We avoid problems by
659 simply turning -l into --library. This means that users will
660 have to use two dashes in order to use --library, which is OK
661 since that's how it is documented.
662
663 FIXME: It's possible that this problem can arise for other short
664 options as well, although the user does always have the recourse
665 of adding a space between the option and the argument. */
666 for (i = 1; i < argc; i++)
667 {
668 if (argv[i][0] == '-'
669 && argv[i][1] == 'l'
670 && argv[i][2] != '\0')
671 {
672 char *n;
673
674 n = (char *) xmalloc (strlen (argv[i]) + 20);
675 sprintf (n, "--library=%s", argv[i] + 2);
676 argv[i] = n;
677 }
678 }
679
680 last_optind = -1;
681 while (1)
682 {
683 int longind;
684 int optc;
685 static unsigned int defsym_count;
686
687 /* Using last_optind lets us avoid calling ldemul_parse_args
688 multiple times on a single option, which would lead to
689 confusion in the internal static variables maintained by
690 getopt. This could otherwise happen for an argument like
691 -nx, in which the -n is parsed as a single option, and we
692 loop around to pick up the -x. */
693 if (optind != last_optind)
694 if (ldemul_parse_args (argc, argv))
695 continue;
696
697 /* getopt_long_only is like getopt_long, but '-' as well as '--'
698 can indicate a long option. */
699 opterr = 0;
700 last_optind = optind;
701 optc = getopt_long_only (argc, argv, shortopts, longopts, &longind);
702 if (optc == '?')
703 {
704 optind = last_optind;
705 optc = getopt_long (argc, argv, "-", really_longopts, &longind);
706 }
707
708 if (ldemul_handle_option (optc))
709 continue;
710
711 if (optc == -1)
712 break;
713
714 switch (optc)
715 {
716 case '?':
717 {
718 /* If the last word on the command line is an option that
719 requires an argument, getopt will refuse to recognise it.
720 Try to catch such options here and issue a more helpful
721 error message than just "unrecognized option". */
722 int opt;
723
724 for (opt = ARRAY_SIZE (ld_options); opt--;)
725 if (ld_options[opt].opt.has_arg == required_argument
726 /* FIXME: There are a few short options that do not
727 have long equivalents, but which require arguments.
728 We should handle them too. */
729 && ld_options[opt].opt.name != NULL
730 && strcmp (argv[last_optind] + ld_options[opt].control, ld_options[opt].opt.name) == 0)
731 {
732 einfo (_("%P: %s: missing argument\n"), argv[last_optind]);
733 break;
734 }
735
736 if (opt == -1)
737 einfo (_("%P: unrecognized option '%s'\n"), argv[last_optind]);
738 }
739 /* Fall through. */
740
741 default:
742 einfo (_("%F%P: use the --help option for usage information\n"));
743 break;
744
745 case 1: /* File name. */
746 lang_add_input_file (optarg, lang_input_file_is_file_enum, NULL);
747 break;
748
749 case OPTION_IGNORE:
750 break;
751 case 'a':
752 /* For HP/UX compatibility. Actually -a shared should mean
753 ``use only shared libraries'' but, then, we don't
754 currently support shared libraries on HP/UX anyhow. */
755 if (strcmp (optarg, "archive") == 0)
756 input_flags.dynamic = FALSE;
757 else if (strcmp (optarg, "shared") == 0
758 || strcmp (optarg, "default") == 0)
759 input_flags.dynamic = TRUE;
760 else
761 einfo (_("%F%P: unrecognized -a option `%s'\n"), optarg);
762 break;
763 case OPTION_ASSERT:
764 /* FIXME: We just ignore these, but we should handle them. */
765 if (strcmp (optarg, "definitions") == 0)
766 ;
767 else if (strcmp (optarg, "nodefinitions") == 0)
768 ;
769 else if (strcmp (optarg, "nosymbolic") == 0)
770 ;
771 else if (strcmp (optarg, "pure-text") == 0)
772 ;
773 else
774 einfo (_("%F%P: unrecognized -assert option `%s'\n"), optarg);
775 break;
776 case 'A':
777 ldfile_add_arch (optarg);
778 break;
779 case 'b':
780 lang_add_target (optarg);
781 break;
782 case 'c':
783 ldfile_open_command_file (optarg);
784 parser_input = input_mri_script;
785 yyparse ();
786 break;
787 case OPTION_CALL_SHARED:
788 input_flags.dynamic = TRUE;
789 break;
790 case OPTION_NON_SHARED:
791 input_flags.dynamic = FALSE;
792 break;
793 case OPTION_CREF:
794 command_line.cref = TRUE;
795 link_info.notice_all = TRUE;
796 break;
797 case 'd':
798 command_line.force_common_definition = TRUE;
799 break;
800 case OPTION_FORCE_GROUP_ALLOCATION:
801 command_line.force_group_allocation = TRUE;
802 break;
803 case OPTION_DEFSYM:
804 lex_string = optarg;
805 lex_redirect (optarg, "--defsym", ++defsym_count);
806 parser_input = input_defsym;
807 yyparse ();
808 lex_string = NULL;
809 break;
810 case OPTION_DEMANGLE:
811 demangling = TRUE;
812 if (optarg != NULL)
813 {
814 enum demangling_styles style;
815
816 style = cplus_demangle_name_to_style (optarg);
817 if (style == unknown_demangling)
818 einfo (_("%F%P: unknown demangling style `%s'\n"),
819 optarg);
820
821 cplus_demangle_set_style (style);
822 }
823 break;
824 case 'I': /* Used on Solaris. */
825 case OPTION_DYNAMIC_LINKER:
826 command_line.interpreter = optarg;
827 link_info.nointerp = 0;
828 break;
829 case OPTION_NO_DYNAMIC_LINKER:
830 link_info.nointerp = 1;
831 break;
832 case OPTION_SYSROOT:
833 /* Already handled in ldmain.c. */
834 break;
835 case OPTION_EB:
836 command_line.endian = ENDIAN_BIG;
837 break;
838 case OPTION_EL:
839 command_line.endian = ENDIAN_LITTLE;
840 break;
841 case OPTION_EMBEDDED_RELOCS:
842 command_line.embedded_relocs = TRUE;
843 break;
844 case OPTION_EXPORT_DYNAMIC:
845 case 'E': /* HP/UX compatibility. */
846 link_info.export_dynamic = TRUE;
847 break;
848 case OPTION_NO_EXPORT_DYNAMIC:
849 link_info.export_dynamic = FALSE;
850 break;
851 case OPTION_NON_CONTIGUOUS_REGIONS:
852 link_info.non_contiguous_regions = TRUE;
853 break;
854 case OPTION_NON_CONTIGUOUS_REGIONS_WARNINGS:
855 link_info.non_contiguous_regions_warnings = TRUE;
856 break;
857 case 'e':
858 lang_add_entry (optarg, TRUE);
859 break;
860 case 'f':
861 if (command_line.auxiliary_filters == NULL)
862 {
863 command_line.auxiliary_filters = (char **)
864 xmalloc (2 * sizeof (char *));
865 command_line.auxiliary_filters[0] = optarg;
866 command_line.auxiliary_filters[1] = NULL;
867 }
868 else
869 {
870 int c;
871 char **p;
872
873 c = 0;
874 for (p = command_line.auxiliary_filters; *p != NULL; p++)
875 ++c;
876 command_line.auxiliary_filters = (char **)
877 xrealloc (command_line.auxiliary_filters,
878 (c + 2) * sizeof (char *));
879 command_line.auxiliary_filters[c] = optarg;
880 command_line.auxiliary_filters[c + 1] = NULL;
881 }
882 break;
883 case 'F':
884 command_line.filter_shlib = optarg;
885 break;
886 case OPTION_FORCE_EXE_SUFFIX:
887 command_line.force_exe_suffix = TRUE;
888 break;
889 case 'G':
890 {
891 char *end;
892 g_switch_value = strtoul (optarg, &end, 0);
893 if (*end)
894 einfo (_("%F%P: invalid number `%s'\n"), optarg);
895 }
896 break;
897 case 'g':
898 /* Ignore. */
899 break;
900 case OPTION_GC_SECTIONS:
901 link_info.gc_sections = TRUE;
902 break;
903 case OPTION_PRINT_GC_SECTIONS:
904 link_info.print_gc_sections = TRUE;
905 break;
906 case OPTION_GC_KEEP_EXPORTED:
907 link_info.gc_keep_exported = TRUE;
908 break;
909 case OPTION_HELP:
910 help ();
911 xexit (0);
912 break;
913 case 'L':
914 ldfile_add_library_path (optarg, TRUE);
915 break;
916 case 'l':
917 lang_add_input_file (optarg, lang_input_file_is_l_enum, NULL);
918 break;
919 case 'M':
920 config.map_filename = "-";
921 break;
922 case 'm':
923 /* Ignore. Was handled in a pre-parse. */
924 break;
925 case OPTION_MAP:
926 config.map_filename = optarg;
927 break;
928 case 'N':
929 config.text_read_only = FALSE;
930 config.magic_demand_paged = FALSE;
931 input_flags.dynamic = FALSE;
932 break;
933 case OPTION_NO_OMAGIC:
934 config.text_read_only = TRUE;
935 config.magic_demand_paged = TRUE;
936 /* NB/ Does not set input_flags.dynamic to TRUE.
937 Use --call-shared or -Bdynamic for this. */
938 break;
939 case 'n':
940 config.text_read_only = TRUE;
941 config.magic_demand_paged = FALSE;
942 input_flags.dynamic = FALSE;
943 break;
944 case OPTION_NO_DEFINE_COMMON:
945 link_info.inhibit_common_definition = TRUE;
946 break;
947 case OPTION_NO_DEMANGLE:
948 demangling = FALSE;
949 break;
950 case OPTION_NO_GC_SECTIONS:
951 link_info.gc_sections = FALSE;
952 break;
953 case OPTION_NO_PRINT_GC_SECTIONS:
954 link_info.print_gc_sections = FALSE;
955 break;
956 case OPTION_NO_KEEP_MEMORY:
957 link_info.keep_memory = FALSE;
958 break;
959 case OPTION_NO_UNDEFINED:
960 link_info.unresolved_syms_in_objects = RM_DIAGNOSE;
961 break;
962 case OPTION_ALLOW_SHLIB_UNDEFINED:
963 link_info.unresolved_syms_in_shared_libs = RM_IGNORE;
964 break;
965 case OPTION_NO_ALLOW_SHLIB_UNDEFINED:
966 link_info.unresolved_syms_in_shared_libs = RM_DIAGNOSE;
967 break;
968 case OPTION_UNRESOLVED_SYMBOLS:
969 if (strcmp (optarg, "ignore-all") == 0)
970 {
971 link_info.unresolved_syms_in_objects = RM_IGNORE;
972 link_info.unresolved_syms_in_shared_libs = RM_IGNORE;
973 }
974 else if (strcmp (optarg, "report-all") == 0)
975 {
976 link_info.unresolved_syms_in_objects = RM_DIAGNOSE;
977 link_info.unresolved_syms_in_shared_libs = RM_DIAGNOSE;
978 }
979 else if (strcmp (optarg, "ignore-in-object-files") == 0)
980 {
981 link_info.unresolved_syms_in_objects = RM_IGNORE;
982 link_info.unresolved_syms_in_shared_libs = RM_DIAGNOSE;
983 }
984 else if (strcmp (optarg, "ignore-in-shared-libs") == 0)
985 {
986 link_info.unresolved_syms_in_objects = RM_DIAGNOSE;
987 link_info.unresolved_syms_in_shared_libs = RM_IGNORE;
988 }
989 else
990 einfo (_("%F%P: bad --unresolved-symbols option: %s\n"), optarg);
991 break;
992 case OPTION_WARN_UNRESOLVED_SYMBOLS:
993 link_info.warn_unresolved_syms = TRUE;
994 break;
995 case OPTION_ERROR_UNRESOLVED_SYMBOLS:
996 link_info.warn_unresolved_syms = FALSE;
997 break;
998 case OPTION_ALLOW_MULTIPLE_DEFINITION:
999 link_info.allow_multiple_definition = TRUE;
1000 break;
1001 case OPTION_NO_UNDEFINED_VERSION:
1002 link_info.allow_undefined_version = FALSE;
1003 break;
1004 case OPTION_DEFAULT_SYMVER:
1005 link_info.create_default_symver = TRUE;
1006 break;
1007 case OPTION_DEFAULT_IMPORTED_SYMVER:
1008 link_info.default_imported_symver = TRUE;
1009 break;
1010 case OPTION_NO_WARN_MISMATCH:
1011 command_line.warn_mismatch = FALSE;
1012 break;
1013 case OPTION_NO_WARN_SEARCH_MISMATCH:
1014 command_line.warn_search_mismatch = FALSE;
1015 break;
1016 case OPTION_NOINHIBIT_EXEC:
1017 force_make_executable = TRUE;
1018 break;
1019 case OPTION_NOSTDLIB:
1020 config.only_cmd_line_lib_dirs = TRUE;
1021 break;
1022 case OPTION_NO_WHOLE_ARCHIVE:
1023 input_flags.whole_archive = FALSE;
1024 break;
1025 case 'O':
1026 /* FIXME "-O<non-digits> <value>" used to set the address of
1027 section <non-digits>. Was this for compatibility with
1028 something, or can we create a new option to do that
1029 (with a syntax similar to -defsym)?
1030 getopt can't handle two args to an option without kludges. */
1031
1032 /* Enable optimizations of output files. */
1033 link_info.optimize = strtoul (optarg, NULL, 0) ? TRUE : FALSE;
1034 break;
1035 case 'o':
1036 lang_add_output (optarg, 0);
1037 break;
1038 case OPTION_OFORMAT:
1039 lang_add_output_format (optarg, NULL, NULL, 0);
1040 break;
1041 case OPTION_OUT_IMPLIB:
1042 command_line.out_implib_filename = xstrdup (optarg);
1043 break;
1044 case OPTION_PRINT_SYSROOT:
1045 if (*ld_sysroot)
1046 puts (ld_sysroot);
1047 xexit (0);
1048 break;
1049 case OPTION_PRINT_OUTPUT_FORMAT:
1050 command_line.print_output_format = TRUE;
1051 break;
1052 #ifdef ENABLE_PLUGINS
1053 case OPTION_PLUGIN:
1054 plugin_opt_plugin (optarg);
1055 break;
1056 case OPTION_PLUGIN_OPT:
1057 if (plugin_opt_plugin_arg (optarg))
1058 einfo (_("%F%P: bad -plugin-opt option\n"));
1059 break;
1060 #endif /* ENABLE_PLUGINS */
1061 case 'q':
1062 link_info.emitrelocations = TRUE;
1063 break;
1064 case 'i':
1065 case 'r':
1066 if (optind == last_optind)
1067 /* This can happen if the user put "-rpath,a" on the command
1068 line. (Or something similar. The comma is important).
1069 Getopt becomes confused and thinks that this is a -r option
1070 but it cannot parse the text after the -r so it refuses to
1071 increment the optind counter. Detect this case and issue
1072 an error message here. We cannot just make this a warning,
1073 increment optind, and continue because getopt is too confused
1074 and will seg-fault the next time around. */
1075 einfo(_("%F%P: unrecognised option: %s\n"), argv[optind]);
1076
1077 if (bfd_link_pic (&link_info))
1078 einfo (_("%F%P: -r and %s may not be used together\n"),
1079 bfd_link_dll (&link_info) ? "-shared" : "-pie");
1080
1081 link_info.type = type_relocatable;
1082 config.build_constructors = FALSE;
1083 config.magic_demand_paged = FALSE;
1084 config.text_read_only = FALSE;
1085 input_flags.dynamic = FALSE;
1086 break;
1087 case 'R':
1088 /* The GNU linker traditionally uses -R to mean to include
1089 only the symbols from a file. The Solaris linker uses -R
1090 to set the path used by the runtime linker to find
1091 libraries. This is the GNU linker -rpath argument. We
1092 try to support both simultaneously by checking the file
1093 named. If it is a directory, rather than a regular file,
1094 we assume -rpath was meant. */
1095 {
1096 struct stat s;
1097
1098 if (stat (optarg, &s) >= 0
1099 && ! S_ISDIR (s.st_mode))
1100 {
1101 lang_add_input_file (optarg,
1102 lang_input_file_is_symbols_only_enum,
1103 NULL);
1104 break;
1105 }
1106 }
1107 /* Fall through. */
1108 case OPTION_RPATH:
1109 if (command_line.rpath == NULL)
1110 command_line.rpath = xstrdup (optarg);
1111 else
1112 {
1113 size_t rpath_len = strlen (command_line.rpath);
1114 size_t optarg_len = strlen (optarg);
1115 char *buf;
1116 char *cp = command_line.rpath;
1117
1118 /* First see whether OPTARG is already in the path. */
1119 do
1120 {
1121 if (strncmp (optarg, cp, optarg_len) == 0
1122 && (cp[optarg_len] == 0
1123 || cp[optarg_len] == config.rpath_separator))
1124 /* We found it. */
1125 break;
1126
1127 /* Not yet found. */
1128 cp = strchr (cp, config.rpath_separator);
1129 if (cp != NULL)
1130 ++cp;
1131 }
1132 while (cp != NULL);
1133
1134 if (cp == NULL)
1135 {
1136 buf = (char *) xmalloc (rpath_len + optarg_len + 2);
1137 sprintf (buf, "%s%c%s", command_line.rpath,
1138 config.rpath_separator, optarg);
1139 free (command_line.rpath);
1140 command_line.rpath = buf;
1141 }
1142 }
1143 break;
1144 case OPTION_RPATH_LINK:
1145 if (command_line.rpath_link == NULL)
1146 command_line.rpath_link = xstrdup (optarg);
1147 else
1148 {
1149 char *buf;
1150
1151 buf = (char *) xmalloc (strlen (command_line.rpath_link)
1152 + strlen (optarg)
1153 + 2);
1154 sprintf (buf, "%s%c%s", command_line.rpath_link,
1155 config.rpath_separator, optarg);
1156 free (command_line.rpath_link);
1157 command_line.rpath_link = buf;
1158 }
1159 break;
1160 case OPTION_NO_RELAX:
1161 DISABLE_RELAXATION;
1162 break;
1163 case OPTION_RELAX:
1164 ENABLE_RELAXATION;
1165 break;
1166 case OPTION_RETAIN_SYMBOLS_FILE:
1167 add_keepsyms_file (optarg);
1168 break;
1169 case 'S':
1170 link_info.strip = strip_debugger;
1171 break;
1172 case 's':
1173 link_info.strip = strip_all;
1174 break;
1175 case OPTION_STRIP_DISCARDED:
1176 link_info.strip_discarded = TRUE;
1177 break;
1178 case OPTION_NO_STRIP_DISCARDED:
1179 link_info.strip_discarded = FALSE;
1180 break;
1181 case OPTION_DISABLE_MULTIPLE_DEFS_ABS:
1182 link_info.prohibit_multiple_definition_absolute = TRUE;
1183 break;
1184 case OPTION_SHARED:
1185 if (config.has_shared)
1186 {
1187 if (bfd_link_relocatable (&link_info))
1188 einfo (_("%F%P: -r and %s may not be used together\n"),
1189 "-shared");
1190
1191 link_info.type = type_dll;
1192 /* When creating a shared library, the default
1193 behaviour is to ignore any unresolved references. */
1194 if (link_info.unresolved_syms_in_objects == RM_NOT_YET_SET)
1195 link_info.unresolved_syms_in_objects = RM_IGNORE;
1196 if (link_info.unresolved_syms_in_shared_libs == RM_NOT_YET_SET)
1197 link_info.unresolved_syms_in_shared_libs = RM_IGNORE;
1198 }
1199 else
1200 einfo (_("%F%P: -shared not supported\n"));
1201 break;
1202 case OPTION_PIE:
1203 if (config.has_shared)
1204 {
1205 if (bfd_link_relocatable (&link_info))
1206 einfo (_("%F%P: -r and %s may not be used together\n"), "-pie");
1207
1208 link_info.type = type_pie;
1209 }
1210 else
1211 einfo (_("%F%P: -pie not supported\n"));
1212 break;
1213 case 'h': /* Used on Solaris. */
1214 case OPTION_SONAME:
1215 if (optarg[0] == '\0' && command_line.soname
1216 && command_line.soname[0])
1217 einfo (_("%P: SONAME must not be empty string; keeping previous one\n"));
1218 else
1219 command_line.soname = optarg;
1220 break;
1221 case OPTION_SORT_COMMON:
1222 if (optarg == NULL
1223 || strcmp (optarg, N_("descending")) == 0)
1224 config.sort_common = sort_descending;
1225 else if (strcmp (optarg, N_("ascending")) == 0)
1226 config.sort_common = sort_ascending;
1227 else
1228 einfo (_("%F%P: invalid common section sorting option: %s\n"),
1229 optarg);
1230 break;
1231 case OPTION_SORT_SECTION:
1232 if (strcmp (optarg, N_("name")) == 0)
1233 sort_section = by_name;
1234 else if (strcmp (optarg, N_("alignment")) == 0)
1235 sort_section = by_alignment;
1236 else
1237 einfo (_("%F%P: invalid section sorting option: %s\n"),
1238 optarg);
1239 break;
1240 case OPTION_STATS:
1241 config.stats = TRUE;
1242 break;
1243 case OPTION_SYMBOLIC:
1244 opt_symbolic = symbolic;
1245 break;
1246 case OPTION_SYMBOLIC_FUNCTIONS:
1247 opt_symbolic = symbolic_functions;
1248 break;
1249 case 't':
1250 ++trace_files;
1251 break;
1252 case 'T':
1253 previous_script_handle = saved_script_handle;
1254 ldfile_open_script_file (optarg);
1255 parser_input = input_script;
1256 yyparse ();
1257 previous_script_handle = NULL;
1258 break;
1259 case OPTION_DEFAULT_SCRIPT:
1260 command_line.default_script = optarg;
1261 break;
1262 case OPTION_SECTION_START:
1263 {
1264 char *optarg2;
1265 char *sec_name;
1266 int len;
1267
1268 /* Check for <something>=<somthing>... */
1269 optarg2 = strchr (optarg, '=');
1270 if (optarg2 == NULL)
1271 einfo (_("%F%P: invalid argument to option"
1272 " \"--section-start\"\n"));
1273
1274 optarg2++;
1275
1276 /* So far so good. Are all the args present? */
1277 if ((*optarg == '\0') || (*optarg2 == '\0'))
1278 einfo (_("%F%P: missing argument(s) to option"
1279 " \"--section-start\"\n"));
1280
1281 /* We must copy the section name as set_section_start
1282 doesn't do it for us. */
1283 len = optarg2 - optarg;
1284 sec_name = (char *) xmalloc (len);
1285 memcpy (sec_name, optarg, len - 1);
1286 sec_name[len - 1] = 0;
1287
1288 /* Then set it... */
1289 set_section_start (sec_name, optarg2);
1290 }
1291 break;
1292 case OPTION_TARGET_HELP:
1293 /* Mention any target specific options. */
1294 ldemul_list_emulation_options (stdout);
1295 exit (0);
1296 case OPTION_TBSS:
1297 set_segment_start (".bss", optarg);
1298 break;
1299 case OPTION_TDATA:
1300 set_segment_start (".data", optarg);
1301 break;
1302 case OPTION_TTEXT:
1303 set_segment_start (".text", optarg);
1304 break;
1305 case OPTION_TTEXT_SEGMENT:
1306 set_segment_start (".text-segment", optarg);
1307 break;
1308 case OPTION_TRODATA_SEGMENT:
1309 set_segment_start (".rodata-segment", optarg);
1310 break;
1311 case OPTION_TLDATA_SEGMENT:
1312 set_segment_start (".ldata-segment", optarg);
1313 break;
1314 case OPTION_TRADITIONAL_FORMAT:
1315 link_info.traditional_format = TRUE;
1316 break;
1317 case OPTION_TASK_LINK:
1318 link_info.task_link = TRUE;
1319 /* Fall through. */
1320 case OPTION_UR:
1321 if (bfd_link_pic (&link_info))
1322 einfo (_("%F%P: -r and %s may not be used together\n"),
1323 bfd_link_dll (&link_info) ? "-shared" : "-pie");
1324
1325 link_info.type = type_relocatable;
1326 config.build_constructors = TRUE;
1327 config.magic_demand_paged = FALSE;
1328 config.text_read_only = FALSE;
1329 input_flags.dynamic = FALSE;
1330 break;
1331 case 'u':
1332 ldlang_add_undef (optarg, TRUE);
1333 break;
1334 case OPTION_REQUIRE_DEFINED_SYMBOL:
1335 ldlang_add_require_defined (optarg);
1336 break;
1337 case OPTION_UNIQUE:
1338 if (optarg != NULL)
1339 lang_add_unique (optarg);
1340 else
1341 config.unique_orphan_sections = TRUE;
1342 break;
1343 case OPTION_VERBOSE:
1344 ldversion (1);
1345 version_printed = TRUE;
1346 verbose = TRUE;
1347 overflow_cutoff_limit = -2;
1348 if (optarg != NULL)
1349 {
1350 char *end;
1351 int level ATTRIBUTE_UNUSED = strtoul (optarg, &end, 0);
1352 if (*end)
1353 einfo (_("%F%P: invalid number `%s'\n"), optarg);
1354 #ifdef ENABLE_PLUGINS
1355 report_plugin_symbols = level > 1;
1356 #endif /* ENABLE_PLUGINS */
1357 }
1358 break;
1359 case 'v':
1360 ldversion (0);
1361 version_printed = TRUE;
1362 break;
1363 case 'V':
1364 ldversion (1);
1365 version_printed = TRUE;
1366 break;
1367 case OPTION_VERSION:
1368 ldversion (2);
1369 xexit (0);
1370 break;
1371 case OPTION_VERSION_SCRIPT:
1372 /* This option indicates a small script that only specifies
1373 version information. Read it, but don't assume that
1374 we've seen a linker script. */
1375 {
1376 FILE *hold_script_handle;
1377
1378 hold_script_handle = saved_script_handle;
1379 ldfile_open_command_file (optarg);
1380 saved_script_handle = hold_script_handle;
1381 parser_input = input_version_script;
1382 yyparse ();
1383 }
1384 break;
1385 case OPTION_VERSION_EXPORTS_SECTION:
1386 /* This option records a version symbol to be applied to the
1387 symbols listed for export to be found in the object files
1388 .exports sections. */
1389 command_line.version_exports_section = optarg;
1390 break;
1391 case OPTION_DYNAMIC_LIST_DATA:
1392 opt_dynamic_list = dynamic_list_data;
1393 if (opt_symbolic == symbolic)
1394 opt_symbolic = symbolic_unset;
1395 break;
1396 case OPTION_DYNAMIC_LIST_CPP_TYPEINFO:
1397 lang_append_dynamic_list_cpp_typeinfo ();
1398 if (opt_dynamic_list != dynamic_list_data)
1399 opt_dynamic_list = dynamic_list;
1400 if (opt_symbolic == symbolic)
1401 opt_symbolic = symbolic_unset;
1402 break;
1403 case OPTION_DYNAMIC_LIST_CPP_NEW:
1404 lang_append_dynamic_list_cpp_new ();
1405 if (opt_dynamic_list != dynamic_list_data)
1406 opt_dynamic_list = dynamic_list;
1407 if (opt_symbolic == symbolic)
1408 opt_symbolic = symbolic_unset;
1409 break;
1410 case OPTION_DYNAMIC_LIST:
1411 /* This option indicates a small script that only specifies
1412 a dynamic list. Read it, but don't assume that we've
1413 seen a linker script. */
1414 {
1415 FILE *hold_script_handle;
1416
1417 hold_script_handle = saved_script_handle;
1418 ldfile_open_command_file (optarg);
1419 saved_script_handle = hold_script_handle;
1420 parser_input = input_dynamic_list;
1421 yyparse ();
1422 }
1423 if (opt_dynamic_list != dynamic_list_data)
1424 opt_dynamic_list = dynamic_list;
1425 if (opt_symbolic == symbolic)
1426 opt_symbolic = symbolic_unset;
1427 break;
1428 case OPTION_WARN_COMMON:
1429 config.warn_common = TRUE;
1430 break;
1431 case OPTION_WARN_CONSTRUCTORS:
1432 config.warn_constructors = TRUE;
1433 break;
1434 case OPTION_WARN_FATAL:
1435 config.fatal_warnings = TRUE;
1436 break;
1437 case OPTION_NO_WARN_FATAL:
1438 config.fatal_warnings = FALSE;
1439 break;
1440 case OPTION_WARN_MULTIPLE_GP:
1441 config.warn_multiple_gp = TRUE;
1442 break;
1443 case OPTION_WARN_ONCE:
1444 config.warn_once = TRUE;
1445 break;
1446 case OPTION_WARN_SECTION_ALIGN:
1447 config.warn_section_align = TRUE;
1448 break;
1449 case OPTION_WARN_SHARED_TEXTREL:
1450 link_info.warn_shared_textrel = TRUE;
1451 break;
1452 case OPTION_WARN_ALTERNATE_EM:
1453 link_info.warn_alternate_em = TRUE;
1454 break;
1455 case OPTION_WHOLE_ARCHIVE:
1456 input_flags.whole_archive = TRUE;
1457 break;
1458 case OPTION_ADD_DT_NEEDED_FOR_DYNAMIC:
1459 input_flags.add_DT_NEEDED_for_dynamic = TRUE;
1460 break;
1461 case OPTION_NO_ADD_DT_NEEDED_FOR_DYNAMIC:
1462 input_flags.add_DT_NEEDED_for_dynamic = FALSE;
1463 break;
1464 case OPTION_ADD_DT_NEEDED_FOR_REGULAR:
1465 input_flags.add_DT_NEEDED_for_regular = TRUE;
1466 break;
1467 case OPTION_NO_ADD_DT_NEEDED_FOR_REGULAR:
1468 input_flags.add_DT_NEEDED_for_regular = FALSE;
1469 break;
1470 case OPTION_WRAP:
1471 add_wrap (optarg);
1472 break;
1473 case OPTION_IGNORE_UNRESOLVED_SYMBOL:
1474 add_ignoresym (&link_info, optarg);
1475 break;
1476 case OPTION_DISCARD_NONE:
1477 link_info.discard = discard_none;
1478 break;
1479 case 'X':
1480 link_info.discard = discard_l;
1481 break;
1482 case 'x':
1483 link_info.discard = discard_all;
1484 break;
1485 case 'Y':
1486 if (CONST_STRNEQ (optarg, "P,"))
1487 optarg += 2;
1488 free (default_dirlist);
1489 default_dirlist = xstrdup (optarg);
1490 break;
1491 case 'y':
1492 add_ysym (optarg);
1493 break;
1494 case OPTION_SPARE_DYNAMIC_TAGS:
1495 link_info.spare_dynamic_tags = strtoul (optarg, NULL, 0);
1496 break;
1497 case OPTION_SPLIT_BY_RELOC:
1498 if (optarg != NULL)
1499 config.split_by_reloc = strtoul (optarg, NULL, 0);
1500 else
1501 config.split_by_reloc = 32768;
1502 break;
1503 case OPTION_SPLIT_BY_FILE:
1504 if (optarg != NULL)
1505 config.split_by_file = bfd_scan_vma (optarg, NULL, 0);
1506 else
1507 config.split_by_file = 1;
1508 break;
1509 case OPTION_CHECK_SECTIONS:
1510 command_line.check_section_addresses = 1;
1511 break;
1512 case OPTION_NO_CHECK_SECTIONS:
1513 command_line.check_section_addresses = 0;
1514 break;
1515 case OPTION_ACCEPT_UNKNOWN_INPUT_ARCH:
1516 command_line.accept_unknown_input_arch = TRUE;
1517 break;
1518 case OPTION_NO_ACCEPT_UNKNOWN_INPUT_ARCH:
1519 command_line.accept_unknown_input_arch = FALSE;
1520 break;
1521 case '(':
1522 lang_enter_group ();
1523 ingroup++;
1524 break;
1525 case ')':
1526 if (! ingroup)
1527 einfo (_("%F%P: group ended before it began (--help for usage)\n"));
1528
1529 lang_leave_group ();
1530 ingroup--;
1531 break;
1532
1533 case OPTION_INIT:
1534 link_info.init_function = optarg;
1535 break;
1536
1537 case OPTION_FINI:
1538 link_info.fini_function = optarg;
1539 break;
1540
1541 case OPTION_REDUCE_MEMORY_OVERHEADS:
1542 link_info.reduce_memory_overheads = TRUE;
1543 if (config.hash_table_size == 0)
1544 config.hash_table_size = 1021;
1545 break;
1546
1547 case OPTION_HASH_SIZE:
1548 {
1549 bfd_size_type new_size;
1550
1551 new_size = strtoul (optarg, NULL, 0);
1552 if (new_size)
1553 config.hash_table_size = new_size;
1554 else
1555 einfo (_("%X%P: --hash-size needs a numeric argument\n"));
1556 }
1557 break;
1558
1559 case OPTION_PUSH_STATE:
1560 input_flags.pushed = xmemdup (&input_flags,
1561 sizeof (input_flags),
1562 sizeof (input_flags));
1563 break;
1564
1565 case OPTION_POP_STATE:
1566 if (input_flags.pushed == NULL)
1567 einfo (_("%F%P: no state pushed before popping\n"));
1568 else
1569 {
1570 struct lang_input_statement_flags *oldp = input_flags.pushed;
1571 memcpy (&input_flags, oldp, sizeof (input_flags));
1572 free (oldp);
1573 }
1574 break;
1575
1576 case OPTION_PRINT_MEMORY_USAGE:
1577 command_line.print_memory_usage = TRUE;
1578 break;
1579
1580 case OPTION_ORPHAN_HANDLING:
1581 if (strcasecmp (optarg, "place") == 0)
1582 config.orphan_handling = orphan_handling_place;
1583 else if (strcasecmp (optarg, "warn") == 0)
1584 config.orphan_handling = orphan_handling_warn;
1585 else if (strcasecmp (optarg, "error") == 0)
1586 config.orphan_handling = orphan_handling_error;
1587 else if (strcasecmp (optarg, "discard") == 0)
1588 config.orphan_handling = orphan_handling_discard;
1589 else
1590 einfo (_("%F%P: invalid argument to option"
1591 " \"--orphan-handling\"\n"));
1592 break;
1593
1594 case OPTION_NO_PRINT_MAP_DISCARDED:
1595 config.print_map_discarded = FALSE;
1596 break;
1597
1598 case OPTION_PRINT_MAP_DISCARDED:
1599 config.print_map_discarded = TRUE;
1600 break;
1601 }
1602 }
1603
1604 if (command_line.soname && command_line.soname[0] == '\0')
1605 {
1606 einfo (_("%P: SONAME must not be empty string; ignored\n"));
1607 command_line.soname = NULL;
1608 }
1609
1610 while (ingroup)
1611 {
1612 einfo (_("%P: missing --end-group; added as last command line option\n"));
1613 lang_leave_group ();
1614 ingroup--;
1615 }
1616
1617 if (default_dirlist != NULL)
1618 {
1619 set_default_dirlist (default_dirlist);
1620 free (default_dirlist);
1621 }
1622
1623 if (link_info.unresolved_syms_in_objects == RM_NOT_YET_SET)
1624 /* FIXME: Should we allow emulations a chance to set this ? */
1625 link_info.unresolved_syms_in_objects = RM_DIAGNOSE;
1626
1627 if (link_info.unresolved_syms_in_shared_libs == RM_NOT_YET_SET)
1628 /* FIXME: Should we allow emulations a chance to set this ? */
1629 link_info.unresolved_syms_in_shared_libs = RM_DIAGNOSE;
1630
1631 if (bfd_link_relocatable (&link_info)
1632 && command_line.check_section_addresses < 0)
1633 command_line.check_section_addresses = 0;
1634
1635 /* -Bsymbolic and -Bsymbols-functions are for shared library output. */
1636 if (bfd_link_dll (&link_info))
1637 switch (opt_symbolic)
1638 {
1639 case symbolic_unset:
1640 break;
1641 case symbolic:
1642 link_info.symbolic = TRUE;
1643 if (link_info.dynamic_list)
1644 {
1645 struct bfd_elf_version_expr *ent, *next;
1646 for (ent = link_info.dynamic_list->head.list; ent; ent = next)
1647 {
1648 next = ent->next;
1649 free (ent);
1650 }
1651 free (link_info.dynamic_list);
1652 link_info.dynamic_list = NULL;
1653 }
1654 opt_dynamic_list = dynamic_list_unset;
1655 break;
1656 case symbolic_functions:
1657 opt_dynamic_list = dynamic_list_data;
1658 break;
1659 }
1660
1661 switch (opt_dynamic_list)
1662 {
1663 case dynamic_list_unset:
1664 break;
1665 case dynamic_list_data:
1666 link_info.dynamic_data = TRUE;
1667 /* Fall through. */
1668 case dynamic_list:
1669 link_info.dynamic = TRUE;
1670 break;
1671 }
1672
1673 if (!bfd_link_dll (&link_info))
1674 {
1675 if (command_line.filter_shlib)
1676 einfo (_("%F%P: -F may not be used without -shared\n"));
1677 if (command_line.auxiliary_filters)
1678 einfo (_("%F%P: -f may not be used without -shared\n"));
1679 }
1680
1681 /* Treat ld -r -s as ld -r -S -x (i.e., strip all local symbols). I
1682 don't see how else this can be handled, since in this case we
1683 must preserve all externally visible symbols. */
1684 if (bfd_link_relocatable (&link_info) && link_info.strip == strip_all)
1685 {
1686 link_info.strip = strip_debugger;
1687 if (link_info.discard == discard_sec_merge)
1688 link_info.discard = discard_all;
1689 }
1690 }
1691
1692 /* Add the (colon-separated) elements of DIRLIST_PTR to the
1693 library search path. */
1694
1695 static void
1696 set_default_dirlist (char *dirlist_ptr)
1697 {
1698 char *p;
1699
1700 while (1)
1701 {
1702 p = strchr (dirlist_ptr, PATH_SEPARATOR);
1703 if (p != NULL)
1704 *p = '\0';
1705 if (*dirlist_ptr != '\0')
1706 ldfile_add_library_path (dirlist_ptr, TRUE);
1707 if (p == NULL)
1708 break;
1709 dirlist_ptr = p + 1;
1710 }
1711 }
1712
1713 static void
1714 set_section_start (char *sect, char *valstr)
1715 {
1716 const char *end;
1717 bfd_vma val = bfd_scan_vma (valstr, &end, 16);
1718 if (*end)
1719 einfo (_("%F%P: invalid hex number `%s'\n"), valstr);
1720 lang_section_start (sect, exp_intop (val), NULL);
1721 }
1722
1723 static void
1724 set_segment_start (const char *section, char *valstr)
1725 {
1726 const char *name;
1727 const char *end;
1728 segment_type *seg;
1729
1730 bfd_vma val = bfd_scan_vma (valstr, &end, 16);
1731 if (*end)
1732 einfo (_("%F%P: invalid hex number `%s'\n"), valstr);
1733 /* If we already have an entry for this segment, update the existing
1734 value. */
1735 name = section + 1;
1736 for (seg = segments; seg; seg = seg->next)
1737 if (strcmp (seg->name, name) == 0)
1738 {
1739 seg->value = val;
1740 lang_section_start (section, exp_intop (val), seg);
1741 return;
1742 }
1743 /* There was no existing value so we must create a new segment
1744 entry. */
1745 seg = stat_alloc (sizeof (*seg));
1746 seg->name = name;
1747 seg->value = val;
1748 seg->used = FALSE;
1749 /* Add it to the linked list of segments. */
1750 seg->next = segments;
1751 segments = seg;
1752 /* Historically, -Ttext and friends set the base address of a
1753 particular section. For backwards compatibility, we still do
1754 that. If a SEGMENT_START directive is seen, the section address
1755 assignment will be disabled. */
1756 lang_section_start (section, exp_intop (val), seg);
1757 }
1758
1759 static void
1760 elf_shlib_list_options (FILE *file)
1761 {
1762 fprintf (file, _("\
1763 --audit=AUDITLIB Specify a library to use for auditing\n"));
1764 fprintf (file, _("\
1765 -Bgroup Selects group name lookup rules for DSO\n"));
1766 fprintf (file, _("\
1767 --disable-new-dtags Disable new dynamic tags\n"));
1768 fprintf (file, _("\
1769 --enable-new-dtags Enable new dynamic tags\n"));
1770 fprintf (file, _("\
1771 --eh-frame-hdr Create .eh_frame_hdr section\n"));
1772 fprintf (file, _("\
1773 --no-eh-frame-hdr Do not create .eh_frame_hdr section\n"));
1774 fprintf (file, _("\
1775 --exclude-libs=LIBS Make all symbols in LIBS hidden\n"));
1776 fprintf (file, _("\
1777 --hash-style=STYLE Set hash style to sysv/gnu/both. Default: "));
1778 if (DEFAULT_EMIT_SYSV_HASH)
1779 {
1780 /* Note - these strings are not translated as
1781 they are keywords not descriptive text. */
1782 if (DEFAULT_EMIT_GNU_HASH)
1783 fprintf (file, "both\n");
1784 else
1785 fprintf (file, "sysv\n");
1786 }
1787 else
1788 {
1789 if (DEFAULT_EMIT_GNU_HASH)
1790 fprintf (file, "gnu\n");
1791 else
1792 /* FIXME: Can this happen ? */
1793 fprintf (file, "none\n");
1794 }
1795 fprintf (file, _("\
1796 -P AUDITLIB, --depaudit=AUDITLIB\n" "\
1797 Specify a library to use for auditing dependencies\n"));
1798 fprintf (file, _("\
1799 -z combreloc Merge dynamic relocs into one section and sort\n"));
1800 fprintf (file, _("\
1801 -z nocombreloc Don't merge dynamic relocs into one section\n"));
1802 fprintf (file, _("\
1803 -z global Make symbols in DSO available for subsequently\n\
1804 loaded objects\n"));
1805 fprintf (file, _("\
1806 -z initfirst Mark DSO to be initialized first at runtime\n"));
1807 fprintf (file, _("\
1808 -z interpose Mark object to interpose all DSOs but executable\n"));
1809 fprintf (file, _("\
1810 -z lazy Mark object lazy runtime binding (default)\n"));
1811 fprintf (file, _("\
1812 -z loadfltr Mark object requiring immediate process\n"));
1813 fprintf (file, _("\
1814 -z nocopyreloc Don't create copy relocs\n"));
1815 fprintf (file, _("\
1816 -z nodefaultlib Mark object not to use default search paths\n"));
1817 fprintf (file, _("\
1818 -z nodelete Mark DSO non-deletable at runtime\n"));
1819 fprintf (file, _("\
1820 -z nodlopen Mark DSO not available to dlopen\n"));
1821 fprintf (file, _("\
1822 -z nodump Mark DSO not available to dldump\n"));
1823 fprintf (file, _("\
1824 -z now Mark object non-lazy runtime binding\n"));
1825 fprintf (file, _("\
1826 -z origin Mark object requiring immediate $ORIGIN\n\
1827 processing at runtime\n"));
1828 #if DEFAULT_LD_Z_RELRO
1829 fprintf (file, _("\
1830 -z relro Create RELRO program header (default)\n"));
1831 fprintf (file, _("\
1832 -z norelro Don't create RELRO program header\n"));
1833 #else
1834 fprintf (file, _("\
1835 -z relro Create RELRO program header\n"));
1836 fprintf (file, _("\
1837 -z norelro Don't create RELRO program header (default)\n"));
1838 #endif
1839 #if DEFAULT_LD_Z_SEPARATE_CODE
1840 fprintf (file, _("\
1841 -z separate-code Create separate code program header (default)\n"));
1842 fprintf (file, _("\
1843 -z noseparate-code Don't create separate code program header\n"));
1844 #else
1845 fprintf (file, _("\
1846 -z separate-code Create separate code program header\n"));
1847 fprintf (file, _("\
1848 -z noseparate-code Don't create separate code program header (default)\n"));
1849 #endif
1850 fprintf (file, _("\
1851 -z common Generate common symbols with STT_COMMON type\n"));
1852 fprintf (file, _("\
1853 -z nocommon Generate common symbols with STT_OBJECT type\n"));
1854 fprintf (file, _("\
1855 -z stack-size=SIZE Set size of stack segment\n"));
1856 fprintf (file, _("\
1857 -z text Treat DT_TEXTREL in shared object as error\n"));
1858 fprintf (file, _("\
1859 -z notext Don't treat DT_TEXTREL in shared object as error\n"));
1860 fprintf (file, _("\
1861 -z textoff Don't treat DT_TEXTREL in shared object as error\n"));
1862 }
1863
1864 static void
1865 elf_static_list_options (FILE *file)
1866 {
1867 fprintf (file, _("\
1868 --build-id[=STYLE] Generate build ID note\n"));
1869 fprintf (file, _("\
1870 --compress-debug-sections=[none|zlib|zlib-gnu|zlib-gabi]\n\
1871 Compress DWARF debug sections using zlib\n"));
1872 #ifdef DEFAULT_FLAG_COMPRESS_DEBUG
1873 fprintf (file, _("\
1874 Default: zlib-gabi\n"));
1875 #else
1876 fprintf (file, _("\
1877 Default: none\n"));
1878 #endif
1879 fprintf (file, _("\
1880 -z common-page-size=SIZE Set common page size to SIZE\n"));
1881 fprintf (file, _("\
1882 -z max-page-size=SIZE Set maximum page size to SIZE\n"));
1883 fprintf (file, _("\
1884 -z defs Report unresolved symbols in object files\n"));
1885 fprintf (file, _("\
1886 -z muldefs Allow multiple definitions\n"));
1887 fprintf (file, _("\
1888 -z execstack Mark executable as requiring executable stack\n"));
1889 fprintf (file, _("\
1890 -z noexecstack Mark executable as not requiring executable stack\n"));
1891 fprintf (file, _("\
1892 -z globalaudit Mark executable requiring global auditing\n"));
1893 }
1894
1895 static void
1896 elf_plt_unwind_list_options (FILE *file)
1897 {
1898 fprintf (file, _("\
1899 --ld-generated-unwind-info Generate exception handling info for PLT\n"));
1900 fprintf (file, _("\
1901 --no-ld-generated-unwind-info\n\
1902 Don't generate exception handling info for PLT\n"));
1903 }
1904
1905 static void
1906 ld_list_options (FILE *file, bfd_boolean elf, bfd_boolean shlib,
1907 bfd_boolean plt_unwind)
1908 {
1909 if (!elf)
1910 return;
1911 printf (_("ELF emulations:\n"));
1912 if (plt_unwind)
1913 elf_plt_unwind_list_options (file);
1914 elf_static_list_options (file);
1915 if (shlib)
1916 elf_shlib_list_options (file);
1917 }
1918
1919 \f
1920 /* Print help messages for the options. */
1921
1922 static void
1923 help (void)
1924 {
1925 unsigned i;
1926 const char **targets, **pp;
1927 int len;
1928
1929 printf (_("Usage: %s [options] file...\n"), program_name);
1930
1931 printf (_("Options:\n"));
1932 for (i = 0; i < OPTION_COUNT; i++)
1933 {
1934 if (ld_options[i].doc != NULL)
1935 {
1936 bfd_boolean comma;
1937 unsigned j;
1938
1939 printf (" ");
1940
1941 comma = FALSE;
1942 len = 2;
1943
1944 j = i;
1945 do
1946 {
1947 if (ld_options[j].shortopt != '\0'
1948 && ld_options[j].control != NO_HELP)
1949 {
1950 printf ("%s-%c", comma ? ", " : "", ld_options[j].shortopt);
1951 len += (comma ? 2 : 0) + 2;
1952 if (ld_options[j].arg != NULL)
1953 {
1954 if (ld_options[j].opt.has_arg != optional_argument)
1955 {
1956 printf (" ");
1957 ++len;
1958 }
1959 printf ("%s", _(ld_options[j].arg));
1960 len += strlen (_(ld_options[j].arg));
1961 }
1962 comma = TRUE;
1963 }
1964 ++j;
1965 }
1966 while (j < OPTION_COUNT && ld_options[j].doc == NULL);
1967
1968 j = i;
1969 do
1970 {
1971 if (ld_options[j].opt.name != NULL
1972 && ld_options[j].control != NO_HELP)
1973 {
1974 int two_dashes =
1975 (ld_options[j].control == TWO_DASHES
1976 || ld_options[j].control == EXACTLY_TWO_DASHES);
1977
1978 printf ("%s-%s%s",
1979 comma ? ", " : "",
1980 two_dashes ? "-" : "",
1981 ld_options[j].opt.name);
1982 len += ((comma ? 2 : 0)
1983 + 1
1984 + (two_dashes ? 1 : 0)
1985 + strlen (ld_options[j].opt.name));
1986 if (ld_options[j].arg != NULL)
1987 {
1988 printf (" %s", _(ld_options[j].arg));
1989 len += 1 + strlen (_(ld_options[j].arg));
1990 }
1991 comma = TRUE;
1992 }
1993 ++j;
1994 }
1995 while (j < OPTION_COUNT && ld_options[j].doc == NULL);
1996
1997 if (len >= 30)
1998 {
1999 printf ("\n");
2000 len = 0;
2001 }
2002
2003 for (; len < 30; len++)
2004 putchar (' ');
2005
2006 printf ("%s\n", _(ld_options[i].doc));
2007 }
2008 }
2009 printf (_(" @FILE"));
2010 for (len = strlen (" @FILE"); len < 30; len++)
2011 putchar (' ');
2012 printf (_("Read options from FILE\n"));
2013
2014 /* Note: Various tools (such as libtool) depend upon the
2015 format of the listings below - do not change them. */
2016 /* xgettext:c-format */
2017 printf (_("%s: supported targets:"), program_name);
2018 targets = bfd_target_list ();
2019 for (pp = targets; *pp != NULL; pp++)
2020 printf (" %s", *pp);
2021 free (targets);
2022 printf ("\n");
2023
2024 /* xgettext:c-format */
2025 printf (_("%s: supported emulations: "), program_name);
2026 ldemul_list_emulations (stdout);
2027 printf ("\n");
2028
2029 /* xgettext:c-format */
2030 printf (_("%s: emulation specific options:\n"), program_name);
2031 ld_list_options (stdout, ELF_LIST_OPTIONS, ELF_SHLIB_LIST_OPTIONS,
2032 ELF_PLT_UNWIND_LIST_OPTIONS);
2033 ldemul_list_emulation_options (stdout);
2034 printf ("\n");
2035
2036 if (REPORT_BUGS_TO[0])
2037 printf (_("Report bugs to %s\n"), REPORT_BUGS_TO);
2038 }
This page took 0.076794 seconds and 4 git commands to generate.