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