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