1 /* Specific flags and argument handling of the C++ front end.
2 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 2007, 2008, 2009 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
27 /* This bit is set if we saw a `-xfoo' language specification. */
28 #define LANGSPEC (1<<1)
29 /* This bit is set if they did `-lm' or `-lmath'. */
30 #define MATHLIB (1<<2)
31 /* This bit is set if they did `-lc'. */
32 #define WITHLIBC (1<<3)
33 /* Skip this option. */
34 #define SKIPOPT (1<<4)
37 #define MATH_LIBRARY "-lm"
39 #ifndef MATH_LIBRARY_PROFILE
40 #define MATH_LIBRARY_PROFILE MATH_LIBRARY
44 #define LIBSTDCXX "-lstdc++"
46 #ifndef LIBSTDCXX_PROFILE
47 #define LIBSTDCXX_PROFILE LIBSTDCXX
49 #ifndef LIBSTDCXX_STATIC
50 #define LIBSTDCXX_STATIC NULL
54 lang_specific_driver (int *in_argc
, const char *const **in_argv
,
55 int *in_added_libraries
)
59 /* If nonzero, the user gave us the `-p' or `-pg' flag. */
60 int saw_profile_flag
= 0;
62 /* What do with libstdc++:
63 -1 means we should not link in libstdc++
64 0 means we should link in libstdc++ if it is needed
65 1 means libstdc++ is needed and should be linked in.
66 2 means libstdc++ is needed and should be linked statically. */
69 /* The number of arguments being added to what's in argv, other than
70 libraries. We use this to track the number of times we've inserted
74 /* Used to track options that take arguments, so we don't go wrapping
75 those with -xc++/-xnone. */
76 const char *quote
= NULL
;
78 /* The new argument list will be contained in this. */
81 /* Nonzero if we saw a `-xfoo' language specification on the
82 command line. Used to avoid adding our own -xc++ if the user
83 already gave a language for the file. */
86 /* "-lm" or "-lmath" if it appears on the command line. */
87 const char *saw_math
= 0;
89 /* "-lc" if it appears on the command line. */
90 const char *saw_libc
= 0;
92 /* An array used to flag each argument that needs a bit set for
93 LANGSPEC, MATHLIB, or WITHLIBC. */
96 /* By default, we throw on the math library if we have one. */
97 int need_math
= (MATH_LIBRARY
[0] != '\0');
99 /* True if we saw -static. */
102 /* True if we should add -shared-libgcc to the command-line. */
103 int shared_libgcc
= 1;
105 /* The total number of arguments with the new stuff. */
108 /* The argument list. */
109 const char *const *argv
;
111 /* The number of libraries added in. */
114 /* The total number of arguments with the new stuff. */
119 added_libraries
= *in_added_libraries
;
121 args
= XCNEWVEC (int, argc
);
123 for (i
= 1; i
< argc
; i
++)
125 /* If the previous option took an argument, we swallow it here. */
132 /* We don't do this anymore, since we don't get them with minus
134 if (argv
[i
][0] == '\0' || argv
[i
][1] == '\0')
137 if (argv
[i
][0] == '-')
139 if (strcmp (argv
[i
], "-nostdlib") == 0
140 || strcmp (argv
[i
], "-nodefaultlibs") == 0)
144 else if (strcmp (argv
[i
], MATH_LIBRARY
) == 0)
149 else if (strcmp (argv
[i
], "-lc") == 0)
151 else if (strcmp (argv
[i
], "-pg") == 0 || strcmp (argv
[i
], "-p") == 0)
153 else if (strncmp (argv
[i
], "-x", 2) == 0)
156 if (argv
[i
][2] != '\0')
158 else if ((argv
[i
+1]) != NULL
)
159 /* We need to swallow arg on next loop. */
160 quote
= arg
= argv
[i
+1];
161 else /* Error condition, message will be printed later. */
164 && (strcmp (arg
, "c++") == 0
165 || strcmp (arg
, "c++-cpp-output") == 0
166 || strcmp (arg
, "objective-c++") == 0
167 || strcmp (arg
, "objective-c++-cpp-output") == 0))
172 else if (strcmp (argv
[i
], "-ObjC++") == 0)
178 /* Arguments that go directly to the linker might be .o files,
179 or something, and so might cause libstdc++ to be needed. */
180 else if (strcmp (argv
[i
], "-Xlinker") == 0)
186 else if (strncmp (argv
[i
], "-Wl,", 4) == 0)
187 library
= (library
== 0) ? 1 : library
;
188 /* Unrecognized libraries (e.g. -lfoo) may require libstdc++. */
189 else if (strncmp (argv
[i
], "-l", 2) == 0)
190 library
= (library
== 0) ? 1 : library
;
191 else if (((argv
[i
][2] == '\0'
192 && strchr ("bBVDUoeTuIYmLiA", argv
[i
][1]) != NULL
)
193 || strcmp (argv
[i
], "-Tdata") == 0))
195 else if ((argv
[i
][2] == '\0'
196 && strchr ("cSEM", argv
[i
][1]) != NULL
)
197 || strcmp (argv
[i
], "-MM") == 0
198 || strcmp (argv
[i
], "-fsyntax-only") == 0)
200 /* Don't specify libraries if we won't link, since that would
204 else if (strcmp (argv
[i
], "-static") == 0)
206 else if (strcmp (argv
[i
], "-static-libgcc") == 0)
208 else if (strcmp (argv
[i
], "-static-libstdc++") == 0)
210 library
= library
>= 0 ? 2 : library
;
213 else if (DEFAULT_WORD_SWITCH_TAKES_ARG (&argv
[i
][1]))
216 /* Pass other options through. */
229 /* If the filename ends in .[chi], put options around it.
230 But not if a specified -x option is currently active. */
231 len
= strlen (argv
[i
]);
233 && (argv
[i
][len
- 1] == 'c'
234 || argv
[i
][len
- 1] == 'i'
235 || argv
[i
][len
- 1] == 'h')
236 && argv
[i
][len
- 2] == '.')
242 /* If we don't know that this is a header file, we might
243 need to be linking in the libraries. */
246 if ((len
<= 2 || strcmp (argv
[i
] + (len
- 2), ".H") != 0)
247 && (len
<= 2 || strcmp (argv
[i
] + (len
- 2), ".h") != 0)
248 && (len
<= 4 || strcmp (argv
[i
] + (len
- 4), ".hpp") != 0)
249 && (len
<= 3 || strcmp (argv
[i
] + (len
- 3), ".hp") != 0)
250 && (len
<= 4 || strcmp (argv
[i
] + (len
- 4), ".hxx") != 0)
251 && (len
<= 4 || strcmp (argv
[i
] + (len
- 4), ".h++") != 0)
252 && (len
<= 4 || strcmp (argv
[i
] + (len
- 4), ".HPP") != 0)
253 && (len
<= 4 || strcmp (argv
[i
] + (len
- 4), ".tcc") != 0)
254 && (len
<= 3 || strcmp (argv
[i
] + (len
- 3), ".hh") != 0))
261 fatal ("argument to '%s' missing\n", quote
);
263 /* There's no point adding -shared-libgcc if we don't have a shared
265 #ifndef ENABLE_SHARED_LIBGCC
269 /* Make sure to have room for the trailing NULL argument.
270 Add one for shared_libgcc or extra static library. */
271 num_args
= argc
+ added
+ need_math
+ (library
> 0) * 4 + 2;
272 arglist
= XNEWVEC (const char *, num_args
);
277 /* Copy the 0th argument, i.e., the name of the program itself. */
278 arglist
[i
++] = argv
[j
++];
280 /* NOTE: We start at 1 now, not 0. */
283 arglist
[j
] = argv
[i
];
285 /* Make sure -lstdc++ is before the math library, since libstdc++
286 itself uses those math routines. */
287 if (!saw_math
&& (args
[i
] & MATHLIB
) && library
> 0)
293 if (!saw_libc
&& (args
[i
] & WITHLIBC
) && library
> 0)
299 /* Wrap foo.[chi] files in a language specification to
300 force the gcc compiler driver to run cc1plus on them. */
301 if (args
[i
] & LANGSPEC
)
303 int len
= strlen (argv
[i
]);
304 switch (argv
[i
][len
- 1])
307 arglist
[j
++] = "-xc++";
310 arglist
[j
++] = "-xc++-cpp-output";
313 arglist
[j
++] = "-xc++-header";
318 arglist
[j
++] = argv
[i
];
319 arglist
[j
] = "-xnone";
322 if ((args
[i
] & SKIPOPT
) != 0)
329 /* Add `-lstdc++' if we haven't already done so. */
332 #ifdef HAVE_LD_STATIC_DYNAMIC
333 if (library
> 1 && !static_link
)
335 arglist
[j
] = "-Wl,-Bstatic";
339 arglist
[j
] = saw_profile_flag
? LIBSTDCXX_PROFILE
: LIBSTDCXX
;
340 if (arglist
[j
][0] != '-' || arglist
[j
][1] == 'l')
343 /* Add target-dependent static library, if necessary. */
344 if ((static_link
|| library
> 1) && LIBSTDCXX_STATIC
!= NULL
)
346 arglist
[j
] = LIBSTDCXX_STATIC
;
347 if (arglist
[j
][0] != '-' || arglist
[j
][1] == 'l')
351 #ifdef HAVE_LD_STATIC_DYNAMIC
352 if (library
> 1 && !static_link
)
354 arglist
[j
] = "-Wl,-Bdynamic";
360 arglist
[j
++] = saw_math
;
361 else if (library
> 0 && need_math
)
363 arglist
[j
] = saw_profile_flag
? MATH_LIBRARY_PROFILE
: MATH_LIBRARY
;
364 if (arglist
[j
][0] != '-' || arglist
[j
][1] == 'l')
369 arglist
[j
++] = saw_libc
;
370 if (shared_libgcc
&& !static_link
)
371 arglist
[j
++] = "-shared-libgcc";
377 *in_added_libraries
= added_libraries
;
380 /* Called before linking. Returns 0 on success and -1 on failure. */
381 int lang_specific_pre_link (void) /* Not used for C++. */
386 /* Number of extra output files that lang_specific_pre_link may generate. */
387 int lang_specific_extra_outfiles
= 0; /* Not used for C++. */