OSDN Git Service

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