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