OSDN Git Service

* g++spec.c (NEED_MATH_LIBRARY): Define to 1 if not already defined.
[pf3gnuchains/gcc-fork.git] / gcc / cp / g++spec.c
1 /* Specific flags and argument handling of the C++ front-end.
2    Copyright (C) 1996, 1997 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC 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 GNU CC 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 GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21 #include "config.h"
22
23 #include "system.h"
24
25 #include "gansidecl.h"
26
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
34 #ifndef MATH_LIBRARY
35 #define MATH_LIBRARY "-lm"
36 #endif
37 #ifndef NEED_MATH_LIBRARY
38 #define NEED_MATH_LIBRARY 1     /* Default is pass MATH_LIBRARY to linker */
39 #endif
40
41 extern char *xmalloc PROTO((size_t));
42
43 void
44 lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
45      void (*fn)();
46      int *in_argc;
47      char ***in_argv;
48      int *in_added_libraries;
49 {
50   int i, j;
51
52   /* If non-zero, the user gave us the `-v' flag.  */ 
53   int saw_verbose_flag = 0;
54
55   /* This will be 0 if we encounter a situation where we should not
56      link in libstdc++.  */
57   int library = 1;
58
59   /* The number of arguments being added to what's in argv, other than
60      libraries.  We use this to track the number of times we've inserted
61      -xc++/-xnone.  */
62   int added = 2;
63
64   /* Used to track options that take arguments, so we don't go wrapping
65      those with -xc++/-xnone.  */
66   char *quote = NULL;
67
68   /* The new argument list will be contained in this.  */
69   char **arglist;
70
71   /* Non-zero if we saw a `-xfoo' language specification on the
72      command line.  Used to avoid adding our own -xc++ if the user
73      already gave a language for the file.  */
74   int saw_speclang = 0;
75
76   /* "-lm" or "-lmath" if it appears on the command line.  */
77   char *saw_math = 0;
78
79   /* "-lc" if it appears on the command line.  */
80   char *saw_libc = 0;
81
82   /* An array used to flag each argument that needs a bit set for
83      LANGSPEC, MATHLIB, or WITHLIBC.  */
84   int *args;
85
86   /* By default, we throw on the math library.  */
87   int need_math = NEED_MATH_LIBRARY;
88
89   /* The total number of arguments with the new stuff.  */
90   int argc;
91
92   /* The argument list.  */
93   char **argv;
94
95   /* The number of libraries added in.  */
96   int added_libraries;
97
98   /* The total number of arguments with the new stuff.  */
99   int num_args = 1;
100
101   argc = *in_argc;
102   argv = *in_argv;
103   added_libraries = *in_added_libraries;
104
105   args = (int *) xmalloc (argc * sizeof (int));
106   bzero ((char *) args, argc * sizeof (int));
107
108   for (i = 1; i < argc; i++)
109     {
110       /* If the previous option took an argument, we swallow it here.  */
111       if (quote)
112         {
113           quote = NULL;
114           continue;
115         }
116
117       /* We don't do this anymore, since we don't get them with minus
118          signs on them.  */
119       if (argv[i][0] == '\0' || argv[i][1] == '\0')
120         continue;
121
122       if (argv[i][0] == '-')
123         {
124           if (library != 0 && (strcmp (argv[i], "-nostdlib") == 0
125                                || strcmp (argv[i], "-nodefaultlibs") == 0))
126             {
127               library = 0;
128             }
129           else if (strcmp (argv[i], "-lm") == 0
130                    || strcmp (argv[i], "-lmath") == 0
131 #ifdef ALT_LIBM
132                    || strcmp (argv[i], ALT_LIBM) == 0
133 #endif
134                   )
135             {
136               args[i] |= MATHLIB;
137               need_math = 0;
138             }
139           else if (strcmp (argv[i], "-lc") == 0)
140             args[i] |= WITHLIBC;
141           else if (strcmp (argv[i], "-v") == 0)
142             {
143               saw_verbose_flag = 1;
144               if (argc == 2)
145                 {
146                   /* If they only gave us `-v', don't try to link
147                      in libg++.  */ 
148                   library = 0;
149                 }
150             }
151           else if (strncmp (argv[i], "-x", 2) == 0)
152             saw_speclang = 1;
153           else if (((argv[i][2] == '\0'
154                      && (char *)strchr ("bBVDUoeTuIYmLiA", argv[i][1]) != NULL)
155                     || strcmp (argv[i], "-Tdata") == 0))
156             quote = argv[i];
157           else if (library != 0 && ((argv[i][2] == '\0'
158                      && (char *) strchr ("cSEM", argv[i][1]) != NULL)
159                     || strcmp (argv[i], "-MM") == 0))
160             {
161               /* Don't specify libraries if we won't link, since that would
162                  cause a warning.  */
163               library = 0;
164               added -= 2;
165             }
166           else
167             /* Pass other options through.  */
168             continue;
169         }
170       else
171         {
172           int len; 
173
174           if (saw_speclang)
175             {
176               saw_speclang = 0;
177               continue;
178             }
179
180           /* If the filename ends in .c or .i, put options around it.
181              But not if a specified -x option is currently active.  */
182           len = strlen (argv[i]);
183           if (len > 2
184               && (argv[i][len - 1] == 'c' || argv[i][len - 1] == 'i')
185               && argv[i][len - 2] == '.')
186             {
187               args[i] |= LANGSPEC;
188               added += 2;
189             }
190         }
191     }
192
193   if (quote)
194     (*fn) ("argument to `%s' missing\n", quote);
195
196   /* If we know we don't have to do anything, bail now.  */
197   if (! added && ! library)
198     {
199       free (args);
200       return;
201     }
202
203   num_args = argc + added + need_math;
204   arglist = (char **) xmalloc (num_args * sizeof (char *));
205
206   /* NOTE: We start at 1 now, not 0.  */
207   for (i = 0, j = 0; i < argc; i++, j++)
208     {
209       arglist[j] = argv[i];
210
211       /* Make sure -lstdc++ is before the math library, since libstdc++
212          itself uses those math routines.  */
213       if (!saw_math && (args[i] & MATHLIB) && library)
214         {
215           --j;
216           saw_math = argv[i];
217         }
218
219       if (!saw_libc && (args[i] & WITHLIBC) && library)
220         {
221           --j;
222           saw_libc = argv[i];
223         }
224
225       /* Wrap foo.c and foo.i files in a language specification to
226          force the gcc compiler driver to run cc1plus on them.  */
227       if (args[i] & LANGSPEC)
228         {
229           int len = strlen (argv[i]);
230           if (argv[i][len - 1] == 'i')
231             arglist[j++] = "-xc++-cpp-output";
232           else
233             arglist[j++] = "-xc++";
234           arglist[j++] = argv[i];
235           arglist[j] = "-xnone";
236         }
237   }
238
239   /* Add `-lstdc++' if we haven't already done so.  */
240   if (library)
241     {
242       arglist[j++] = "-lstdc++";
243       added_libraries++;
244     }
245   if (saw_math)
246     arglist[j++] = saw_math;
247   else if (library && need_math)
248     {
249       arglist[j++] = MATH_LIBRARY;
250       added_libraries++;
251     }
252   if (saw_libc)
253     arglist[j++] = saw_libc;
254
255   arglist[j] = NULL;
256
257   *in_argc = j;
258   *in_argv = arglist;
259   *in_added_libraries = added_libraries;
260 }
261
262 /* Called before linking.  Returns 0 on success and -1 on failure. */
263 int lang_specific_pre_link ()  /* Not used for C++. */
264 {
265   return 0;
266 }
267
268 /* Number of extra output files that lang_specific_pre_link may generate. */
269 int lang_specific_extra_outfiles = 0;  /* Not used for C++. */