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