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