output_name already contains .exe extension, don't add it again for -F
[wine/wine64.git] / tools / winegcc / winegcc.c
blob8abddffa7a5f89f9c8458aab42ccb1d2a22e60c5
1 /*
2 * MinGW wrapper: makes gcc behave like MinGW.
4 * Copyright 2000 Manuel Novoa III
5 * Copyright 2000 Francois Gouget
6 * Copyright 2002 Dimitrie O. Paun
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.
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.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * DESCRIPTION
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:
30 * Compiler:
31 * -x language
32 * -o filename
33 * -aux-info filename
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
51 * Linking:
52 * -l library
53 * -Xlinker option
54 * -u symbol
56 * Misc:
57 * -b machine
58 * -V version
59 * -G num (see NOTES below)
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.
67 * Special interest options
69 * Assembler Option
70 * -Wa,option
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
77 * Directory Options
78 * -Bprefix -Idir -I- -Ldir -specs=file
80 * Target Options
81 * -b machine -V version
83 * Please note that the Target Options are relevant to everything:
84 * compiler, linker, assembler, preprocessor.
86 */
88 #include "config.h"
89 #include "wine/port.h"
91 #include <stdio.h>
92 #include <stdlib.h>
93 #include <signal.h>
94 #include <stdarg.h>
95 #include <string.h>
96 #include <errno.h>
98 #include "utils.h"
100 static const char* app_loader_template =
101 "#!/bin/sh\n"
102 "\n"
103 "appname=\"%s\"\n"
104 "# determine the application directory\n"
105 "appdir=''\n"
106 "case \"$0\" in\n"
107 " */*)\n"
108 " # $0 contains a path, use it\n"
109 " appdir=`dirname \"$0\"`\n"
110 " ;;\n"
111 " *)\n"
112 " # no directory in $0, search in PATH\n"
113 " saved_ifs=$IFS\n"
114 " IFS=:\n"
115 " for d in $PATH\n"
116 " do\n"
117 " IFS=$saved_ifs\n"
118 " if [ -x \"$d/$appname\" ]; then appdir=\"$d\"; break; fi\n"
119 " done\n"
120 " ;;\n"
121 "esac\n"
122 "\n"
123 "# figure out the full app path\n"
124 "if [ -n \"$appdir\" ]; then\n"
125 " apppath=\"$appdir/$appname\"\n"
126 " WINEDLLPATH=\"$appdir:$WINEDLLPATH\"\n"
127 " export WINEDLLPATH\n"
128 "else\n"
129 " apppath=\"$appname\"\n"
130 "fi\n"
131 "\n"
132 "# determine the WINELOADER\n"
133 "if [ ! -x \"$WINELOADER\" ]; then WINELOADER=\"wine\"; fi\n"
134 "\n"
135 "# and try to start the app\n"
136 "exec \"$WINELOADER\" \"$apppath\" \"$@\"\n"
139 static int keep_generated = 0;
140 static strarray* tmp_files;
141 #ifdef HAVE_SIGSET_T
142 static sigset_t signal_mask;
143 #endif
145 struct options
147 enum { proc_cc = 0, proc_cxx = 1, proc_cpp = 2} processor;
148 int shared;
149 int use_msvcrt;
150 int nostdinc;
151 int nostdlib;
152 int nodefaultlibs;
153 int noshortwchar;
154 int gui_app;
155 int compile_only;
156 int wine_mode;
157 const char* output_name;
158 strarray* prefix;
159 strarray* lib_dirs;
160 strarray* linker_args;
161 strarray* compiler_args;
162 strarray* winebuild_args;
163 strarray* files;
166 static void clean_temp_files()
168 int i;
170 if (keep_generated) return;
172 for (i = 0; i < tmp_files->size; i++)
173 unlink(tmp_files->base[i]);
176 /* clean things up when aborting on a signal */
177 static void exit_on_signal( int sig )
179 exit(1); /* this will call the atexit functions */
182 static char* get_temp_file(const char* prefix, const char* suffix)
184 int fd;
185 char* tmp = strmake("%s-XXXXXX%s", prefix, suffix);
187 #ifdef HAVE_SIGPROCMASK
188 sigset_t old_set;
189 /* block signals while manipulating the temp files list */
190 sigprocmask( SIG_BLOCK, &signal_mask, &old_set );
191 #endif
192 fd = mkstemps( tmp, strlen(suffix) );
193 if (fd == -1)
195 /* could not create it in current directory, try in /tmp */
196 free(tmp);
197 tmp = strmake("/tmp/%s-XXXXXX%s", prefix, suffix);
198 fd = mkstemps( tmp, strlen(suffix) );
199 if (fd == -1) error( "could not create temp file" );
201 close( fd );
202 strarray_add(tmp_files, tmp);
203 #ifdef HAVE_SIGPROCMASK
204 sigprocmask( SIG_SETMASK, &old_set, NULL );
205 #endif
206 return tmp;
209 static const strarray* get_translator(struct options* opts)
211 static strarray* cpp = 0;
212 static strarray* cc = 0;
213 static strarray* cxx = 0;
215 switch(opts->processor)
217 case proc_cpp:
218 if (!cpp) cpp = strarray_fromstring(CPP, " ");
219 return cpp;
220 case proc_cc:
221 if (!cc) cc = strarray_fromstring(CC, " ");
222 return cc;
223 case proc_cxx:
224 if (!cxx) cxx = strarray_fromstring(CXX, " ");
225 return cxx;
227 error("Unknown processor");
230 static void compile(struct options* opts, const char* lang)
232 strarray* comp_args = strarray_alloc();
233 int j, gcc_defs = 0;
235 switch(opts->processor)
237 case proc_cpp: gcc_defs = 1; break;
238 #ifdef __GNUC__
239 /* Note: if the C compiler is gcc we assume the C++ compiler is too */
240 /* mixing different C and C++ compilers isn't supported in configure anyway */
241 case proc_cc: gcc_defs = 1; break;
242 case proc_cxx: gcc_defs = 1; break;
243 #else
244 case proc_cc: gcc_defs = 0; break;
245 case proc_cxx: gcc_defs = 0; break;
246 #endif
248 strarray_addall(comp_args, get_translator(opts));
250 if (opts->processor != proc_cpp)
252 #ifdef CC_FLAG_SHORT_WCHAR
253 if (!opts->wine_mode && !opts->noshortwchar)
255 strarray_add(comp_args, CC_FLAG_SHORT_WCHAR);
256 strarray_add(comp_args, "-DWINE_UNICODE_NATIVE");
258 #endif
259 strarray_addall(comp_args, strarray_fromstring(DLLFLAGS, " "));
262 strarray_add(comp_args, "-DWIN32");
263 strarray_add(comp_args, "-D_WIN32");
264 strarray_add(comp_args, "-D__WIN32");
265 strarray_add(comp_args, "-D__WIN32__");
266 strarray_add(comp_args, "-D__WINNT");
267 strarray_add(comp_args, "-D__WINNT__");
269 if (gcc_defs)
271 strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__))");
272 strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__))");
273 strarray_add(comp_args, "-D__fastcall=__attribute__((__fastcall__))");
274 strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__))");
275 strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__))");
276 strarray_add(comp_args, "-D_fastcall=__attribute__((__fastcall__))");
277 strarray_add(comp_args, "-D__declspec(x)=__declspec_##x");
278 strarray_add(comp_args, "-D__declspec_align(x)=__attribute__((aligned(x)))");
279 strarray_add(comp_args, "-D__declspec_allocate(x)=__attribute__((section(x)))");
280 strarray_add(comp_args, "-D__declspec_deprecated=__attribute__((deprecated))");
281 strarray_add(comp_args, "-D__declspec_dllimport=__attribute__((dllimport))");
282 strarray_add(comp_args, "-D__declspec_dllexport=__attribute__((dllexport))");
283 strarray_add(comp_args, "-D__declspec_naked=__attribute__((naked))");
284 strarray_add(comp_args, "-D__declspec_noinline=__attribute__((noinline))");
285 strarray_add(comp_args, "-D__declspec_noreturn=__attribute__((noreturn))");
286 strarray_add(comp_args, "-D__declspec_nothrow=__attribute__((nothrow))");
287 strarray_add(comp_args, "-D__declspec_novtable=__attribute__(())"); /* ignore it */
288 strarray_add(comp_args, "-D__declspec_selectany=__attribute__((weak))");
289 strarray_add(comp_args, "-D__declspec_thread=__thread");
292 /* Wine specific defines */
293 strarray_add(comp_args, "-D__WINE__");
294 strarray_add(comp_args, "-D__int8=char");
295 strarray_add(comp_args, "-D__int16=short");
296 /* FIXME: what about 64-bit platforms? */
297 strarray_add(comp_args, "-D__int32=int");
298 #ifdef HAVE_LONG_LONG
299 strarray_add(comp_args, "-D__int64=long long");
300 #endif
302 /* options we handle explicitly */
303 if (opts->compile_only)
304 strarray_add(comp_args, "-c");
305 if (opts->output_name)
307 strarray_add(comp_args, "-o");
308 strarray_add(comp_args, opts->output_name);
311 /* the rest of the pass-through parameters */
312 for ( j = 0 ; j < opts->compiler_args->size ; j++ )
313 strarray_add(comp_args, opts->compiler_args->base[j]);
315 /* the language option, if any */
316 if (lang && strcmp(lang, "-xnone"))
317 strarray_add(comp_args, lang);
319 /* last, but not least, the files */
320 for ( j = 0; j < opts->files->size; j++ )
322 if (opts->files->base[j][0] != '-')
323 strarray_add(comp_args, opts->files->base[j]);
326 /* standard includes come last in the include search path */
327 #ifdef __GNUC__
328 #define SYS_INCLUDE "-isystem"
329 #else
330 #define SYS_INCLUDE "-I"
331 #endif
332 if (!opts->wine_mode && !opts->nostdinc)
334 if (opts->use_msvcrt)
336 strarray_add(comp_args, SYS_INCLUDE INCLUDEDIR "/msvcrt");
337 strarray_add(comp_args, "-D__MSVCRT__");
339 strarray_add(comp_args, SYS_INCLUDE INCLUDEDIR "/windows");
341 #undef SYS_INCLUDE
343 spawn(opts->prefix, comp_args);
346 static const char* compile_to_object(struct options* opts, const char* file, const char* lang)
348 struct options copts;
349 char* base_name;
351 /* make a copy so we don't change any of the initial stuff */
352 /* a shallow copy is exactly what we want in this case */
353 base_name = get_basename(file);
354 copts = *opts;
355 copts.output_name = get_temp_file(base_name, ".o");
356 copts.compile_only = 1;
357 copts.files = strarray_alloc();
358 strarray_add(copts.files, file);
359 compile(&copts, lang);
360 strarray_free(copts.files);
361 free(base_name);
363 return copts.output_name;
366 static void build(struct options* opts)
368 static const char *stdlibpath[] = { DLLDIR, LIBDIR, "/usr/lib", "/usr/local/lib", "/lib" };
369 strarray *lib_dirs, *files;
370 strarray *spec_args, *link_args;
371 char *output_file;
372 const char *spec_c_name, *spec_o_name;
373 const char *output_name, *spec_file, *lang;
374 const char* winebuild = getenv("WINEBUILD");
375 int generate_app_loader = 1;
376 int old_processor;
377 int j;
379 /* NOTE: for the files array we'll use the following convention:
380 * -axxx: xxx is an archive (.a)
381 * -dxxx: xxx is a DLL (.def)
382 * -lxxx: xxx is an unsorted library
383 * -oxxx: xxx is an object (.o)
384 * -rxxx: xxx is a resource (.res)
385 * -sxxx: xxx is a shared lib (.so)
386 * -xlll: lll is the language (c, c++, etc.)
389 if (!winebuild) winebuild = "winebuild";
391 output_file = strdup( opts->output_name ? opts->output_name : "a.out" );
393 /* 'winegcc -o app xxx.exe.so' only creates the load script */
394 if (opts->files->size == 1 && strendswith(opts->files->base[0], ".exe.so"))
396 create_file(output_file, 0755, app_loader_template, opts->files->base[0]);
397 return;
400 /* generate app loader only for .exe */
401 if (opts->shared || strendswith(output_file, ".exe.so"))
402 generate_app_loader = 0;
404 /* normalize the filename a bit: strip .so, ensure it has proper ext */
405 if (strendswith(output_file, ".so"))
406 output_file[strlen(output_file) - 3] = 0;
407 if (opts->shared)
409 if ((output_name = strrchr(output_file, '/'))) output_name++;
410 else output_name = output_file;
411 if (!strchr(output_name, '.'))
412 output_file = strmake("%s.dll", output_file);
414 else if (!strendswith(output_file, ".exe"))
415 output_file = strmake("%s.exe", output_file);
417 /* get the filename from the path */
418 if ((output_name = strrchr(output_file, '/'))) output_name++;
419 else output_name = output_file;
421 /* prepare the linking path */
422 lib_dirs = strarray_dup(opts->lib_dirs);
423 if (!opts->wine_mode)
425 for ( j = 0; j < sizeof(stdlibpath)/sizeof(stdlibpath[0]); j++ )
426 strarray_add(lib_dirs, stdlibpath[j]);
429 /* mark the files with their appropriate type */
430 spec_file = lang = 0;
431 files = strarray_alloc();
432 for ( j = 0; j < opts->files->size; j++ )
434 const char* file = opts->files->base[j];
435 if (file[0] != '-')
437 switch(get_file_type(file))
439 case file_def:
440 case file_spec:
441 if (spec_file)
442 error("Only one spec file can be specified.");
443 spec_file = file;
444 break;
445 case file_rc:
446 /* FIXME: invoke wrc to build it */
447 error("Can't compile .rc file at the moment: %s", file);
448 break;
449 case file_res:
450 strarray_add(files, strmake("-r%s", file));
451 break;
452 case file_obj:
453 strarray_add(files, strmake("-o%s", file));
454 break;
455 case file_arh:
456 strarray_add(files, strmake("-a%s", file));
457 break;
458 case file_so:
459 strarray_add(files, strmake("-s%s", file));
460 break;
461 case file_na:
462 error("File does not exist: %s", file);
463 break;
464 default:
465 file = compile_to_object(opts, file, lang);
466 strarray_add(files, strmake("-o%s", file));
467 break;
470 else if (file[1] == 'l')
472 char* fullname = 0;
473 switch(get_lib_type(lib_dirs, file + 2, &fullname))
475 case file_arh:
476 strarray_add(files, strmake("-a%s", fullname));
477 break;
478 case file_dll:
479 strarray_add(files, strmake("-d%s", file + 2));
480 break;
481 case file_so:
482 strarray_add(files, strmake("-s%s", file + 2));
483 break;
484 default:
485 /* keep it anyway, the linker may know what to do with it */
486 strarray_add(files, file);
487 break;
489 free(fullname);
491 else if (file[1] == 'x')
492 lang = file;
494 if (opts->shared && !spec_file)
495 error("A spec file is currently needed in shared mode");
497 /* add the default libraries, if needed */
498 if (!opts->nostdlib)
500 if (opts->use_msvcrt) strarray_add(files, "-dmsvcrt");
503 if (!opts->wine_mode && !opts->nodefaultlibs)
505 if (opts->gui_app)
507 strarray_add(files, "-dshell32");
508 strarray_add(files, "-dcomdlg32");
509 strarray_add(files, "-dgdi32");
511 strarray_add(files, "-dadvapi32");
512 strarray_add(files, "-duser32");
513 strarray_add(files, "-dkernel32");
516 /* run winebuild to generate the .spec.c file */
517 spec_args = strarray_alloc();
518 spec_c_name = get_temp_file(output_name, ".spec.c");
519 strarray_add(spec_args, winebuild);
520 strarray_add(spec_args, "--ld-cmd");
521 strarray_add(spec_args, LD);
522 strarray_addall(spec_args, strarray_fromstring(DLLFLAGS, " "));
523 strarray_add(spec_args, opts->shared ? "--dll" : "--exe");
524 strarray_add(spec_args, "-o");
525 strarray_add(spec_args, spec_c_name);
526 if (spec_file)
528 strarray_add(spec_args, "-E");
529 strarray_add(spec_args, spec_file);
532 if (!opts->shared)
534 strarray_add(spec_args, "-F");
535 strarray_add(spec_args, output_name);
536 strarray_add(spec_args, "--subsystem");
537 strarray_add(spec_args, opts->gui_app ? "windows" : "console");
540 for ( j = 0; j < lib_dirs->size; j++ )
541 strarray_add(spec_args, strmake("-L%s", lib_dirs->base[j]));
543 for ( j = 0 ; j < opts->winebuild_args->size ; j++ )
544 strarray_add(spec_args, opts->winebuild_args->base[j]);
546 for ( j = 0; j < files->size; j++ )
548 const char* name = files->base[j] + 2;
549 switch(files->base[j][1])
551 case 'd':
552 strarray_add(spec_args, strmake("-l%s", name));
553 break;
554 case 'r':
555 strarray_add(spec_args, files->base[j]);
556 break;
557 case 'a':
558 case 'o':
559 strarray_add(spec_args, name);
560 break;
564 spawn(opts->prefix, spec_args);
566 /* compile the .spec.c file into a .spec.o file */
567 old_processor = opts->processor;
568 /* Always compile spec.c as c, even if linking with g++ */
569 opts->processor = proc_cc;
570 spec_o_name = compile_to_object(opts, spec_c_name, 0);
571 opts->processor = old_processor;
573 /* link everything together now */
574 link_args = strarray_alloc();
575 strarray_addall(link_args, get_translator(opts));
576 strarray_addall(link_args, strarray_fromstring(LDDLLFLAGS, " "));
578 strarray_add(link_args, "-o");
579 strarray_add(link_args, strmake("%s.so", output_file));
581 for ( j = 0 ; j < opts->linker_args->size ; j++ )
582 strarray_add(link_args, opts->linker_args->base[j]);
584 for ( j = 0; j < lib_dirs->size; j++ )
585 strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
587 strarray_add(link_args, spec_o_name);
589 for ( j = 0; j < files->size; j++ )
591 const char* name = files->base[j] + 2;
592 switch(files->base[j][1])
594 case 'l':
595 case 's':
596 strarray_add(link_args, strmake("-l%s", name));
597 break;
598 case 'a':
599 case 'o':
600 strarray_add(link_args, name);
601 break;
605 if (!opts->nostdlib)
607 strarray_add(link_args, "-lwine");
608 strarray_add(link_args, "-lm");
609 strarray_add(link_args, "-lc");
612 spawn(opts->prefix, link_args);
614 /* create the loader script */
615 if (generate_app_loader)
617 if (strendswith(output_file, ".exe")) output_file[strlen(output_file) - 4] = 0;
618 create_file(output_file, 0755, app_loader_template, strmake("%s.exe.so", output_name));
623 static void forward(int argc, char **argv, struct options* opts)
625 strarray* args = strarray_alloc();
626 int j;
628 strarray_addall(args, get_translator(opts));
630 for( j = 1; j < argc; j++ )
631 strarray_add(args, argv[j]);
633 spawn(opts->prefix, args);
637 * Linker Options
638 * object-file-name -llibrary -nostartfiles -nodefaultlibs
639 * -nostdlib -s -static -static-libgcc -shared -shared-libgcc
640 * -symbolic -Wl,option -Xlinker option -u symbol
641 * -framework name
643 static int is_linker_arg(const char* arg)
645 static const char* link_switches[] =
647 "-nostartfiles", "-nodefaultlibs", "-nostdlib", "-s",
648 "-static", "-static-libgcc", "-shared", "-shared-libgcc", "-symbolic",
649 "-framework"
651 int j;
653 switch (arg[1])
655 case 'l':
656 case 'u':
657 return 1;
658 case 'W':
659 if (strncmp("-Wl,", arg, 4) == 0) return 1;
660 break;
661 case 'X':
662 if (strcmp("-Xlinker", arg) == 0) return 1;
663 break;
666 for (j = 0; j < sizeof(link_switches)/sizeof(link_switches[0]); j++)
667 if (strcmp(link_switches[j], arg) == 0) return 1;
669 return 0;
673 * Target Options
674 * -b machine -V version
676 static int is_target_arg(const char* arg)
678 return arg[1] == 'b' || arg[2] == 'V';
683 * Directory Options
684 * -Bprefix -Idir -I- -Ldir -specs=file
686 static int is_directory_arg(const char* arg)
688 return arg[1] == 'B' || arg[1] == 'L' || arg[1] == 'I' || strncmp("-specs=", arg, 7) == 0;
692 * MinGW Options
693 * -mno-cygwin -mwindows -mconsole -mthreads
695 static int is_mingw_arg(const char* arg)
697 static const char* mingw_switches[] =
699 "-mno-cygwin", "-mwindows", "-mconsole", "-mthreads"
701 int j;
703 for (j = 0; j < sizeof(mingw_switches)/sizeof(mingw_switches[0]); j++)
704 if (strcmp(mingw_switches[j], arg) == 0) return 1;
706 return 0;
709 int main(int argc, char **argv)
711 int i, c, next_is_arg = 0, linking = 1;
712 int raw_compiler_arg, raw_linker_arg;
713 const char* option_arg;
714 struct options opts;
715 char* lang = 0;
716 char* str;
718 #ifdef SIGHUP
719 signal( SIGHUP, exit_on_signal );
720 #endif
721 signal( SIGTERM, exit_on_signal );
722 signal( SIGINT, exit_on_signal );
723 #ifdef HAVE_SIGADDSET
724 sigemptyset( &signal_mask );
725 sigaddset( &signal_mask, SIGHUP );
726 sigaddset( &signal_mask, SIGTERM );
727 sigaddset( &signal_mask, SIGINT );
728 #endif
730 /* setup tmp file removal at exit */
731 tmp_files = strarray_alloc();
732 atexit(clean_temp_files);
734 /* initialize options */
735 memset(&opts, 0, sizeof(opts));
736 opts.lib_dirs = strarray_alloc();
737 opts.files = strarray_alloc();
738 opts.linker_args = strarray_alloc();
739 opts.compiler_args = strarray_alloc();
740 opts.winebuild_args = strarray_alloc();
742 /* determine the processor type */
743 if (strendswith(argv[0], "winecpp")) opts.processor = proc_cpp;
744 else if (strendswith(argv[0], "++")) opts.processor = proc_cxx;
746 /* parse options */
747 for ( i = 1 ; i < argc ; i++ )
749 if (argv[i][0] == '-') /* option */
751 /* determine if tihs switch is followed by a separate argument */
752 next_is_arg = 0;
753 option_arg = 0;
754 switch(argv[i][1])
756 case 'x': case 'o': case 'D': case 'U':
757 case 'I': case 'A': case 'l': case 'u':
758 case 'b': case 'V': case 'G': case 'L':
759 case 'B':
760 if (argv[i][2]) option_arg = &argv[i][2];
761 else next_is_arg = 1;
762 break;
763 case 'i':
764 next_is_arg = 1;
765 break;
766 case 'a':
767 if (strcmp("-aux-info", argv[i]) == 0)
768 next_is_arg = 1;
769 break;
770 case 'X':
771 if (strcmp("-Xlinker", argv[i]) == 0)
772 next_is_arg = 1;
773 break;
774 case 'M':
775 c = argv[i][2];
776 if (c == 'F' || c == 'T' || c == 'Q')
778 if (argv[i][3]) option_arg = &argv[i][3];
779 else next_is_arg = 1;
781 break;
782 case 'f':
783 if (strcmp("-framework", argv[i]) == 0)
784 next_is_arg = 1;
785 break;
787 if (next_is_arg) option_arg = argv[i+1];
789 /* determine what options go 'as is' to the linker & the compiler */
790 raw_compiler_arg = raw_linker_arg = 0;
791 if (is_linker_arg(argv[i]))
793 raw_linker_arg = 1;
795 else
797 if (is_directory_arg(argv[i]) || is_target_arg(argv[i]))
798 raw_linker_arg = 1;
799 raw_compiler_arg = !is_mingw_arg(argv[i]);
802 /* these things we handle explicitly so we don't pass them 'as is' */
803 if (argv[i][1] == 'l' || argv[i][1] == 'I' || argv[i][1] == 'L')
804 raw_linker_arg = 0;
805 if (argv[i][1] == 'c' || argv[i][1] == 'L')
806 raw_compiler_arg = 0;
807 if (argv[i][1] == 'o')
808 raw_compiler_arg = raw_linker_arg = 0;
810 /* do a bit of semantic analysis */
811 switch (argv[i][1])
813 case 'B':
814 str = strdup(option_arg);
815 if (strendswith(str, "/tools/winebuild"))
817 opts.wine_mode = 1;
818 /* don't pass it to the compiler, this generates warnings */
819 raw_compiler_arg = raw_linker_arg = 0;
821 if (strendswith(str, "/")) str[strlen(str) - 1] = 0;
822 if (!opts.prefix) opts.prefix = strarray_alloc();
823 strarray_add(opts.prefix, str);
824 break;
825 case 'c': /* compile or assemble */
826 if (argv[i][2] == 0) opts.compile_only = 1;
827 /* fall through */
828 case 'S': /* generate assembler code */
829 case 'E': /* preprocess only */
830 if (argv[i][2] == 0) linking = 0;
831 break;
832 case 'f':
833 if (strcmp("-fno-short-wchar", argv[i]) == 0)
834 opts.noshortwchar = 1;
835 break;
836 case 'l':
837 strarray_add(opts.files, strmake("-l%s", option_arg));
838 break;
839 case 'L':
840 strarray_add(opts.lib_dirs, option_arg);
841 break;
842 case 'M': /* map file generation */
843 linking = 0;
844 break;
845 case 'm':
846 if (strcmp("-mno-cygwin", argv[i]) == 0)
847 opts.use_msvcrt = 1;
848 else if (strcmp("-mwindows", argv[i]) == 0)
849 opts.gui_app = 1;
850 else if (strcmp("-mconsole", argv[i]) == 0)
851 opts.gui_app = 0;
852 break;
853 case 'n':
854 if (strcmp("-nostdinc", argv[i]) == 0)
855 opts.nostdinc = 1;
856 else if (strcmp("-nodefaultlibs", argv[i]) == 0)
857 opts.nodefaultlibs = 1;
858 else if (strcmp("-nostdlib", argv[i]) == 0)
859 opts.nostdlib = 1;
860 break;
861 case 'o':
862 opts.output_name = option_arg;
863 break;
864 case 's':
865 if (strcmp("-static", argv[i]) == 0)
866 linking = -1;
867 else if(strcmp("-save-temps", argv[i]) == 0)
868 keep_generated = 1;
869 else if(strcmp("-shared", argv[i]) == 0)
871 opts.shared = 1;
872 raw_compiler_arg = raw_linker_arg = 0;
874 break;
875 case 'v':
876 if (argv[i][2] == 0) verbose++;
877 break;
878 case 'W':
879 if (strncmp("-Wl,", argv[i], 4) == 0)
881 if (strstr(argv[i], "-static"))
882 linking = -1;
884 else if (strncmp("-Wb,", argv[i], 4) == 0)
886 strarray* Wb = strarray_fromstring(argv[i] + 4, ",");
887 strarray_addall(opts.winebuild_args, Wb);
888 strarray_free(Wb);
889 /* don't pass it to the compiler, it generates errors */
890 raw_compiler_arg = raw_linker_arg = 0;
892 break;
893 case 'x':
894 lang = strmake("-x%s", option_arg);
895 strarray_add(opts.files, lang);
896 /* we'll pass these flags ourselves, explicitely */
897 raw_compiler_arg = raw_linker_arg = 0;
898 break;
899 case '-':
900 if (strcmp("-static", argv[i]+1) == 0)
901 linking = -1;
902 break;
905 /* put the arg into the appropriate bucket */
906 if (raw_linker_arg)
908 strarray_add(opts.linker_args, argv[i]);
909 if (next_is_arg && (i + 1 < argc))
910 strarray_add(opts.linker_args, argv[i + 1]);
912 if (raw_compiler_arg)
914 strarray_add(opts.compiler_args, argv[i]);
915 if (next_is_arg && (i + 1 < argc))
916 strarray_add(opts.compiler_args, argv[i + 1]);
919 /* skip the next token if it's an argument */
920 if (next_is_arg) i++;
922 else
924 strarray_add(opts.files, argv[i]);
928 if (opts.processor == proc_cpp) linking = 0;
929 if (linking == -1) error("Static linking is not supported.");
931 if (opts.files->size == 0) forward(argc, argv, &opts);
932 else if (linking) build(&opts);
933 else compile(&opts, lang);
935 return 0;