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