- Shunt some trace statements over to the typelib channel that aren't
[wine] / tools / winegcc / winegcc.c
1 /*
2  * MinGW wrapper: makes gcc behave like MinGW.
3  *
4  * Copyright 2000 Manuel Novoa III
5  * Copyright 2000 Francois Gouget
6  * Copyright 2002 Dimitrie O. Paun
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  * DESCRIPTION
23  *
24  * all options for gcc start with '-' and are for the most part
25  * single options (no parameters as separate argument). 
26  * There are of course exceptions to this rule, so here is an 
27  * exhaustive list of options that do take parameters (potentially)
28  * as a separate argument:
29  *
30  * Compiler:
31  * -x language
32  * -o filename
33  * -aux-info filename
34  *
35  * Preprocessor:
36  * -D name 
37  * -U name
38  * -I dir
39  * -MF file
40  * -MT target
41  * -MQ target
42  * (all -i.* arg)
43  * -include file 
44  * -imacros file
45  * -idirafter dir
46  * -iwithprefix dir
47  * -iwithprefixbefore dir
48  * -isystem dir
49  * -A predicate=answer
50  *
51  * Linking:
52  * -l library
53  * -Xlinker option
54  * -u symbol
55  *
56  * Misc:
57  * -b machine
58  * -V version
59  * -G num  (see NOTES below)
60  *
61  * NOTES
62  * There is -G option for compatibility with System V that
63  * takes no parameters. This makes "-G num" parsing ambiguous.
64  * This option is synonymous to -shared, and as such we will
65  * not support it for now.
66  *
67  * Special interest options 
68  *
69  *      Assembler Option
70  *          -Wa,option
71  *
72  *      Linker Options
73  *          object-file-name  -llibrary -nostartfiles  -nodefaultlibs
74  *          -nostdlib -s  -static  -static-libgcc  -shared  -shared-libgcc
75  *          -symbolic -Wl,option  -Xlinker option -u symbol --image-base
76  *
77  *      Directory Options
78  *          -Bprefix  -Idir  -I-  -Ldir  -specs=file
79  *
80  *      Target Options
81  *          -b machine  -V version
82  *
83  * Please note that the Target Options are relevant to everything:
84  *   compiler, linker, assembler, preprocessor.
85  * 
86  */ 
87
88 #include "config.h"
89 #include "wine/port.h"
90
91 #include <stdio.h>
92 #include <stdlib.h>
93 #include <signal.h>
94 #include <stdarg.h>
95 #include <string.h>
96 #include <errno.h>
97
98 #include "utils.h"
99
100 static const char* app_loader_template =
101     "#!/bin/sh\n"
102     "\n"
103     "appname=\"%s\"\n"
104     "# determine the application directory\n"
105     "appdir=''\n"
106     "case \"$0\" in\n"
107     "  */*)\n"
108     "    # $0 contains a path, use it\n"
109     "    appdir=`dirname \"$0\"`\n"
110     "    ;;\n"
111     "  *)\n"
112     "    # no directory in $0, search in PATH\n"
113     "    saved_ifs=$IFS\n"
114     "    IFS=:\n"
115     "    for d in $PATH\n"
116     "    do\n"
117     "      IFS=$saved_ifs\n"
118     "      if [ -x \"$d/$appname\" ]; then appdir=\"$d\"; break; fi\n"
119     "    done\n"
120     "    ;;\n"
121     "esac\n"
122     "\n"
123     "# figure out the full app path\n"
124     "if [ -n \"$appdir\" ]; then\n"
125     "    apppath=\"$appdir/$appname\"\n"
126     "    WINEDLLPATH=\"$appdir:$WINEDLLPATH\"\n"
127     "    export WINEDLLPATH\n"
128     "else\n"
129     "    apppath=\"$appname\"\n"
130     "fi\n"
131     "\n"
132     "# determine the WINELOADER\n"
133     "if [ ! -x \"$WINELOADER\" ]; then WINELOADER=\"wine\"; fi\n"
134     "\n"
135     "# and try to start the app\n"
136     "exec \"$WINELOADER\" \"$apppath\" \"$@\"\n"
137 ;
138
139 static int keep_generated = 0;
140 static strarray* tmp_files;
141 #ifdef HAVE_SIGSET_T
142 static sigset_t signal_mask;
143 #endif
144
145 struct options 
146 {
147     enum { proc_cc = 0, proc_cxx = 1, proc_cpp = 2} processor;
148     int shared;
149     int use_msvcrt;
150     int nostdinc;
151     int nostdlib;
152     int nostartfiles;
153     int nodefaultlibs;
154     int noshortwchar;
155     int gui_app;
156     int unicode_app;
157     int compile_only;
158     int wine_mode;
159     const char* output_name;
160     const char* image_base;
161     strarray* prefix;
162     strarray* lib_dirs;
163     strarray* linker_args;
164     strarray* compiler_args;
165     strarray* winebuild_args;
166     strarray* files;
167 };
168
169 static void clean_temp_files(void)
170 {
171     int i;
172
173     if (keep_generated) return;
174
175     for (i = 0; i < tmp_files->size; i++)
176         unlink(tmp_files->base[i]);
177 }
178
179 /* clean things up when aborting on a signal */
180 static void exit_on_signal( int sig )
181 {
182     exit(1);  /* this will call the atexit functions */
183 }
184
185 static char* get_temp_file(const char* prefix, const char* suffix)
186 {
187     int fd;
188     char* tmp = strmake("%s-XXXXXX%s", prefix, suffix);
189
190 #ifdef HAVE_SIGPROCMASK
191     sigset_t old_set;
192     /* block signals while manipulating the temp files list */
193     sigprocmask( SIG_BLOCK, &signal_mask, &old_set );
194 #endif
195     fd = mkstemps( tmp, strlen(suffix) );
196     if (fd == -1)
197     {
198         /* could not create it in current directory, try in /tmp */
199         free(tmp);
200         tmp = strmake("/tmp/%s-XXXXXX%s", prefix, suffix);
201         fd = mkstemps( tmp, strlen(suffix) );
202         if (fd == -1) error( "could not create temp file" );
203     }
204     close( fd );
205     strarray_add(tmp_files, tmp);
206 #ifdef HAVE_SIGPROCMASK
207     sigprocmask( SIG_SETMASK, &old_set, NULL );
208 #endif
209     return tmp;
210 }
211
212 static const strarray* get_translator(struct options* opts)
213 {
214     static strarray* cpp = 0;
215     static strarray* cc = 0;
216     static strarray* cxx = 0;
217
218     switch(opts->processor)
219     {
220         case proc_cpp: 
221             if (!cpp) cpp = strarray_fromstring(CPP, " ");
222             return cpp;
223         case proc_cc:  
224             if (!cc) cc = strarray_fromstring(CC, " ");
225             return cc;
226         case proc_cxx: 
227             if (!cxx) cxx = strarray_fromstring(CXX, " ");
228             return cxx;
229     }
230     error("Unknown processor");
231 }
232
233 static void compile(struct options* opts, const char* lang)
234 {
235     strarray* comp_args = strarray_alloc();
236     int j, gcc_defs = 0;
237
238     switch(opts->processor)
239     {
240         case proc_cpp:  gcc_defs = 1; break;
241 #ifdef __GNUC__
242         /* Note: if the C compiler is gcc we assume the C++ compiler is too */
243         /* mixing different C and C++ compilers isn't supported in configure anyway */
244         case proc_cc:  gcc_defs = 1; break;
245         case proc_cxx: gcc_defs = 1; break;
246 #else
247         case proc_cc:  gcc_defs = 0; break;
248         case proc_cxx: gcc_defs = 0; break;
249 #endif
250     }
251     strarray_addall(comp_args, get_translator(opts));
252
253     if (opts->processor != proc_cpp)
254     {
255 #ifdef CC_FLAG_SHORT_WCHAR
256         if (!opts->wine_mode && !opts->noshortwchar)
257         {
258             strarray_add(comp_args, CC_FLAG_SHORT_WCHAR);
259             strarray_add(comp_args, "-DWINE_UNICODE_NATIVE");
260         }
261 #endif
262         strarray_addall(comp_args, strarray_fromstring(DLLFLAGS, " "));
263     }
264
265     strarray_add(comp_args, "-DWIN32");
266     strarray_add(comp_args, "-D_WIN32");
267     strarray_add(comp_args, "-D__WIN32");
268     strarray_add(comp_args, "-D__WIN32__");
269     strarray_add(comp_args, "-D__WINNT");
270     strarray_add(comp_args, "-D__WINNT__");
271
272     if (gcc_defs)
273     {
274         strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__))");
275         strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__))");
276         strarray_add(comp_args, "-D__fastcall=__attribute__((__fastcall__))");
277         strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__))");
278         strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__))");
279         strarray_add(comp_args, "-D_fastcall=__attribute__((__fastcall__))");
280         strarray_add(comp_args, "-D__declspec(x)=__declspec_##x");
281         strarray_add(comp_args, "-D__declspec_align(x)=__attribute__((aligned(x)))");
282         strarray_add(comp_args, "-D__declspec_allocate(x)=__attribute__((section(x)))");
283         strarray_add(comp_args, "-D__declspec_deprecated=__attribute__((deprecated))");
284         strarray_add(comp_args, "-D__declspec_dllimport=__attribute__((dllimport))");
285         strarray_add(comp_args, "-D__declspec_dllexport=__attribute__((dllexport))");
286         strarray_add(comp_args, "-D__declspec_naked=__attribute__((naked))");
287         strarray_add(comp_args, "-D__declspec_noinline=__attribute__((noinline))");
288         strarray_add(comp_args, "-D__declspec_noreturn=__attribute__((noreturn))");
289         strarray_add(comp_args, "-D__declspec_nothrow=__attribute__((nothrow))");
290         strarray_add(comp_args, "-D__declspec_novtable=__attribute__(())"); /* ignore it */
291         strarray_add(comp_args, "-D__declspec_selectany=__attribute__((weak))");
292         strarray_add(comp_args, "-D__declspec_thread=__thread");
293     }
294
295     /* Wine specific defines */
296     strarray_add(comp_args, "-D__WINE__");
297     strarray_add(comp_args, "-D__int8=char");
298     strarray_add(comp_args, "-D__int16=short");
299     /* FIXME: what about 64-bit platforms? */
300     strarray_add(comp_args, "-D__int32=int");
301 #ifdef HAVE_LONG_LONG
302     strarray_add(comp_args, "-D__int64=long long");
303 #endif
304
305     /* options we handle explicitly */
306     if (opts->compile_only)
307         strarray_add(comp_args, "-c");
308     if (opts->output_name)
309     {
310         strarray_add(comp_args, "-o");
311         strarray_add(comp_args, opts->output_name);
312     }
313
314     /* the rest of the pass-through parameters */
315     for ( j = 0 ; j < opts->compiler_args->size ; j++ ) 
316         strarray_add(comp_args, opts->compiler_args->base[j]);
317
318     /* the language option, if any */
319     if (lang && strcmp(lang, "-xnone"))
320         strarray_add(comp_args, lang);
321
322     /* last, but not least, the files */
323     for ( j = 0; j < opts->files->size; j++ )
324     {
325         if (opts->files->base[j][0] != '-')
326             strarray_add(comp_args, opts->files->base[j]);
327     }
328
329     /* standard includes come last in the include search path */
330 #ifdef __GNUC__
331 #define SYS_INCLUDE "-isystem"
332 #else
333 #define SYS_INCLUDE "-I"
334 #endif
335     if (!opts->wine_mode && !opts->nostdinc)
336     {
337         if (opts->use_msvcrt)
338         {
339             strarray_add(comp_args, SYS_INCLUDE INCLUDEDIR "/msvcrt");
340             strarray_add(comp_args, "-D__MSVCRT__");
341         }
342         strarray_add(comp_args, SYS_INCLUDE INCLUDEDIR "/windows");
343     }
344 #undef SYS_INCLUDE
345
346     spawn(opts->prefix, comp_args, 0);
347 }
348
349 static const char* compile_to_object(struct options* opts, const char* file, const char* lang)
350 {
351     struct options copts;
352     char* base_name;
353
354     /* make a copy so we don't change any of the initial stuff */
355     /* a shallow copy is exactly what we want in this case */
356     base_name = get_basename(file);
357     copts = *opts;
358     copts.output_name = get_temp_file(base_name, ".o");
359     copts.compile_only = 1;
360     copts.files = strarray_alloc();
361     strarray_add(copts.files, file);
362     compile(&copts, lang);
363     strarray_free(copts.files);
364     free(base_name);
365
366     return copts.output_name;
367 }
368
369 /* check if there is a static lib associated to a given dll */
370 static char *find_static_lib( const char *dll )
371 {
372     char *lib = strmake("%s.a", dll);
373     if (get_file_type(lib) == file_arh) return lib;
374     free( lib );
375     return NULL;
376 }
377
378 static void build(struct options* opts)
379 {
380     static const char *stdlibpath[] = { DLLDIR, LIBDIR, "/usr/lib", "/usr/local/lib", "/lib" };
381     strarray *lib_dirs, *files;
382     strarray *spec_args, *link_args;
383     char *output_file;
384     const char *spec_c_name, *spec_o_name;
385     const char *output_name, *spec_file, *lang;
386     const char* winebuild = getenv("WINEBUILD");
387     int generate_app_loader = 1;
388     int old_processor;
389     int j;
390
391     /* NOTE: for the files array we'll use the following convention:
392      *    -axxx:  xxx is an archive (.a)
393      *    -dxxx:  xxx is a DLL (.def)
394      *    -lxxx:  xxx is an unsorted library
395      *    -oxxx:  xxx is an object (.o)
396      *    -rxxx:  xxx is a resource (.res)
397      *    -sxxx:  xxx is a shared lib (.so)
398      *    -xlll:  lll is the language (c, c++, etc.)
399      */
400
401     if (!winebuild) winebuild = "winebuild";
402
403     output_file = strdup( opts->output_name ? opts->output_name : "a.out" );
404
405     /* 'winegcc -o app xxx.exe.so' only creates the load script */
406     if (opts->files->size == 1 && strendswith(opts->files->base[0], ".exe.so"))
407     {
408         create_file(output_file, 0755, app_loader_template, opts->files->base[0]);
409         return;
410     }
411
412     /* generate app loader only for .exe */
413     if (opts->shared || strendswith(output_file, ".exe.so"))
414         generate_app_loader = 0;
415
416     /* normalize the filename a bit: strip .so, ensure it has proper ext */
417     if (strendswith(output_file, ".so")) 
418         output_file[strlen(output_file) - 3] = 0;
419     if (opts->shared)
420     {
421         if ((output_name = strrchr(output_file, '/'))) output_name++;
422         else output_name = output_file;
423         if (!strchr(output_name, '.'))
424             output_file = strmake("%s.dll", output_file);
425     }
426     else if (!strendswith(output_file, ".exe"))
427         output_file = strmake("%s.exe", output_file);
428
429     /* get the filename from the path */
430     if ((output_name = strrchr(output_file, '/'))) output_name++;
431     else output_name = output_file;
432
433     /* prepare the linking path */
434     lib_dirs = strarray_dup(opts->lib_dirs);
435     if (!opts->wine_mode)
436     {
437         for ( j = 0; j < sizeof(stdlibpath)/sizeof(stdlibpath[0]); j++ )
438             strarray_add(lib_dirs, stdlibpath[j]);
439     }
440
441     /* mark the files with their appropriate type */
442     spec_file = lang = 0;
443     files = strarray_alloc();
444     for ( j = 0; j < opts->files->size; j++ )
445     {
446         const char* file = opts->files->base[j];
447         if (file[0] != '-')
448         {
449             switch(get_file_type(file))
450             {
451                 case file_def:
452                 case file_spec:
453                     if (spec_file)
454                         error("Only one spec file can be specified.");
455                     spec_file = file;
456                     break;
457                 case file_rc:
458                     /* FIXME: invoke wrc to build it */
459                     error("Can't compile .rc file at the moment: %s", file);
460                     break;
461                 case file_res:
462                     strarray_add(files, strmake("-r%s", file));
463                     break;
464                 case file_obj:
465                     strarray_add(files, strmake("-o%s", file));
466                     break;
467                 case file_arh:
468                     strarray_add(files, strmake("-a%s", file));
469                     break;
470                 case file_so:
471                     strarray_add(files, strmake("-s%s", file));
472                     break;
473                 case file_na:
474                     error("File does not exist: %s", file);
475                     break;
476                 default:
477                     file = compile_to_object(opts, file, lang);
478                     strarray_add(files, strmake("-o%s", file));
479                     break;
480             }
481         }
482         else if (file[1] == 'l')
483         {
484             char *static_lib, *fullname = 0;
485             switch(get_lib_type(lib_dirs, file + 2, &fullname))
486             {
487                 case file_arh:
488                     strarray_add(files, strmake("-a%s", fullname));
489                     break;
490                 case file_dll:
491                     strarray_add(files, strmake("-d%s", file + 2));
492                     if ((static_lib = find_static_lib(fullname)))
493                     {
494                         strarray_add(files, strmake("-a%s",static_lib));
495                         free(static_lib);
496                     }
497                     break;
498                 case file_so:
499                     strarray_add(files, strmake("-s%s", file + 2));
500                     break;
501                 default:
502                     /* keep it anyway, the linker may know what to do with it */
503                     strarray_add(files, file);
504                     break;
505             }
506             free(fullname);
507         }
508         else if (file[1] == 'x')
509             lang = file;
510     }
511     if (opts->shared && !spec_file)
512         error("A spec file is currently needed in shared mode");
513
514     /* add the default libraries, if needed */
515     if (!opts->nostdlib) 
516     {
517         if (opts->use_msvcrt) strarray_add(files, "-dmsvcrt");
518     }
519
520     if (!opts->wine_mode && !opts->nodefaultlibs) 
521     {
522         if (opts->gui_app) 
523         {
524             strarray_add(files, "-dshell32");
525             strarray_add(files, "-dcomdlg32");
526             strarray_add(files, "-dgdi32");
527         }
528         strarray_add(files, "-dadvapi32");
529         strarray_add(files, "-duser32");
530         strarray_add(files, "-dkernel32");
531     }
532
533     if (!opts->nostartfiles)
534     {
535         char *fullname = NULL;
536         if (get_lib_type(lib_dirs, "winecrt0", &fullname) == file_arh)
537             strarray_add(files, strmake("-a%s", fullname));
538         free( fullname );
539     }
540
541     /* run winebuild to generate the .spec.c file */
542     spec_args = strarray_alloc();
543     spec_c_name = get_temp_file(output_name, ".spec.c");
544     strarray_add(spec_args, winebuild);
545     strarray_add(spec_args, "--ld-cmd");
546     strarray_add(spec_args, LD);
547     strarray_addall(spec_args, strarray_fromstring(DLLFLAGS, " "));
548     strarray_add(spec_args, opts->shared ? "--dll" : "--exe");
549     strarray_add(spec_args, "-o");
550     strarray_add(spec_args, spec_c_name);
551     if (spec_file)
552     {
553         strarray_add(spec_args, "-E");
554         strarray_add(spec_args, spec_file);
555     }
556
557     if (!opts->shared)
558     {
559         strarray_add(spec_args, "-F");
560         strarray_add(spec_args, output_name);
561         strarray_add(spec_args, "--subsystem");
562         strarray_add(spec_args, opts->gui_app ? "windows" : "console");
563         if (opts->unicode_app)
564         {
565             strarray_add(spec_args, "--entry");
566             strarray_add(spec_args, "__wine_spec_exe_wentry");
567         }
568     }
569
570     for ( j = 0; j < lib_dirs->size; j++ )
571         strarray_add(spec_args, strmake("-L%s", lib_dirs->base[j]));
572
573     for ( j = 0 ; j < opts->winebuild_args->size ; j++ )
574         strarray_add(spec_args, opts->winebuild_args->base[j]);
575
576     for ( j = 0; j < files->size; j++ )
577     {
578         const char* name = files->base[j] + 2;
579         switch(files->base[j][1])
580         {
581             case 'd':
582                 strarray_add(spec_args, strmake("-l%s", name));
583                 break;
584             case 'r':
585                 strarray_add(spec_args, files->base[j]);
586                 break;
587             case 'a':
588             case 'o':
589                 strarray_add(spec_args, name);
590                 break;
591         }
592     }
593
594     spawn(opts->prefix, spec_args, 0);
595
596     /* compile the .spec.c file into a .spec.o file */
597     old_processor = opts->processor;
598     /* Always compile spec.c as c, even if linking with g++ */
599     opts->processor = proc_cc;
600     spec_o_name = compile_to_object(opts, spec_c_name, 0);
601     opts->processor = old_processor;
602
603     /* link everything together now */
604     link_args = strarray_alloc();
605     strarray_addall(link_args, get_translator(opts));
606     strarray_addall(link_args, strarray_fromstring(LDDLLFLAGS, " "));
607
608     strarray_add(link_args, "-o");
609     strarray_add(link_args, strmake("%s.so", output_file));
610
611     for ( j = 0 ; j < opts->linker_args->size ; j++ ) 
612         strarray_add(link_args, opts->linker_args->base[j]);
613
614     for ( j = 0; j < lib_dirs->size; j++ )
615         strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
616
617     strarray_add(link_args, spec_o_name);
618
619     for ( j = 0; j < files->size; j++ )
620     {
621         const char* name = files->base[j] + 2;
622         switch(files->base[j][1])
623         {
624             case 'l':
625             case 's':
626                 strarray_add(link_args, strmake("-l%s", name));
627                 break;
628             case 'a':
629             case 'o':
630                 strarray_add(link_args, name);
631                 break;
632         }
633     }
634
635     if (!opts->nostdlib) 
636     {
637         strarray_add(link_args, "-lwine");
638         strarray_add(link_args, "-lm");
639         strarray_add(link_args, "-lc");
640     }
641
642     spawn(opts->prefix, link_args, 0);
643
644     /* set the base address */
645     if (opts->image_base)
646     {
647         const char *prelink = PRELINK;
648         if (prelink[0] && strcmp(prelink,"false"))
649         {
650             strarray *prelink_args = strarray_alloc();
651             strarray_add(prelink_args, prelink);
652             strarray_add(prelink_args, "--reloc-only");
653             strarray_add(prelink_args, opts->image_base);
654             strarray_add(prelink_args, strmake("%s.so", output_file));
655             spawn(opts->prefix, prelink_args, 1);
656             strarray_free(prelink_args);
657         }
658     }
659
660     /* create the loader script */
661     if (generate_app_loader)
662     {
663         if (strendswith(output_file, ".exe")) output_file[strlen(output_file) - 4] = 0;
664         create_file(output_file, 0755, app_loader_template, strmake("%s.exe.so", output_name));
665     }
666 }
667
668
669 static void forward(int argc, char **argv, struct options* opts)
670 {
671     strarray* args = strarray_alloc();
672     int j;
673
674     strarray_addall(args, get_translator(opts));
675
676     for( j = 1; j < argc; j++ ) 
677         strarray_add(args, argv[j]);
678
679     spawn(opts->prefix, args, 0);
680 }
681
682 /*
683  *      Linker Options
684  *          object-file-name  -llibrary -nostartfiles  -nodefaultlibs
685  *          -nostdlib -s  -static  -static-libgcc  -shared  -shared-libgcc
686  *          -symbolic -Wl,option  -Xlinker option -u symbol
687  *          -framework name
688  */
689 static int is_linker_arg(const char* arg)
690 {
691     static const char* link_switches[] = 
692     {
693         "-nostartfiles", "-nodefaultlibs", "-nostdlib", "-s", 
694         "-static", "-static-libgcc", "-shared", "-shared-libgcc", "-symbolic",
695         "-framework"
696     };
697     int j;
698
699     switch (arg[1]) 
700     {
701         case 'l': 
702         case 'u':
703             return 1;
704         case 'W':
705             if (strncmp("-Wl,", arg, 4) == 0) return 1;
706             break;
707         case 'X':
708             if (strcmp("-Xlinker", arg) == 0) return 1;
709             break;
710     }
711
712     for (j = 0; j < sizeof(link_switches)/sizeof(link_switches[0]); j++)
713         if (strcmp(link_switches[j], arg) == 0) return 1;
714
715     return 0;
716 }
717
718 /*
719  *      Target Options
720  *          -b machine  -V version
721  */
722 static int is_target_arg(const char* arg)
723 {
724     return arg[1] == 'b' || arg[2] == 'V';
725 }
726
727
728 /*
729  *      Directory Options
730  *          -Bprefix  -Idir  -I-  -Ldir  -specs=file
731  */
732 static int is_directory_arg(const char* arg)
733 {
734     return arg[1] == 'B' || arg[1] == 'L' || arg[1] == 'I' || strncmp("-specs=", arg, 7) == 0;
735 }
736
737 /*
738  *      MinGW Options
739  *          -mno-cygwin -mwindows -mconsole -mthreads -municode
740  */ 
741 static int is_mingw_arg(const char* arg)
742 {
743     static const char* mingw_switches[] = 
744     {
745         "-mno-cygwin", "-mwindows", "-mconsole", "-mthreads", "-municode"
746     };
747     int j;
748
749     for (j = 0; j < sizeof(mingw_switches)/sizeof(mingw_switches[0]); j++)
750         if (strcmp(mingw_switches[j], arg) == 0) return 1;
751
752     return 0;
753 }
754
755 int main(int argc, char **argv)
756 {
757     int i, c, next_is_arg = 0, linking = 1;
758     int raw_compiler_arg, raw_linker_arg;
759     const char* option_arg;
760     struct options opts;
761     char* lang = 0;
762     char* str;
763
764 #ifdef SIGHUP
765     signal( SIGHUP, exit_on_signal );
766 #endif
767     signal( SIGTERM, exit_on_signal );
768     signal( SIGINT, exit_on_signal );
769 #ifdef HAVE_SIGADDSET
770     sigemptyset( &signal_mask );
771     sigaddset( &signal_mask, SIGHUP );
772     sigaddset( &signal_mask, SIGTERM );
773     sigaddset( &signal_mask, SIGINT );
774 #endif
775
776     /* setup tmp file removal at exit */
777     tmp_files = strarray_alloc();
778     atexit(clean_temp_files);
779     
780     /* initialize options */
781     memset(&opts, 0, sizeof(opts));
782     opts.lib_dirs = strarray_alloc();
783     opts.files = strarray_alloc();
784     opts.linker_args = strarray_alloc();
785     opts.compiler_args = strarray_alloc();
786     opts.winebuild_args = strarray_alloc();
787
788     /* determine the processor type */
789     if (strendswith(argv[0], "winecpp")) opts.processor = proc_cpp;
790     else if (strendswith(argv[0], "++")) opts.processor = proc_cxx;
791     
792     /* parse options */
793     for ( i = 1 ; i < argc ; i++ ) 
794     {
795         if (argv[i][0] == '-')  /* option */
796         {
797             /* determine if tihs switch is followed by a separate argument */
798             next_is_arg = 0;
799             option_arg = 0;
800             switch(argv[i][1])
801             {
802                 case 'x': case 'o': case 'D': case 'U':
803                 case 'I': case 'A': case 'l': case 'u':
804                 case 'b': case 'V': case 'G': case 'L':
805                 case 'B':
806                     if (argv[i][2]) option_arg = &argv[i][2];
807                     else next_is_arg = 1;
808                     break;
809                 case 'i':
810                     next_is_arg = 1;
811                     break;
812                 case 'a':
813                     if (strcmp("-aux-info", argv[i]) == 0)
814                         next_is_arg = 1;
815                     break;
816                 case 'X':
817                     if (strcmp("-Xlinker", argv[i]) == 0)
818                         next_is_arg = 1;
819                     break;
820                 case 'M':
821                     c = argv[i][2];
822                     if (c == 'F' || c == 'T' || c == 'Q')
823                     {
824                         if (argv[i][3]) option_arg = &argv[i][3];
825                         else next_is_arg = 1;
826                     }
827                     break;
828                 case 'f':
829                     if (strcmp("-framework", argv[i]) == 0)
830                         next_is_arg = 1;
831                     break;
832             }
833             if (next_is_arg) option_arg = argv[i+1];
834
835             /* determine what options go 'as is' to the linker & the compiler */
836             raw_compiler_arg = raw_linker_arg = 0;
837             if (is_linker_arg(argv[i])) 
838             {
839                 raw_linker_arg = 1;
840             }
841             else 
842             {
843                 if (is_directory_arg(argv[i]) || is_target_arg(argv[i]))
844                     raw_linker_arg = 1;
845                 raw_compiler_arg = !is_mingw_arg(argv[i]);
846             }
847
848             /* these things we handle explicitly so we don't pass them 'as is' */
849             if (argv[i][1] == 'l' || argv[i][1] == 'I' || argv[i][1] == 'L')
850                 raw_linker_arg = 0;
851             if (argv[i][1] == 'c' || argv[i][1] == 'L')
852                 raw_compiler_arg = 0;
853             if (argv[i][1] == 'o')
854                 raw_compiler_arg = raw_linker_arg = 0;
855
856             /* do a bit of semantic analysis */
857             switch (argv[i][1]) 
858             {
859                 case 'B':
860                     str = strdup(option_arg);
861                     if (strendswith(str, "/tools/winebuild"))
862                     {
863                         opts.wine_mode = 1;
864                         /* don't pass it to the compiler, this generates warnings */
865                         raw_compiler_arg = raw_linker_arg = 0;
866                     }
867                     if (strendswith(str, "/")) str[strlen(str) - 1] = 0;
868                     if (!opts.prefix) opts.prefix = strarray_alloc();
869                     strarray_add(opts.prefix, str);
870                     break;
871                 case 'c':        /* compile or assemble */
872                     if (argv[i][2] == 0) opts.compile_only = 1;
873                     /* fall through */
874                 case 'S':        /* generate assembler code */
875                 case 'E':        /* preprocess only */
876                     if (argv[i][2] == 0) linking = 0;
877                     break;
878                 case 'f':
879                     if (strcmp("-fno-short-wchar", argv[i]) == 0)
880                         opts.noshortwchar = 1;
881                     break;
882                 case 'l':
883                     strarray_add(opts.files, strmake("-l%s", option_arg));
884                     break;
885                 case 'L':
886                     strarray_add(opts.lib_dirs, option_arg);
887                     break;
888                 case 'M':        /* map file generation */
889                     linking = 0;
890                     break;
891                 case 'm':
892                     if (strcmp("-mno-cygwin", argv[i]) == 0)
893                         opts.use_msvcrt = 1;
894                     else if (strcmp("-mwindows", argv[i]) == 0)
895                         opts.gui_app = 1;
896                     else if (strcmp("-mconsole", argv[i]) == 0)
897                         opts.gui_app = 0;
898                     else if (strcmp("-municode", argv[i]) == 0)
899                         opts.unicode_app = 1;
900                     break;
901                 case 'n':
902                     if (strcmp("-nostdinc", argv[i]) == 0)
903                         opts.nostdinc = 1;
904                     else if (strcmp("-nodefaultlibs", argv[i]) == 0)
905                         opts.nodefaultlibs = 1;
906                     else if (strcmp("-nostdlib", argv[i]) == 0)
907                         opts.nostdlib = 1;
908                     else if (strcmp("-nostartfiles", argv[i]) == 0)
909                         opts.nostartfiles = 1;
910                     break;
911                 case 'o':
912                     opts.output_name = option_arg;
913                     break;
914                 case 's':
915                     if (strcmp("-static", argv[i]) == 0) 
916                         linking = -1;
917                     else if(strcmp("-save-temps", argv[i]) == 0)
918                         keep_generated = 1;
919                     else if(strcmp("-shared", argv[i]) == 0)
920                     {
921                         opts.shared = 1;
922                         raw_compiler_arg = raw_linker_arg = 0;
923                     }
924                     break;
925                 case 'v':
926                     if (argv[i][2] == 0) verbose++;
927                     break;
928                 case 'W':
929                     if (strncmp("-Wl,", argv[i], 4) == 0)
930                     {
931                         unsigned int j;
932                         strarray* Wl = strarray_fromstring(argv[i] + 4, ",");
933                         for (j = 0; j < Wl->size; j++)
934                         {
935                             if (!strcmp(Wl->base[j], "--image-base") && j < Wl->size - 1)
936                             {
937                                 opts.image_base = strdup( Wl->base[++j] );
938                                 continue;
939                             }
940                             if (!strcmp(Wl->base[j], "-static")) linking = -1;
941                             strarray_add(opts.linker_args, strmake("-Wl,%s",Wl->base[j]));
942                         }
943                         strarray_free(Wl);
944                         raw_compiler_arg = raw_linker_arg = 0;
945                     }
946                     else if (strncmp("-Wb,", argv[i], 4) == 0)
947                     {
948                         strarray* Wb = strarray_fromstring(argv[i] + 4, ",");
949                         strarray_addall(opts.winebuild_args, Wb);
950                         strarray_free(Wb);
951                         /* don't pass it to the compiler, it generates errors */
952                         raw_compiler_arg = raw_linker_arg = 0;
953                     }
954                     break;
955                 case 'x':
956                     lang = strmake("-x%s", option_arg);
957                     strarray_add(opts.files, lang);
958                     /* we'll pass these flags ourselves, explicitely */
959                     raw_compiler_arg = raw_linker_arg = 0;
960                     break;
961                 case '-':
962                     if (strcmp("-static", argv[i]+1) == 0)
963                         linking = -1;
964                     break;
965             }
966
967             /* put the arg into the appropriate bucket */
968             if (raw_linker_arg) 
969             {
970                 strarray_add(opts.linker_args, argv[i]);
971                 if (next_is_arg && (i + 1 < argc)) 
972                     strarray_add(opts.linker_args, argv[i + 1]);
973             }
974             if (raw_compiler_arg)
975             {
976                 strarray_add(opts.compiler_args, argv[i]);
977                 if (next_is_arg && (i + 1 < argc))
978                     strarray_add(opts.compiler_args, argv[i + 1]);
979             }
980
981             /* skip the next token if it's an argument */
982             if (next_is_arg) i++;
983         }
984         else
985         {
986             strarray_add(opts.files, argv[i]);
987         } 
988     }
989
990     if (opts.processor == proc_cpp) linking = 0;
991     if (linking == -1) error("Static linking is not supported.");
992
993     if (opts.files->size == 0) forward(argc, argv, &opts);
994     else if (linking) build(&opts);
995     else compile(&opts, lang);
996
997     return 0;
998 }