* lexsup.c (parse_args): Treat -i as a synonym for -r.
[external/binutils.git] / ld / lexsup.c
1 /* Parse options for the GNU linker.
2    Copyright (C) 1991, 92, 93, 94 Free Software Foundation, Inc.
3
4 This file is part of GLD, the Gnu Linker.
5
6 GLD is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GLD is distributed in the hope that it will be useful,
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.
15
16 You should have received a copy of the GNU General Public License
17 along with GLD; see the file COPYING.  If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20 #include "bfd.h"
21 #include "sysdep.h"
22 #include <stdio.h>
23 #include <string.h>
24 #include "getopt.h"
25 #include "bfdlink.h"
26 #include "config.h"
27 #include "ld.h"
28 #include "ldmain.h"
29 #include "ldmisc.h"
30 #include "ldexp.h"
31 #include "ldlang.h"
32 #include "ldgram.h"
33 #include "ldlex.h"
34 #include "ldfile.h"
35 #include "ldver.h"
36
37 /* Omit args to avoid the possibility of clashing with a system header
38    that might disagree about consts.  */
39 unsigned long strtoul ();
40
41 static void set_default_dirlist PARAMS ((char *dirlist_ptr));
42 static void set_section_start PARAMS ((char *sect, char *valstr));
43
44 void
45 parse_args (argc, argv)
46      int argc;
47      char **argv;
48 {
49   /* Starting the short option string with '-' is for programs that
50      expect options and other ARGV-elements in any order and that care about
51      the ordering of the two.  We describe each non-option ARGV-element
52      as if it were the argument of an option with character code 1.  */
53
54   const char *shortopts = "-A:B::b:cde:F::G:giL:l:Mm:NnO:o:R:rSsT:tu:VvXxY:y:";
55
56   /* 150 isn't special; it's just an arbitrary non-ASCII char value.  */
57
58   static struct option longopts[] = {
59 #define OPTION_CALL_SHARED 150
60 #define OPTION_NON_SHARED 151
61     {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
62     {"dc", no_argument, NULL, 'd'},
63 #define OPTION_DEFSYM 152
64     {"defsym", required_argument, NULL, OPTION_DEFSYM},
65     {"dn", no_argument, NULL, OPTION_NON_SHARED},
66     {"dp", no_argument, NULL, 'd'},
67     {"dy", no_argument, NULL, OPTION_CALL_SHARED},
68 #define OPTION_EB 153
69     {"EB", no_argument, NULL, OPTION_EB},
70 #define OPTION_EL 154
71     {"EL", no_argument, NULL, OPTION_EL},
72     {"format", required_argument, NULL, 'b'},
73 #define OPTION_HELP 155
74     {"help", no_argument, NULL, OPTION_HELP},
75 #define OPTION_MAP 156
76     {"Map", required_argument, NULL, OPTION_MAP},
77 #define OPTION_NO_KEEP_MEMORY 157
78     {"no-keep-memory", no_argument, NULL, OPTION_NO_KEEP_MEMORY},
79 #define OPTION_NOINHIBIT_EXEC 158
80     {"noinhibit-exec", no_argument, NULL, OPTION_NOINHIBIT_EXEC},
81     {"noinhibit_exec", no_argument, NULL, OPTION_NOINHIBIT_EXEC},
82     {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
83 #define OPTION_OFORMAT 159
84     {"oformat", required_argument, NULL, OPTION_OFORMAT},
85 #define OPTION_IGNORE 160
86     {"Qy", no_argument, NULL, OPTION_IGNORE},
87 #define OPTION_RELAX 161
88     {"relax", no_argument, NULL, OPTION_RELAX},
89 #define OPTION_RETAIN_SYMBOLS_FILE 162
90     {"retain-symbols-file", no_argument, NULL, OPTION_RETAIN_SYMBOLS_FILE},
91 #define OPTION_SORT_COMMON 163
92     {"sort-common", no_argument, NULL, OPTION_SORT_COMMON},
93     {"sort_common", no_argument, NULL, OPTION_SORT_COMMON},
94 #define OPTION_STATS 164
95     {"stats", no_argument, NULL, OPTION_STATS},
96 #define OPTION_TBSS 165
97     {"Tbss", required_argument, NULL, OPTION_TBSS},
98 #define OPTION_TDATA 166
99     {"Tdata", required_argument, NULL, OPTION_TDATA},
100 #define OPTION_TTEXT 167
101     {"Ttext", required_argument, NULL, OPTION_TTEXT},
102 #define OPTION_UR 168
103     {"Ur", no_argument, NULL, OPTION_UR},
104 #define OPTION_VERSION 169
105     {"version", no_argument, NULL, OPTION_VERSION},
106 #define OPTION_WARN_COMMON 170
107     {"warn-common", no_argument, NULL, OPTION_WARN_COMMON},
108     {NULL, no_argument, NULL, 0}
109   };
110
111   while (1)
112     {
113       /* getopt_long_only is like getopt_long, but '-' as well as '--' can
114          indicate a long option.  */
115       int longind;
116       int optc = getopt_long_only (argc, argv, shortopts, longopts, &longind);
117
118       if (optc == -1)
119         break;
120
121       switch (optc)
122         {
123         default:
124           xexit (1);
125         case 1:                 /* File name.  */
126           lang_add_input_file (optarg, lang_input_file_is_file_enum,
127                                (char *) NULL);
128           break;
129
130         case OPTION_IGNORE:
131           break;
132         case 'A':
133           ldfile_add_arch (optarg);
134           break;
135         case 'B':
136           /* Ignore.  */
137           break;
138         case 'b':
139           lang_add_target (optarg);
140           break;
141         case 'c':
142           ldfile_open_command_file (optarg);
143           parser_input = input_mri_script;
144           yyparse ();
145           break;
146         case OPTION_CALL_SHARED:
147           config.dynamic_link = true;
148           break;
149         case OPTION_NON_SHARED:
150           config.dynamic_link = false;
151           break;
152         case 'd':
153           command_line.force_common_definition = true;
154           break;
155         case OPTION_DEFSYM:
156           lex_redirect (optarg);
157           parser_input = input_defsym;
158           yyparse ();
159           break;
160         case OPTION_EB:
161           /* FIXME: This is currently ignored.  It means
162              ``produce a big-endian object file''.  It could
163              be used to select an output format.  */
164           break;
165         case OPTION_EL:
166           /* FIXME: This is currently ignored.  It means
167              ``produce a little-endian object file''.  It could
168              be used to select an output format.  */
169           break;
170         case 'e':
171           lang_add_entry (optarg, 1);
172           break;
173         case 'F':
174           /* Ignore.  */
175           break;
176         case 'G':
177           {
178             char *end;
179             g_switch_value = strtoul (optarg, &end, 0);
180             if (*end)
181               einfo ("%P%F: invalid number `%s'\n", optarg);
182           }
183           break;
184         case 'g':
185           /* Ignore.  */
186           break;
187         case OPTION_HELP:
188           help ();
189           xexit (0);
190           break;
191         case 'L':
192           ldfile_add_library_path (optarg, true);
193           break;
194         case 'l':
195           lang_add_input_file (optarg, lang_input_file_is_l_enum,
196                                (char *) NULL);
197           break;
198         case 'M':
199           config.map_filename = "-";
200           break;
201         case 'm':
202           /* Ignore.  Was handled in a pre-parse.   */
203           break;
204         case OPTION_MAP:
205           config.map_filename = optarg;
206           break;
207         case 'N':
208           config.text_read_only = false;
209           config.magic_demand_paged = false;
210           break;
211         case 'n':
212           config.magic_demand_paged = false;
213           break;
214         case OPTION_NO_KEEP_MEMORY:
215           link_info.keep_memory = false;
216           break;
217         case OPTION_NOINHIBIT_EXEC:
218           force_make_executable = true;
219           break;
220         case 'O':
221           /* FIXME "-O<non-digits> <value>" used to set the address of
222              section <non-digits>.  Was this for compatibility with
223              something, or can we create a new option to do that
224              (with a syntax similar to -defsym)?
225              getopt can't handle two args to an option without kludges.  */
226           set_default_dirlist (optarg);
227           break;
228         case 'o':
229           lang_add_output (optarg, 0); 
230           break;
231         case OPTION_OFORMAT:
232           lang_add_output_format (optarg, 0);
233           break;
234         case 'i':
235         case 'r':
236           link_info.relocateable = true;
237           config.build_constructors = false;
238           config.magic_demand_paged = false;
239           config.text_read_only = false;
240           config.dynamic_link = false;
241           break;
242         case 'R':
243           lang_add_input_file (optarg,
244                                lang_input_file_is_symbols_only_enum,
245                                (char *) NULL);
246           break;
247         case OPTION_RELAX:
248           command_line.relax = true;
249           break;
250         case OPTION_RETAIN_SYMBOLS_FILE:
251           add_keepsyms_file (optarg);
252           break;
253         case 'S':
254           link_info.strip = strip_debugger;
255           break;
256         case 's':
257           link_info.strip = strip_all;
258           break;
259         case OPTION_SORT_COMMON:
260           config.sort_common = true;
261           break;
262         case OPTION_STATS:
263           config.stats = true;
264           break;
265         case 't':
266           trace_files = true;
267           break;
268         case 'T':
269           ldfile_open_command_file (optarg);
270           parser_input = input_script;
271           yyparse ();
272           break;
273         case OPTION_TBSS:
274           set_section_start (".bss", optarg);
275           break;
276         case OPTION_TDATA:
277           set_section_start (".data", optarg);
278           break;
279         case OPTION_TTEXT:
280           set_section_start (".text", optarg);
281           break;
282         case OPTION_UR:
283           link_info.relocateable = true;
284           config.build_constructors = true;
285           config.magic_demand_paged = false;
286           config.text_read_only = false;
287           config.dynamic_link = false;
288           break;
289         case 'u':
290           ldlang_add_undef (optarg);
291           break;
292         case 'V':
293           ldversion (1);
294           version_printed = true;
295           trace_file_tries = true;
296           break;
297         case 'v':
298           ldversion (0);
299           version_printed = true;
300           break;
301         case OPTION_VERSION:
302           ldversion (0);
303           version_printed = true;
304           break;
305         case OPTION_WARN_COMMON:
306           config.warn_common = true;
307           break;
308         case 'X':
309           link_info.discard = discard_l;
310           break;
311         case 'x':
312           link_info.discard = discard_all;
313           break;
314         case 'Y':
315           set_default_dirlist (optarg);
316           break;
317         case 'y':
318           add_ysym (optarg);
319           break;
320         }
321     }
322 }
323
324 /* Add the (colon-separated) elements of DIRLIST_PTR to the
325    library search path.  */
326
327 static void
328 set_default_dirlist (dirlist_ptr)
329      char *dirlist_ptr;
330 {
331   char *p;
332
333   while (1)
334     {
335       p = strchr (dirlist_ptr, ':');
336       if (p != NULL)
337         *p = 0;
338       if (*dirlist_ptr)
339         ldfile_add_library_path (dirlist_ptr, true);
340       if (p == NULL)
341         break;
342       *p = ':';
343       dirlist_ptr = p + 1;
344     }
345 }
346
347 static void
348 set_section_start (sect, valstr)
349      char *sect, *valstr;
350 {
351   char *end;
352   unsigned long val = strtoul (valstr, &end, 16);
353   if (*end)
354     einfo ("%P%F: invalid hex number `%s'\n", valstr);
355   lang_section_start (sect, exp_intop (val));
356 }