Release 1.4-rc5.
[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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, 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 <assert.h>
92 #include <stdio.h>
93 #include <stdlib.h>
94 #include <signal.h>
95 #include <stdarg.h>
96 #include <string.h>
97 #include <errno.h>
98
99 #include "utils.h"
100
101 static const char* app_loader_template =
102     "#!/bin/sh\n"
103     "\n"
104     "appname=\"%s\"\n"
105     "# determine the application directory\n"
106     "appdir=''\n"
107     "case \"$0\" in\n"
108     "  */*)\n"
109     "    # $0 contains a path, use it\n"
110     "    appdir=`dirname \"$0\"`\n"
111     "    ;;\n"
112     "  *)\n"
113     "    # no directory in $0, search in PATH\n"
114     "    saved_ifs=$IFS\n"
115     "    IFS=:\n"
116     "    for d in $PATH\n"
117     "    do\n"
118     "      IFS=$saved_ifs\n"
119     "      if [ -x \"$d/$appname\" ]; then appdir=\"$d\"; break; fi\n"
120     "    done\n"
121     "    ;;\n"
122     "esac\n"
123     "\n"
124     "# figure out the full app path\n"
125     "if [ -n \"$appdir\" ]; then\n"
126     "    apppath=\"$appdir/$appname\"\n"
127     "    WINEDLLPATH=\"$appdir:$WINEDLLPATH\"\n"
128     "    export WINEDLLPATH\n"
129     "else\n"
130     "    apppath=\"$appname\"\n"
131     "fi\n"
132     "\n"
133     "# determine the WINELOADER\n"
134     "if [ ! -x \"$WINELOADER\" ]; then WINELOADER=\"wine\"; fi\n"
135     "\n"
136     "# and try to start the app\n"
137     "exec \"$WINELOADER\" \"$apppath\" \"$@\"\n"
138 ;
139
140 static int keep_generated = 0;
141 static strarray* tmp_files;
142 #ifdef HAVE_SIGSET_T
143 static sigset_t signal_mask;
144 #endif
145
146 enum processor { proc_cc, proc_cxx, proc_cpp, proc_as };
147
148 static const struct
149 {
150     const char *name;
151     enum target_cpu cpu;
152 } cpu_names[] =
153 {
154     { "i386",    CPU_x86 },
155     { "i486",    CPU_x86 },
156     { "i586",    CPU_x86 },
157     { "i686",    CPU_x86 },
158     { "i786",    CPU_x86 },
159     { "amd64",   CPU_x86_64 },
160     { "x86_64",  CPU_x86_64 },
161     { "sparc",   CPU_SPARC },
162     { "powerpc", CPU_POWERPC },
163     { "arm",     CPU_ARM }
164 };
165
166 static const struct
167 {
168     const char *name;
169     enum target_platform platform;
170 } platform_names[] =
171 {
172     { "macos",   PLATFORM_APPLE },
173     { "darwin",  PLATFORM_APPLE },
174     { "solaris", PLATFORM_SOLARIS },
175     { "cygwin",  PLATFORM_CYGWIN },
176     { "mingw32", PLATFORM_WINDOWS },
177     { "windows", PLATFORM_WINDOWS },
178     { "winnt",   PLATFORM_WINDOWS }
179 };
180
181 struct options
182 {
183     enum processor processor;
184     enum target_cpu target_cpu;
185     enum target_platform target_platform;
186     const char *target;
187     const char *version;
188     int shared;
189     int use_msvcrt;
190     int nostdinc;
191     int nostdlib;
192     int nostartfiles;
193     int nodefaultlibs;
194     int noshortwchar;
195     int gui_app;
196     int unicode_app;
197     int win16_app;
198     int compile_only;
199     int force_pointer_size;
200     int large_address_aware;
201     int unwind_tables;
202     int strip;
203     const char* wine_objdir;
204     const char* output_name;
205     const char* image_base;
206     const char* section_align;
207     const char* lib_suffix;
208     strarray* prefix;
209     strarray* lib_dirs;
210     strarray* linker_args;
211     strarray* compiler_args;
212     strarray* winebuild_args;
213     strarray* files;
214 };
215
216 #ifdef __i386__
217 static const enum target_cpu build_cpu = CPU_x86;
218 #elif defined(__x86_64__)
219 static const enum target_cpu build_cpu = CPU_x86_64;
220 #elif defined(__sparc__)
221 static const enum target_cpu build_cpu = CPU_SPARC;
222 #elif defined(__powerpc__)
223 static const enum target_cpu build_cpu = CPU_POWERPC;
224 #elif defined(__arm__)
225 static const enum target_cpu build_cpu = CPU_ARM;
226 #else
227 #error Unsupported CPU
228 #endif
229
230 #ifdef __APPLE__
231 static enum target_platform build_platform = PLATFORM_APPLE;
232 #elif defined(__sun)
233 static enum target_platform build_platform = PLATFORM_SOLARIS;
234 #elif defined(__CYGWIN__)
235 static enum target_platform build_platform = PLATFORM_CYGWIN;
236 #elif defined(_WIN32)
237 static enum target_platform build_platform = PLATFORM_WINDOWS;
238 #else
239 static enum target_platform build_platform = PLATFORM_UNSPECIFIED;
240 #endif
241
242 static void clean_temp_files(void)
243 {
244     unsigned int i;
245
246     if (keep_generated) return;
247
248     for (i = 0; i < tmp_files->size; i++)
249         unlink(tmp_files->base[i]);
250 }
251
252 /* clean things up when aborting on a signal */
253 static void exit_on_signal( int sig )
254 {
255     exit(1);  /* this will call the atexit functions */
256 }
257
258 static char* get_temp_file(const char* prefix, const char* suffix)
259 {
260     int fd;
261     char* tmp = strmake("%s-XXXXXX%s", prefix, suffix);
262
263 #ifdef HAVE_SIGPROCMASK
264     sigset_t old_set;
265     /* block signals while manipulating the temp files list */
266     sigprocmask( SIG_BLOCK, &signal_mask, &old_set );
267 #endif
268     fd = mkstemps( tmp, strlen(suffix) );
269     if (fd == -1)
270     {
271         /* could not create it in current directory, try in /tmp */
272         free(tmp);
273         tmp = strmake("/tmp/%s-XXXXXX%s", prefix, suffix);
274         fd = mkstemps( tmp, strlen(suffix) );
275         if (fd == -1) error( "could not create temp file\n" );
276     }
277     close( fd );
278     strarray_add(tmp_files, tmp);
279 #ifdef HAVE_SIGPROCMASK
280     sigprocmask( SIG_SETMASK, &old_set, NULL );
281 #endif
282     return tmp;
283 }
284
285 static char* build_tool_name(struct options *opts, const char* base, const char* deflt)
286 {
287     char* str;
288
289     if (opts->target && opts->version)
290     {
291         str = strmake("%s-%s-%s", opts->target, base, opts->version);
292     }
293     else if (opts->target)
294     {
295         str = strmake("%s-%s", opts->target, base);
296     }
297     else if (opts->version)
298     {
299         str = strmake("%s-%s", base, opts->version);
300     }
301     else
302         str = xstrdup(deflt);
303     return str;
304 }
305
306 static const strarray* get_translator(struct options *opts)
307 {
308     char *str = NULL;
309     strarray *ret;
310
311     switch(opts->processor)
312     {
313     case proc_cpp:
314         str = build_tool_name(opts, "cpp", CPP);
315         break;
316     case proc_cc:
317     case proc_as:
318         str = build_tool_name(opts, "gcc", CC);
319         break;
320     case proc_cxx:
321         str = build_tool_name(opts, "g++", CXX);
322         break;
323     default:
324         assert(0);
325     }
326     ret = strarray_fromstring( str, " " );
327     free(str);
328     if (opts->force_pointer_size)
329         strarray_add( ret, strmake("-m%u", 8 * opts->force_pointer_size ));
330     return ret;
331 }
332
333 /* check that file is a library for the correct platform */
334 static int check_platform( struct options *opts, const char *file )
335 {
336     int ret = 0, fd = open( file, O_RDONLY );
337     if (fd != -1)
338     {
339         unsigned char header[16];
340         if (read( fd, header, sizeof(header) ) == sizeof(header))
341         {
342             /* FIXME: only ELF is supported, platform is not checked beyond 32/64 */
343             if (!memcmp( header, "\177ELF", 4 ))
344             {
345                 if (header[4] == 2)  /* 64-bit */
346                     ret = (opts->force_pointer_size == 8 ||
347                            (!opts->force_pointer_size && opts->target_cpu == CPU_x86_64));
348                 else
349                     ret = (opts->force_pointer_size == 4 ||
350                            (!opts->force_pointer_size && opts->target_cpu != CPU_x86_64));
351             }
352         }
353         close( fd );
354     }
355     return ret;
356 }
357
358 static char *get_lib_dir( struct options *opts )
359 {
360     static const char *stdlibpath[] = { LIBDIR, "/usr/lib", "/usr/local/lib", "/lib" };
361     static const char libwine[] = "/libwine.so";
362     unsigned int i;
363
364     for (i = 0; i < sizeof(stdlibpath)/sizeof(stdlibpath[0]); i++)
365     {
366         char *p, *buffer = xmalloc( strlen(stdlibpath[i]) + strlen(libwine) + 3 );
367         strcpy( buffer, stdlibpath[i] );
368         p = buffer + strlen(buffer);
369         while (p > buffer && p[-1] == '/') p--;
370         strcpy( p, libwine );
371         if (check_platform( opts, buffer )) goto found;
372         if (p > buffer + 2 && (!memcmp( p - 2, "32", 2 ) || !memcmp( p - 2, "64", 2 ))) p -= 2;
373         if (opts->force_pointer_size == 4 || (!opts->force_pointer_size && opts->target_cpu != CPU_x86_64))
374         {
375             strcpy( p, "32" );
376             strcat( p, libwine );
377             if (check_platform( opts, buffer )) goto found;
378         }
379         if (opts->force_pointer_size == 8 || (!opts->force_pointer_size && opts->target_cpu == CPU_x86_64))
380         {
381             strcpy( p, "64" );
382             strcat( p, libwine );
383             if (check_platform( opts, buffer )) goto found;
384         }
385         free( buffer );
386         continue;
387
388     found:
389         buffer[strlen(buffer) - strlen(libwine)] = 0;
390         return buffer;
391     }
392     return xstrdup( LIBDIR );
393 }
394
395 static void compile(struct options* opts, const char* lang)
396 {
397     strarray* comp_args = strarray_alloc();
398     unsigned int j;
399     int gcc_defs = 0;
400     char* gcc;
401     char* gpp;
402
403     strarray_addall(comp_args, get_translator(opts));
404     switch(opts->processor)
405     {
406         case proc_cpp: gcc_defs = 1; break;
407         case proc_as:  gcc_defs = 0; break;
408         /* Note: if the C compiler is gcc we assume the C++ compiler is too */
409         /* mixing different C and C++ compilers isn't supported in configure anyway */
410         case proc_cc:
411         case proc_cxx:
412             gcc = build_tool_name(opts, "gcc", CC);
413             gpp = build_tool_name(opts, "g++", CXX);
414             for ( j = 0; !gcc_defs && j < comp_args->size; j++ )
415             {
416                 const char *cc = comp_args->base[j];
417
418                 gcc_defs = strendswith(cc, gcc) || strendswith(cc, gpp);
419             }
420             free(gcc);
421             free(gpp);
422             break;
423     }
424
425     if (opts->target_platform == PLATFORM_WINDOWS || opts->target_platform == PLATFORM_CYGWIN)
426         goto no_compat_defines;
427
428     if (opts->processor != proc_cpp)
429     {
430         if (gcc_defs && !opts->wine_objdir && !opts->noshortwchar)
431         {
432             strarray_add(comp_args, "-fshort-wchar");
433             strarray_add(comp_args, "-DWINE_UNICODE_NATIVE");
434         }
435         strarray_addall(comp_args, strarray_fromstring(DLLFLAGS, " "));
436     }
437
438     if (opts->target_cpu == CPU_x86_64)
439     {
440         strarray_add(comp_args, "-DWIN64");
441         strarray_add(comp_args, "-D_WIN64");
442         strarray_add(comp_args, "-D__WIN64");
443         strarray_add(comp_args, "-D__WIN64__");
444     }
445
446     strarray_add(comp_args, "-DWIN32");
447     strarray_add(comp_args, "-D_WIN32");
448     strarray_add(comp_args, "-D__WIN32");
449     strarray_add(comp_args, "-D__WIN32__");
450     strarray_add(comp_args, "-D__WINNT");
451     strarray_add(comp_args, "-D__WINNT__");
452
453     if (gcc_defs)
454     {
455         int fastcall_done = 0;
456         if (opts->target_cpu == CPU_x86_64)
457         {
458             strarray_add(comp_args, "-D__stdcall=__attribute__((ms_abi))");
459             strarray_add(comp_args, "-D__cdecl=__attribute__((ms_abi))");
460             strarray_add(comp_args, "-D_stdcall=__attribute__((ms_abi))");
461             strarray_add(comp_args, "-D_cdecl=__attribute__((ms_abi))");
462             strarray_add(comp_args, "-D__fastcall=__attribute__((ms_abi))");
463             strarray_add(comp_args, "-D_fastcall=__attribute__((ms_abi))");
464             fastcall_done = 1;
465         }
466         else if (opts->target_platform == PLATFORM_APPLE)
467         {
468             /* Mac OS X uses a 16-byte aligned stack and not a 4-byte one */
469             strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
470             strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
471             strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
472             strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
473         }
474         else
475         {
476             strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__))");
477             strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__))");
478             strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__))");
479             strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__))");
480         }
481
482         if (!fastcall_done)
483         {
484             strarray_add(comp_args, "-D__fastcall=__attribute__((__fastcall__))");
485             strarray_add(comp_args, "-D_fastcall=__attribute__((__fastcall__))");
486         }
487         strarray_add(comp_args, "-D__declspec(x)=__declspec_##x");
488         strarray_add(comp_args, "-D__declspec_align(x)=__attribute__((aligned(x)))");
489         strarray_add(comp_args, "-D__declspec_allocate(x)=__attribute__((section(x)))");
490         strarray_add(comp_args, "-D__declspec_deprecated=__attribute__((deprecated))");
491         strarray_add(comp_args, "-D__declspec_dllimport=__attribute__((dllimport))");
492         strarray_add(comp_args, "-D__declspec_dllexport=__attribute__((dllexport))");
493         strarray_add(comp_args, "-D__declspec_naked=__attribute__((naked))");
494         strarray_add(comp_args, "-D__declspec_noinline=__attribute__((noinline))");
495         strarray_add(comp_args, "-D__declspec_noreturn=__attribute__((noreturn))");
496         strarray_add(comp_args, "-D__declspec_nothrow=__attribute__((nothrow))");
497         strarray_add(comp_args, "-D__declspec_novtable=__attribute__(())"); /* ignore it */
498         strarray_add(comp_args, "-D__declspec_selectany=__attribute__((weak))");
499         strarray_add(comp_args, "-D__declspec_thread=__thread");
500     }
501
502     strarray_add(comp_args, "-D__int8=char");
503     strarray_add(comp_args, "-D__int16=short");
504     strarray_add(comp_args, "-D__int32=int");
505     if (opts->target_cpu == CPU_x86_64)
506         strarray_add(comp_args, "-D__int64=long");
507     else
508         strarray_add(comp_args, "-D__int64=long long");
509
510 no_compat_defines:
511     strarray_add(comp_args, "-D__WINE__");
512
513     /* options we handle explicitly */
514     if (opts->compile_only)
515         strarray_add(comp_args, "-c");
516     if (opts->output_name)
517     {
518         strarray_add(comp_args, "-o");
519         strarray_add(comp_args, opts->output_name);
520     }
521
522     /* the rest of the pass-through parameters */
523     for ( j = 0 ; j < opts->compiler_args->size ; j++ ) 
524         strarray_add(comp_args, opts->compiler_args->base[j]);
525
526     /* the language option, if any */
527     if (lang && strcmp(lang, "-xnone"))
528         strarray_add(comp_args, lang);
529
530     /* last, but not least, the files */
531     for ( j = 0; j < opts->files->size; j++ )
532     {
533         if (opts->files->base[j][0] != '-')
534             strarray_add(comp_args, opts->files->base[j]);
535     }
536
537     /* standard includes come last in the include search path */
538     if (!opts->wine_objdir && !opts->nostdinc)
539     {
540         if (opts->use_msvcrt)
541         {
542             strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/msvcrt" : "-I" INCLUDEDIR "/msvcrt" );
543             strarray_add(comp_args, "-D__MSVCRT__");
544         }
545         strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/windows" : "-I" INCLUDEDIR "/windows" );
546     }
547     else if (opts->wine_objdir)
548         strarray_add(comp_args, strmake("-I%s/include", opts->wine_objdir) );
549
550     spawn(opts->prefix, comp_args, 0);
551     strarray_free(comp_args);
552 }
553
554 static const char* compile_to_object(struct options* opts, const char* file, const char* lang)
555 {
556     struct options copts;
557     char* base_name;
558
559     /* make a copy so we don't change any of the initial stuff */
560     /* a shallow copy is exactly what we want in this case */
561     base_name = get_basename(file);
562     copts = *opts;
563     copts.output_name = get_temp_file(base_name, ".o");
564     copts.compile_only = 1;
565     copts.files = strarray_alloc();
566     strarray_add(copts.files, file);
567     compile(&copts, lang);
568     strarray_free(copts.files);
569     free(base_name);
570
571     return copts.output_name;
572 }
573
574 /* return the initial set of options needed to run winebuild */
575 static strarray *get_winebuild_args(struct options *opts)
576 {
577     const char* winebuild = getenv("WINEBUILD");
578     strarray *spec_args = strarray_alloc();
579
580     if (!winebuild) winebuild = "winebuild";
581     strarray_add( spec_args, winebuild );
582     if (verbose) strarray_add( spec_args, "-v" );
583     if (keep_generated) strarray_add( spec_args, "--save-temps" );
584     if (opts->target)
585     {
586         strarray_add( spec_args, "--target" );
587         strarray_add( spec_args, opts->target );
588     }
589     if (opts->unwind_tables) strarray_add( spec_args, "-fasynchronous-unwind-tables" );
590     else strarray_add( spec_args, "-fno-asynchronous-unwind-tables" );
591     return spec_args;
592 }
593
594 static const char* compile_resources_to_object(struct options* opts, const strarray *resources,
595                                                const char *res_o_name)
596 {
597     strarray *winebuild_args = get_winebuild_args( opts );
598
599     strarray_add( winebuild_args, "--resources" );
600     strarray_add( winebuild_args, "-o" );
601     strarray_add( winebuild_args, res_o_name );
602     strarray_addall( winebuild_args, resources );
603
604     spawn( opts->prefix, winebuild_args, 0 );
605     strarray_free( winebuild_args );
606     return res_o_name;
607 }
608
609 /* check if there is a static lib associated to a given dll */
610 static char *find_static_lib( const char *dll )
611 {
612     char *lib = strmake("%s.a", dll);
613     if (get_file_type(lib) == file_arh) return lib;
614     free( lib );
615     return NULL;
616 }
617
618 /* add specified library to the list of files */
619 static void add_library( struct options *opts, strarray *lib_dirs, strarray *files, const char *library )
620 {
621     char *static_lib, *fullname = 0;
622
623     switch(get_lib_type(opts->target_platform, lib_dirs, library, opts->lib_suffix, &fullname))
624     {
625     case file_arh:
626         strarray_add(files, strmake("-a%s", fullname));
627         break;
628     case file_dll:
629         strarray_add(files, strmake("-d%s", fullname));
630         if ((static_lib = find_static_lib(fullname)))
631         {
632             strarray_add(files, strmake("-a%s",static_lib));
633             free(static_lib);
634         }
635         break;
636     case file_so:
637     default:
638         /* keep it anyway, the linker may know what to do with it */
639         strarray_add(files, strmake("-l%s", library));
640         break;
641     }
642     free(fullname);
643 }
644
645 /* hack a main or WinMain function to work around Mingw's lack of Unicode support */
646 static const char *mingw_unicode_hack( struct options *opts )
647 {
648     char *main_stub = get_temp_file( opts->output_name, ".c" );
649
650     create_file( main_stub, 0644,
651                  "typedef unsigned short wchar_t;\n"
652                  "extern void * __stdcall LoadLibraryA(const char *);\n"
653                  "extern void * __stdcall GetProcAddress(void *,const char *);\n"
654                  "extern int wmain( int argc, wchar_t *argv[] );\n\n"
655                  "int main( int argc, char *argv[] )\n{\n"
656                  "    int wargc;\n"
657                  "    wchar_t **wargv, **wenv;\n"
658                  "    void *msvcrt = LoadLibraryA( \"msvcrt.dll\" );\n"
659                  "    void (*__wgetmainargs)(int *argc, wchar_t** *wargv, wchar_t** *wenvp, int expand_wildcards,\n"
660                  "                           int *new_mode) = GetProcAddress( msvcrt, \"__wgetmainargs\" );\n"
661                  "    __wgetmainargs( &wargc, &wargv, &wenv, 0, 0 );\n"
662                  "    return wmain( wargc, wargv );\n}\n" );
663     return compile_to_object( opts, main_stub, NULL );
664 }
665
666 static void build(struct options* opts)
667 {
668     strarray *lib_dirs, *files;
669     strarray *spec_args, *link_args;
670     char *output_file;
671     const char *spec_o_name;
672     const char *output_name, *spec_file, *lang;
673     int generate_app_loader = 1;
674     int fake_module = 0;
675     unsigned int j;
676
677     /* NOTE: for the files array we'll use the following convention:
678      *    -axxx:  xxx is an archive (.a)
679      *    -dxxx:  xxx is a DLL (.def)
680      *    -lxxx:  xxx is an unsorted library
681      *    -oxxx:  xxx is an object (.o)
682      *    -rxxx:  xxx is a resource (.res)
683      *    -sxxx:  xxx is a shared lib (.so)
684      *    -xlll:  lll is the language (c, c++, etc.)
685      */
686
687     output_file = strdup( opts->output_name ? opts->output_name : "a.out" );
688
689     /* 'winegcc -o app xxx.exe.so' only creates the load script */
690     if (opts->files->size == 1 && strendswith(opts->files->base[0], ".exe.so"))
691     {
692         create_file(output_file, 0755, app_loader_template, opts->files->base[0]);
693         return;
694     }
695
696     /* generate app loader only for .exe */
697     if (opts->shared || strendswith(output_file, ".so"))
698         generate_app_loader = 0;
699
700     if (strendswith(output_file, ".fake")) fake_module = 1;
701
702     /* normalize the filename a bit: strip .so, ensure it has proper ext */
703     if (strendswith(output_file, ".so")) 
704         output_file[strlen(output_file) - 3] = 0;
705     if ((output_name = strrchr(output_file, '/'))) output_name++;
706     else output_name = output_file;
707     if (!strchr(output_name, '.'))
708         output_file = strmake("%s.%s", output_file, opts->shared ? "dll" : "exe");
709
710     /* get the filename from the path */
711     if ((output_name = strrchr(output_file, '/'))) output_name++;
712     else output_name = output_file;
713
714     /* prepare the linking path */
715     if (!opts->wine_objdir)
716     {
717         char *lib_dir = get_lib_dir( opts );
718         lib_dirs = strarray_dup(opts->lib_dirs);
719         strarray_add( lib_dirs, strmake( "%s/wine", lib_dir ));
720         strarray_add( lib_dirs, lib_dir );
721     }
722     else
723     {
724         lib_dirs = strarray_alloc();
725         strarray_add(lib_dirs, strmake("%s/dlls", opts->wine_objdir));
726         strarray_add(lib_dirs, strmake("%s/libs/wine", opts->wine_objdir));
727         strarray_addall(lib_dirs, opts->lib_dirs);
728     }
729
730     /* mark the files with their appropriate type */
731     spec_file = lang = 0;
732     files = strarray_alloc();
733     link_args = strarray_alloc();
734     for ( j = 0; j < opts->files->size; j++ )
735     {
736         const char* file = opts->files->base[j];
737         if (file[0] != '-')
738         {
739             switch(get_file_type(file))
740             {
741                 case file_def:
742                 case file_spec:
743                     if (spec_file)
744                         error("Only one spec file can be specified\n");
745                     spec_file = file;
746                     break;
747                 case file_rc:
748                     /* FIXME: invoke wrc to build it */
749                     error("Can't compile .rc file at the moment: %s\n", file);
750                     break;
751                 case file_res:
752                     strarray_add(files, strmake("-r%s", file));
753                     break;
754                 case file_obj:
755                     strarray_add(files, strmake("-o%s", file));
756                     break;
757                 case file_arh:
758                     strarray_add(files, strmake("-a%s", file));
759                     break;
760                 case file_so:
761                     strarray_add(files, strmake("-s%s", file));
762                     break;
763                 case file_na:
764                     error("File does not exist: %s\n", file);
765                     break;
766                 default:
767                     file = compile_to_object(opts, file, lang);
768                     strarray_add(files, strmake("-o%s", file));
769                     break;
770             }
771         }
772         else if (file[1] == 'l')
773             add_library(opts, lib_dirs, files, file + 2 );
774         else if (file[1] == 'x')
775             lang = file;
776     }
777
778     /* building for Windows is completely different */
779
780     if (opts->target_platform == PLATFORM_WINDOWS || opts->target_platform == PLATFORM_CYGWIN)
781     {
782         strarray *resources = strarray_alloc();
783         char *res_o_name = NULL;
784
785         if (opts->win16_app)
786             error( "Building 16-bit code is not supported for Windows\n" );
787
788         if (opts->shared)
789         {
790             /* run winebuild to generate the .def file */
791             char *spec_def_name = get_temp_file(output_name, ".spec.def");
792             spec_args = get_winebuild_args( opts );
793             strarray_add(spec_args, "--def");
794             strarray_add(spec_args, "-o");
795             strarray_add(spec_args, spec_def_name);
796             if (spec_file)
797             {
798                 strarray_add(spec_args, "--export");
799                 strarray_add(spec_args, spec_file);
800             }
801             spawn(opts->prefix, spec_args, 0);
802             strarray_free(spec_args);
803
804             if (opts->target) strarray_add(link_args, strmake("%s-dllwrap", opts->target));
805             else strarray_add(link_args, "dllwrap");
806             if (verbose) strarray_add(link_args, "-v");
807             strarray_add(link_args, "-k");
808             strarray_add(link_args, "--def");
809             strarray_add(link_args, spec_def_name);
810         }
811         else
812         {
813             strarray_addall(link_args, get_translator(opts));
814             strarray_add(link_args, opts->gui_app ? "-mwindows" : "-mconsole");
815             if (opts->nodefaultlibs) strarray_add(link_args, "-nodefaultlibs");
816         }
817
818         for ( j = 0 ; j < opts->linker_args->size ; j++ )
819             strarray_add(link_args, opts->linker_args->base[j]);
820
821         strarray_add(link_args, "-o");
822         strarray_add(link_args, output_file);
823
824         if (opts->image_base)
825             strarray_add(link_args, strmake("-Wl,--image-base,%s", opts->image_base));
826
827         if (opts->large_address_aware) strarray_add( link_args, "-Wl,--large-address-aware" );
828
829         if (opts->unicode_app && !opts->shared)
830             strarray_add(link_args, mingw_unicode_hack(opts));
831
832         for ( j = 0; j < lib_dirs->size; j++ )
833             strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
834
835         if (!opts->nodefaultlibs)
836         {
837             add_library(opts, lib_dirs, files, "winecrt0");
838             add_library(opts, lib_dirs, files, "kernel32");
839             add_library(opts, lib_dirs, files, "ntdll");
840         }
841         if (opts->shared && !opts->nostdlib) add_library(opts, lib_dirs, files, "wine");
842         if (!opts->shared && opts->use_msvcrt && opts->target_platform == PLATFORM_CYGWIN)
843             add_library(opts, lib_dirs, files, "msvcrt");
844
845         for ( j = 0; j < files->size; j++ )
846         {
847             const char* name = files->base[j] + 2;
848
849             switch(files->base[j][1])
850             {
851             case 'l':
852             case 'd':
853                 strarray_add(link_args, strmake("-l%s", name));
854                 break;
855             case 's':
856             case 'o':
857                 strarray_add(link_args, name);
858                 break;
859             case 'a':
860                 if (strchr(name, '/'))
861                 {
862                     /* turn the path back into -Ldir -lfoo options
863                      * this makes sure that we use the specified libs even
864                      * when mingw adds its own import libs to the link */
865                     char *lib = xstrdup( name );
866                     char *p = strrchr( lib, '/' );
867
868                     *p++ = 0;
869                     if (!strncmp( p, "lib", 3 ))
870                     {
871                         char *ext = strrchr( p, '.' );
872
873                         if (ext) *ext = 0;
874                         p += 3;
875                         strarray_add(link_args, strmake("-L%s", lib ));
876                         strarray_add(link_args, strmake("-l%s", p ));
877                         free( lib );
878                         break;
879                     }
880                     free( lib );
881                 }
882                 strarray_add(link_args, name);
883                 break;
884             case 'r':
885                 if (!res_o_name)
886                 {
887                     res_o_name = get_temp_file( output_name, ".res.o" );
888                     strarray_add( link_args, res_o_name );
889                 }
890                 strarray_add( resources, name );
891                 break;
892             }
893         }
894
895         if (res_o_name) compile_resources_to_object( opts, resources, res_o_name );
896
897         spawn(opts->prefix, link_args, 0);
898         strarray_free (resources);
899         strarray_free (link_args);
900         strarray_free (lib_dirs);
901         strarray_free (files);
902         return;
903     }
904
905     /* add the default libraries, if needed */
906     if (!opts->nostdlib && opts->use_msvcrt) add_library(opts, lib_dirs, files, "msvcrt");
907
908     if (!opts->wine_objdir && !opts->nodefaultlibs) 
909     {
910         if (opts->gui_app) 
911         {
912             add_library(opts, lib_dirs, files, "shell32");
913             add_library(opts, lib_dirs, files, "comdlg32");
914             add_library(opts, lib_dirs, files, "gdi32");
915         }
916         add_library(opts, lib_dirs, files, "advapi32");
917         add_library(opts, lib_dirs, files, "user32");
918     }
919
920     if (!opts->nodefaultlibs)
921     {
922         add_library(opts, lib_dirs, files, "winecrt0");
923         if (opts->win16_app) add_library(opts, lib_dirs, files, "kernel");
924         add_library(opts, lib_dirs, files, "kernel32");
925         add_library(opts, lib_dirs, files, "ntdll");
926     }
927     if (!opts->nostdlib) add_library(opts, lib_dirs, files, "wine");
928
929     /* run winebuild to generate the .spec.o file */
930     spec_args = get_winebuild_args( opts );
931     spec_o_name = get_temp_file(output_name, ".spec.o");
932     if (opts->force_pointer_size)
933         strarray_add(spec_args, strmake("-m%u", 8 * opts->force_pointer_size ));
934     strarray_addall(spec_args, strarray_fromstring(DLLFLAGS, " "));
935     strarray_add(spec_args, opts->shared ? "--dll" : "--exe");
936     if (fake_module)
937     {
938         strarray_add(spec_args, "--fake-module");
939         strarray_add(spec_args, "-o");
940         strarray_add(spec_args, output_file);
941     }
942     else
943     {
944         strarray_add(spec_args, "-o");
945         strarray_add(spec_args, spec_o_name);
946     }
947     if (spec_file)
948     {
949         strarray_add(spec_args, "-E");
950         strarray_add(spec_args, spec_file);
951     }
952     if (opts->win16_app) strarray_add(spec_args, "-m16");
953
954     if (!opts->shared)
955     {
956         strarray_add(spec_args, "-F");
957         strarray_add(spec_args, output_name);
958         strarray_add(spec_args, "--subsystem");
959         strarray_add(spec_args, opts->gui_app ? "windows" : "console");
960         if (opts->unicode_app)
961         {
962             strarray_add(spec_args, "--entry");
963             strarray_add(spec_args, "__wine_spec_exe_wentry");
964         }
965         if (opts->large_address_aware) strarray_add( spec_args, "--large-address-aware" );
966     }
967
968     for ( j = 0; j < lib_dirs->size; j++ )
969         strarray_add(spec_args, strmake("-L%s", lib_dirs->base[j]));
970
971     for ( j = 0 ; j < opts->winebuild_args->size ; j++ )
972         strarray_add(spec_args, opts->winebuild_args->base[j]);
973
974     /* add resource files */
975     for ( j = 0; j < files->size; j++ )
976         if (files->base[j][1] == 'r') strarray_add(spec_args, files->base[j]);
977
978     /* add other files */
979     strarray_add(spec_args, "--");
980     for ( j = 0; j < files->size; j++ )
981     {
982         switch(files->base[j][1])
983         {
984             case 'd':
985             case 'a':
986             case 'o':
987                 strarray_add(spec_args, files->base[j] + 2);
988                 break;
989         }
990     }
991
992     spawn(opts->prefix, spec_args, 0);
993     strarray_free (spec_args);
994     if (fake_module) return;  /* nothing else to do */
995
996     /* link everything together now */
997     strarray_addall(link_args, get_translator(opts));
998     strarray_addall(link_args, strarray_fromstring(LDDLLFLAGS, " "));
999
1000     strarray_add(link_args, "-o");
1001     strarray_add(link_args, strmake("%s.so", output_file));
1002
1003     for ( j = 0 ; j < opts->linker_args->size ; j++ ) 
1004         strarray_add(link_args, opts->linker_args->base[j]);
1005
1006     switch (opts->target_platform)
1007     {
1008     case PLATFORM_APPLE:
1009         if (opts->image_base)
1010         {
1011             strarray_add(link_args, "-image_base");
1012             strarray_add(link_args, opts->image_base);
1013         }
1014         if (opts->strip)
1015             strarray_add(link_args, "-Wl,-x");
1016         break;
1017     case PLATFORM_SOLARIS:
1018         {
1019             char *mapfile = get_temp_file( output_name, ".map" );
1020             const char *align = opts->section_align ? opts->section_align : "0x1000";
1021
1022             create_file( mapfile, 0644, "text = A%s;\ndata = A%s;\n", align, align );
1023             strarray_add(link_args, strmake("-Wl,-M,%s", mapfile));
1024             strarray_add(tmp_files, mapfile);
1025         }
1026         break;
1027     default:
1028         break;
1029     }
1030
1031     for ( j = 0; j < lib_dirs->size; j++ )
1032         strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
1033
1034     strarray_add(link_args, spec_o_name);
1035
1036     for ( j = 0; j < files->size; j++ )
1037     {
1038         const char* name = files->base[j] + 2;
1039         switch(files->base[j][1])
1040         {
1041             case 'l':
1042                 strarray_add(link_args, strmake("-l%s", name));
1043                 break;
1044             case 's':
1045             case 'a':
1046             case 'o':
1047                 strarray_add(link_args, name);
1048                 break;
1049         }
1050     }
1051
1052     if (!opts->nostdlib) 
1053     {
1054         strarray_add(link_args, "-lm");
1055         strarray_add(link_args, "-lc");
1056     }
1057
1058     spawn(opts->prefix, link_args, 0);
1059     strarray_free (link_args);
1060
1061     /* set the base address */
1062     if (opts->image_base)
1063     {
1064         const char *prelink = PRELINK;
1065         if (prelink[0] && strcmp(prelink,"false"))
1066         {
1067             strarray *prelink_args = strarray_alloc();
1068             strarray_add(prelink_args, prelink);
1069             strarray_add(prelink_args, "--reloc-only");
1070             strarray_add(prelink_args, opts->image_base);
1071             strarray_add(prelink_args, strmake("%s.so", output_file));
1072             spawn(opts->prefix, prelink_args, 1);
1073             strarray_free(prelink_args);
1074         }
1075     }
1076
1077     /* create the loader script */
1078     if (generate_app_loader)
1079         create_file(output_file, 0755, app_loader_template, strmake("%s.so", output_name));
1080 }
1081
1082
1083 static void forward(int argc, char **argv, struct options* opts)
1084 {
1085     strarray* args = strarray_alloc();
1086     int j;
1087
1088     strarray_addall(args, get_translator(opts));
1089
1090     for( j = 1; j < argc; j++ ) 
1091         strarray_add(args, argv[j]);
1092
1093     spawn(opts->prefix, args, 0);
1094     strarray_free (args);
1095 }
1096
1097 /*
1098  *      Linker Options
1099  *          object-file-name  -llibrary -nostartfiles  -nodefaultlibs
1100  *          -nostdlib -s  -static  -static-libgcc  -shared  -shared-libgcc
1101  *          -symbolic -Wl,option  -Xlinker option -u symbol
1102  *          -framework name
1103  */
1104 static int is_linker_arg(const char* arg)
1105 {
1106     static const char* link_switches[] = 
1107     {
1108         "-nostartfiles", "-nostdlib", "-s",
1109         "-static", "-static-libgcc", "-shared", "-shared-libgcc", "-symbolic",
1110         "-framework", "--coverage", "-fprofile-generate", "-fprofile-use"
1111     };
1112     unsigned int j;
1113
1114     switch (arg[1]) 
1115     {
1116         case 'R':
1117         case 'z':
1118         case 'l':
1119         case 'u':
1120             return 1;
1121         case 'W':
1122             if (strncmp("-Wl,", arg, 4) == 0) return 1;
1123             break;
1124         case 'X':
1125             if (strcmp("-Xlinker", arg) == 0) return 1;
1126             break;
1127         case 'a':
1128             if (strcmp("-arch", arg) == 0) return 1;
1129             break;
1130     }
1131
1132     for (j = 0; j < sizeof(link_switches)/sizeof(link_switches[0]); j++)
1133         if (strcmp(link_switches[j], arg) == 0) return 1;
1134
1135     return 0;
1136 }
1137
1138 /*
1139  *      Target Options
1140  *          -b machine  -V version
1141  */
1142 static int is_target_arg(const char* arg)
1143 {
1144     return arg[1] == 'b' || arg[1] == 'V';
1145 }
1146
1147
1148 /*
1149  *      Directory Options
1150  *          -Bprefix  -Idir  -I-  -Ldir  -specs=file
1151  */
1152 static int is_directory_arg(const char* arg)
1153 {
1154     return arg[1] == 'B' || arg[1] == 'L' || arg[1] == 'I' || strncmp("-specs=", arg, 7) == 0;
1155 }
1156
1157 /*
1158  *      MinGW Options
1159  *          -mno-cygwin -mwindows -mconsole -mthreads -municode
1160  */ 
1161 static int is_mingw_arg(const char* arg)
1162 {
1163     static const char* mingw_switches[] = 
1164     {
1165         "-mno-cygwin", "-mwindows", "-mconsole", "-mthreads", "-municode"
1166     };
1167     unsigned int j;
1168
1169     for (j = 0; j < sizeof(mingw_switches)/sizeof(mingw_switches[0]); j++)
1170         if (strcmp(mingw_switches[j], arg) == 0) return 1;
1171
1172     return 0;
1173 }
1174
1175 static void parse_target_option( struct options *opts, const char *target )
1176 {
1177     char *p, *platform, *spec = xstrdup( target );
1178     unsigned int i;
1179
1180     /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
1181
1182     /* get the CPU part */
1183
1184     if (!(p = strchr( spec, '-' ))) error( "Invalid target specification '%s'\n", target );
1185     *p++ = 0;
1186     for (i = 0; i < sizeof(cpu_names)/sizeof(cpu_names[0]); i++)
1187     {
1188         if (!strcmp( cpu_names[i].name, spec ))
1189         {
1190             opts->target_cpu = cpu_names[i].cpu;
1191             break;
1192         }
1193     }
1194     if (i == sizeof(cpu_names)/sizeof(cpu_names[0]))
1195         error( "Unrecognized CPU '%s'\n", spec );
1196     platform = p;
1197     if ((p = strrchr( p, '-' ))) platform = p + 1;
1198
1199     /* get the OS part */
1200
1201     opts->target_platform = PLATFORM_UNSPECIFIED;  /* default value */
1202     for (i = 0; i < sizeof(platform_names)/sizeof(platform_names[0]); i++)
1203     {
1204         if (!strncmp( platform_names[i].name, platform, strlen(platform_names[i].name) ))
1205         {
1206             opts->target_platform = platform_names[i].platform;
1207             break;
1208         }
1209     }
1210
1211     free( spec );
1212     opts->target = xstrdup( target );
1213 }
1214
1215 int main(int argc, char **argv)
1216 {
1217     int i, c, next_is_arg = 0, linking = 1;
1218     int raw_compiler_arg, raw_linker_arg;
1219     const char* option_arg;
1220     struct options opts;
1221     char* lang = 0;
1222     char* str;
1223
1224 #ifdef SIGHUP
1225     signal( SIGHUP, exit_on_signal );
1226 #endif
1227     signal( SIGTERM, exit_on_signal );
1228     signal( SIGINT, exit_on_signal );
1229 #ifdef HAVE_SIGADDSET
1230     sigemptyset( &signal_mask );
1231     sigaddset( &signal_mask, SIGHUP );
1232     sigaddset( &signal_mask, SIGTERM );
1233     sigaddset( &signal_mask, SIGINT );
1234 #endif
1235
1236     /* setup tmp file removal at exit */
1237     tmp_files = strarray_alloc();
1238     atexit(clean_temp_files);
1239     
1240     /* initialize options */
1241     memset(&opts, 0, sizeof(opts));
1242     opts.target_cpu = build_cpu;
1243     opts.target_platform = build_platform;
1244     opts.lib_dirs = strarray_alloc();
1245     opts.files = strarray_alloc();
1246     opts.linker_args = strarray_alloc();
1247     opts.compiler_args = strarray_alloc();
1248     opts.winebuild_args = strarray_alloc();
1249
1250     /* determine the processor type */
1251     if (strendswith(argv[0], "winecpp")) opts.processor = proc_cpp;
1252     else if (strendswith(argv[0], "++")) opts.processor = proc_cxx;
1253     
1254     /* parse options */
1255     for ( i = 1 ; i < argc ; i++ ) 
1256     {
1257         if (argv[i][0] == '-')  /* option */
1258         {
1259             /* determine if this switch is followed by a separate argument */
1260             next_is_arg = 0;
1261             option_arg = 0;
1262             switch(argv[i][1])
1263             {
1264                 case 'x': case 'o': case 'D': case 'U':
1265                 case 'I': case 'A': case 'l': case 'u':
1266                 case 'b': case 'V': case 'G': case 'L':
1267                 case 'B': case 'R': case 'z':
1268                     if (argv[i][2]) option_arg = &argv[i][2];
1269                     else next_is_arg = 1;
1270                     break;
1271                 case 'i':
1272                     next_is_arg = 1;
1273                     break;
1274                 case 'a':
1275                     if (strcmp("-aux-info", argv[i]) == 0)
1276                         next_is_arg = 1;
1277                     if (strcmp("-arch", argv[i]) == 0)
1278                         next_is_arg = 1;
1279                     break;
1280                 case 'X':
1281                     if (strcmp("-Xlinker", argv[i]) == 0)
1282                         next_is_arg = 1;
1283                     break;
1284                 case 'M':
1285                     c = argv[i][2];
1286                     if (c == 'F' || c == 'T' || c == 'Q')
1287                     {
1288                         if (argv[i][3]) option_arg = &argv[i][3];
1289                         else next_is_arg = 1;
1290                     }
1291                     break;
1292                 case 'f':
1293                     if (strcmp("-framework", argv[i]) == 0)
1294                         next_is_arg = 1;
1295                     break;
1296                 case '-':
1297                     if (strcmp("--param", argv[i]) == 0)
1298                         next_is_arg = 1;
1299                     break;
1300             }
1301             if (next_is_arg)
1302             {
1303                 if (i + 1 >= argc) error("option -%c requires an argument\n", argv[i][1]);
1304                 option_arg = argv[i+1];
1305             }
1306
1307             /* determine what options go 'as is' to the linker & the compiler */
1308             raw_compiler_arg = raw_linker_arg = 0;
1309             if (is_linker_arg(argv[i])) 
1310             {
1311                 raw_linker_arg = 1;
1312             }
1313             else 
1314             {
1315                 if (is_directory_arg(argv[i]) || is_target_arg(argv[i]))
1316                     raw_linker_arg = 1;
1317                 raw_compiler_arg = !is_mingw_arg(argv[i]);
1318             }
1319
1320             /* these things we handle explicitly so we don't pass them 'as is' */
1321             if (argv[i][1] == 'l' || argv[i][1] == 'I' || argv[i][1] == 'L')
1322                 raw_linker_arg = 0;
1323             if (argv[i][1] == 'c' || argv[i][1] == 'L')
1324                 raw_compiler_arg = 0;
1325             if (argv[i][1] == 'o' || argv[i][1] == 'b' || argv[i][1] == 'V')
1326                 raw_compiler_arg = raw_linker_arg = 0;
1327
1328             /* do a bit of semantic analysis */
1329             switch (argv[i][1]) 
1330             {
1331                 case 'B':
1332                     str = strdup(option_arg);
1333                     if (strendswith(str, "/")) str[strlen(str) - 1] = 0;
1334                     if (strendswith(str, "/tools/winebuild"))
1335                     {
1336                         char *objdir = strdup(str);
1337                         objdir[strlen(objdir) - sizeof("/tools/winebuild") + 1] = 0;
1338                         opts.wine_objdir = objdir;
1339                         /* don't pass it to the compiler, this generates warnings */
1340                         raw_compiler_arg = raw_linker_arg = 0;
1341                     }
1342                     if (!opts.prefix) opts.prefix = strarray_alloc();
1343                     strarray_add(opts.prefix, str);
1344                     break;
1345                 case 'b':
1346                     parse_target_option( &opts, option_arg );
1347                     break;
1348                 case 'V':
1349                     opts.version = xstrdup( option_arg );
1350                     break;
1351                 case 'c':        /* compile or assemble */
1352                     if (argv[i][2] == 0) opts.compile_only = 1;
1353                     /* fall through */
1354                 case 'S':        /* generate assembler code */
1355                 case 'E':        /* preprocess only */
1356                     if (argv[i][2] == 0) linking = 0;
1357                     break;
1358                 case 'f':
1359                     if (strcmp("-fno-short-wchar", argv[i]) == 0)
1360                         opts.noshortwchar = 1;
1361                     else if (!strcmp("-fasynchronous-unwind-tables", argv[i]))
1362                         opts.unwind_tables = 1;
1363                     else if (!strcmp("-fno-asynchronous-unwind-tables", argv[i]))
1364                         opts.unwind_tables = 0;
1365                     break;
1366                 case 'l':
1367                     strarray_add(opts.files, strmake("-l%s", option_arg));
1368                     break;
1369                 case 'L':
1370                     strarray_add(opts.lib_dirs, option_arg);
1371                     break;
1372                 case 'M':        /* map file generation */
1373                     linking = 0;
1374                     break;
1375                 case 'm':
1376                     if (strcmp("-mno-cygwin", argv[i]) == 0)
1377                         opts.use_msvcrt = 1;
1378                     else if (strcmp("-mwindows", argv[i]) == 0)
1379                         opts.gui_app = 1;
1380                     else if (strcmp("-mconsole", argv[i]) == 0)
1381                         opts.gui_app = 0;
1382                     else if (strcmp("-municode", argv[i]) == 0)
1383                         opts.unicode_app = 1;
1384                     else if (strcmp("-m16", argv[i]) == 0)
1385                         opts.win16_app = 1;
1386                     else if (strcmp("-m32", argv[i]) == 0)
1387                     {
1388                         if (opts.target_cpu == CPU_x86_64)
1389                             opts.target_cpu = CPU_x86;
1390                         opts.force_pointer_size = 4;
1391                         raw_linker_arg = 1;
1392                     }
1393                     else if (strcmp("-m64", argv[i]) == 0)
1394                     {
1395                         opts.force_pointer_size = 8;
1396                         raw_linker_arg = 1;
1397                     }
1398                     else if (strncmp("-mcpu=", argv[i], 6) == 0)
1399                         strarray_add(opts.winebuild_args, argv[i]);
1400                     break;
1401                 case 'n':
1402                     if (strcmp("-nostdinc", argv[i]) == 0)
1403                         opts.nostdinc = 1;
1404                     else if (strcmp("-nodefaultlibs", argv[i]) == 0)
1405                         opts.nodefaultlibs = 1;
1406                     else if (strcmp("-nostdlib", argv[i]) == 0)
1407                         opts.nostdlib = 1;
1408                     else if (strcmp("-nostartfiles", argv[i]) == 0)
1409                         opts.nostartfiles = 1;
1410                     break;
1411                 case 'o':
1412                     opts.output_name = option_arg;
1413                     break;
1414                 case 's':
1415                     if (strcmp("-static", argv[i]) == 0) 
1416                         linking = -1;
1417                     else if(strcmp("-save-temps", argv[i]) == 0)
1418                         keep_generated = 1;
1419                     else if(strcmp("-shared", argv[i]) == 0)
1420                     {
1421                         opts.shared = 1;
1422                         raw_compiler_arg = raw_linker_arg = 0;
1423                     }
1424                     else if (strcmp("-s", argv[i]) == 0 && opts.target_platform == PLATFORM_APPLE)
1425                     {
1426                         /* On Mac, change -s into -Wl,-x. ld's -s switch
1427                          * is deprecated, and it doesn't work on Tiger with
1428                          * MH_BUNDLEs anyway
1429                          */
1430                         opts.strip = 1;
1431                         raw_linker_arg = 0;
1432                     }
1433                     break;
1434                 case 'v':
1435                     if (argv[i][2] == 0) verbose++;
1436                     break;
1437                 case 'W':
1438                     if (strncmp("-Wl,", argv[i], 4) == 0)
1439                     {
1440                         unsigned int j;
1441                         strarray* Wl = strarray_fromstring(argv[i] + 4, ",");
1442                         for (j = 0; j < Wl->size; j++)
1443                         {
1444                             if (!strcmp(Wl->base[j], "--image-base") && j < Wl->size - 1)
1445                             {
1446                                 opts.image_base = strdup( Wl->base[++j] );
1447                                 continue;
1448                             }
1449                             if (!strcmp(Wl->base[j], "--section-alignment") && j < Wl->size - 1)
1450                             {
1451                                 opts.section_align = strdup( Wl->base[++j] );
1452                                 continue;
1453                             }
1454                             if (!strcmp(Wl->base[j], "--large-address-aware"))
1455                             {
1456                                 opts.large_address_aware = 1;
1457                                 continue;
1458                             }
1459                             if (!strcmp(Wl->base[j], "-static")) linking = -1;
1460                             strarray_add(opts.linker_args, strmake("-Wl,%s",Wl->base[j]));
1461                         }
1462                         strarray_free(Wl);
1463                         raw_compiler_arg = raw_linker_arg = 0;
1464                     }
1465                     else if (strncmp("-Wb,", argv[i], 4) == 0)
1466                     {
1467                         strarray* Wb = strarray_fromstring(argv[i] + 4, ",");
1468                         strarray_addall(opts.winebuild_args, Wb);
1469                         strarray_free(Wb);
1470                         /* don't pass it to the compiler, it generates errors */
1471                         raw_compiler_arg = raw_linker_arg = 0;
1472                     }
1473                     break;
1474                 case 'x':
1475                     lang = strmake("-x%s", option_arg);
1476                     strarray_add(opts.files, lang);
1477                     /* we'll pass these flags ourselves, explicitly */
1478                     raw_compiler_arg = raw_linker_arg = 0;
1479                     break;
1480                 case '-':
1481                     if (strcmp("-static", argv[i]+1) == 0)
1482                         linking = -1;
1483                     else if (!strncmp("--sysroot", argv[i], 9) && opts.wine_objdir)
1484                     {
1485                         if (argv[i][9] == '=') opts.wine_objdir = argv[i] + 10;
1486                         else opts.wine_objdir = argv[++i];
1487                         raw_compiler_arg = raw_linker_arg = 0;
1488                     }
1489                     else if (!strncmp("--lib-suffix", argv[i], 12) && opts.wine_objdir)
1490                     {
1491                         if (argv[i][12] == '=') opts.lib_suffix = argv[i] + 13;
1492                         else opts.lib_suffix = argv[++i];
1493                         raw_compiler_arg = raw_linker_arg = 0;
1494                     }
1495                     break;
1496             }
1497
1498             /* put the arg into the appropriate bucket */
1499             if (raw_linker_arg) 
1500             {
1501                 strarray_add(opts.linker_args, argv[i]);
1502                 if (next_is_arg && (i + 1 < argc)) 
1503                     strarray_add(opts.linker_args, argv[i + 1]);
1504             }
1505             if (raw_compiler_arg)
1506             {
1507                 strarray_add(opts.compiler_args, argv[i]);
1508                 if (next_is_arg && (i + 1 < argc))
1509                     strarray_add(opts.compiler_args, argv[i + 1]);
1510             }
1511
1512             /* skip the next token if it's an argument */
1513             if (next_is_arg) i++;
1514         }
1515         else
1516         {
1517             strarray_add(opts.files, argv[i]);
1518         } 
1519     }
1520
1521     if (opts.processor == proc_cpp) linking = 0;
1522     if (linking == -1) error("Static linking is not supported\n");
1523
1524     if (opts.files->size == 0) forward(argc, argv, &opts);
1525     else if (linking) build(&opts);
1526     else compile(&opts, lang);
1527
1528     return 0;
1529 }