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