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