tools: Assorted spelling fixes.
[wine.git] / tools / winegcc / winegcc.c
blob284223eec5e648a49202407dc546fc0000cf47ce
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, 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 --image-base
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 <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>
99 #include "utils.h"
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"
140 static int keep_generated = 0;
141 static strarray* tmp_files;
142 #ifdef HAVE_SIGSET_T
143 static sigset_t signal_mask;
144 #endif
146 enum processor { proc_cc, proc_cxx, proc_cpp, proc_as };
148 static const struct
150 const char *name;
151 enum target_cpu cpu;
152 } cpu_names[] =
154 { "i386", CPU_x86 },
155 { "i486", CPU_x86 },
156 { "i586", CPU_x86 },
157 { "i686", CPU_x86 },
158 { "i786", CPU_x86 },
159 { "amd64", CPU_x86_64 },
160 { "x86_64", CPU_x86_64 },
161 { "sparc", CPU_SPARC },
162 { "powerpc", CPU_POWERPC },
163 { "arm", CPU_ARM }
166 static const struct
168 const char *name;
169 enum target_platform platform;
170 } platform_names[] =
172 { "macos", PLATFORM_APPLE },
173 { "darwin", PLATFORM_APPLE },
174 { "solaris", PLATFORM_SOLARIS },
175 { "cygwin", PLATFORM_CYGWIN },
176 { "mingw32", PLATFORM_WINDOWS },
177 { "windows", PLATFORM_WINDOWS },
178 { "winnt", PLATFORM_WINDOWS }
181 struct options
183 enum processor processor;
184 enum target_cpu target_cpu;
185 enum target_platform target_platform;
186 const char *target;
187 const char *version;
188 int shared;
189 int use_msvcrt;
190 int nostdinc;
191 int nostdlib;
192 int nostartfiles;
193 int nodefaultlibs;
194 int noshortwchar;
195 int gui_app;
196 int unicode_app;
197 int win16_app;
198 int compile_only;
199 int force_pointer_size;
200 int large_address_aware;
201 int unwind_tables;
202 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;
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(__powerpc__)
222 static const enum target_cpu build_cpu = CPU_POWERPC;
223 #elif defined(__arm__)
224 static const enum target_cpu build_cpu = CPU_ARM;
225 #else
226 #error Unsupported CPU
227 #endif
229 #ifdef __APPLE__
230 static enum target_platform build_platform = PLATFORM_APPLE;
231 #elif defined(__sun)
232 static enum target_platform build_platform = PLATFORM_SOLARIS;
233 #elif defined(__CYGWIN__)
234 static enum target_platform build_platform = PLATFORM_CYGWIN;
235 #elif defined(_WIN32)
236 static enum target_platform build_platform = PLATFORM_WINDOWS;
237 #else
238 static enum target_platform build_platform = PLATFORM_UNSPECIFIED;
239 #endif
241 static void clean_temp_files(void)
243 unsigned int i;
245 if (keep_generated) return;
247 for (i = 0; i < tmp_files->size; i++)
248 unlink(tmp_files->base[i]);
251 /* clean things up when aborting on a signal */
252 static void exit_on_signal( int sig )
254 exit(1); /* this will call the atexit functions */
257 static char* get_temp_file(const char* prefix, const char* suffix)
259 int fd;
260 char* tmp = strmake("%s-XXXXXX%s", prefix, suffix);
262 #ifdef HAVE_SIGPROCMASK
263 sigset_t old_set;
264 /* block signals while manipulating the temp files list */
265 sigprocmask( SIG_BLOCK, &signal_mask, &old_set );
266 #endif
267 fd = mkstemps( tmp, strlen(suffix) );
268 if (fd == -1)
270 /* could not create it in current directory, try in /tmp */
271 free(tmp);
272 tmp = strmake("/tmp/%s-XXXXXX%s", prefix, suffix);
273 fd = mkstemps( tmp, strlen(suffix) );
274 if (fd == -1) error( "could not create temp file\n" );
276 close( fd );
277 strarray_add(tmp_files, tmp);
278 #ifdef HAVE_SIGPROCMASK
279 sigprocmask( SIG_SETMASK, &old_set, NULL );
280 #endif
281 return tmp;
284 static char* build_tool_name(struct options *opts, const char* base, const char* deflt)
286 char* str;
288 if (opts->target && opts->version)
290 str = strmake("%s-%s-%s", opts->target, base, opts->version);
292 else if (opts->target)
294 str = strmake("%s-%s", opts->target, base);
296 else if (opts->version)
298 str = strmake("%s-%s", base, opts->version);
300 else
301 str = xstrdup(deflt);
302 return str;
305 static const strarray* get_translator(struct options *opts)
307 char *str = NULL;
308 strarray *ret;
310 switch(opts->processor)
312 case proc_cpp:
313 str = build_tool_name(opts, "cpp", CPP);
314 break;
315 case proc_cc:
316 case proc_as:
317 str = build_tool_name(opts, "gcc", CC);
318 break;
319 case proc_cxx:
320 str = build_tool_name(opts, "g++", CXX);
321 break;
322 default:
323 assert(0);
325 ret = strarray_fromstring( str, " " );
326 free(str);
327 if (opts->force_pointer_size)
328 strarray_add( ret, strmake("-m%u", 8 * opts->force_pointer_size ));
329 return ret;
332 /* check that file is a library for the correct platform */
333 static int check_platform( struct options *opts, const char *file )
335 int ret = 0, fd = open( file, O_RDONLY );
336 if (fd != -1)
338 unsigned char header[16];
339 if (read( fd, header, sizeof(header) ) == sizeof(header))
341 /* FIXME: only ELF is supported, platform is not checked beyond 32/64 */
342 if (!memcmp( header, "\177ELF", 4 ))
344 if (header[4] == 2) /* 64-bit */
345 ret = (opts->force_pointer_size == 8 ||
346 (!opts->force_pointer_size && opts->target_cpu == CPU_x86_64));
347 else
348 ret = (opts->force_pointer_size == 4 ||
349 (!opts->force_pointer_size && opts->target_cpu != CPU_x86_64));
352 close( fd );
354 return ret;
357 static char *get_lib_dir( struct options *opts )
359 static const char *stdlibpath[] = { LIBDIR, "/usr/lib", "/usr/local/lib", "/lib" };
360 static const char libwine[] = "/libwine.so";
361 unsigned int i;
363 for (i = 0; i < sizeof(stdlibpath)/sizeof(stdlibpath[0]); i++)
365 char *p, *buffer = xmalloc( strlen(stdlibpath[i]) + strlen(libwine) + 3 );
366 strcpy( buffer, stdlibpath[i] );
367 p = buffer + strlen(buffer);
368 while (p > buffer && p[-1] == '/') p--;
369 strcpy( p, libwine );
370 if (check_platform( opts, buffer )) goto found;
371 if (p > buffer + 2 && (!memcmp( p - 2, "32", 2 ) || !memcmp( p - 2, "64", 2 ))) p -= 2;
372 if (opts->force_pointer_size == 4 || (!opts->force_pointer_size && opts->target_cpu != CPU_x86_64))
374 strcpy( p, "32" );
375 strcat( p, libwine );
376 if (check_platform( opts, buffer )) goto found;
378 if (opts->force_pointer_size == 8 || (!opts->force_pointer_size && opts->target_cpu == CPU_x86_64))
380 strcpy( p, "64" );
381 strcat( p, libwine );
382 if (check_platform( opts, buffer )) goto found;
384 free( buffer );
385 continue;
387 found:
388 buffer[strlen(buffer) - strlen(libwine)] = 0;
389 return buffer;
391 return xstrdup( LIBDIR );
394 static void compile(struct options* opts, const char* lang)
396 strarray* comp_args = strarray_alloc();
397 unsigned int j;
398 int gcc_defs = 0;
399 char* gcc;
400 char* gpp;
402 strarray_addall(comp_args, get_translator(opts));
403 switch(opts->processor)
405 case proc_cpp: gcc_defs = 1; break;
406 case proc_as: gcc_defs = 0; break;
407 /* Note: if the C compiler is gcc we assume the C++ compiler is too */
408 /* mixing different C and C++ compilers isn't supported in configure anyway */
409 case proc_cc:
410 case proc_cxx:
411 gcc = build_tool_name(opts, "gcc", CC);
412 gpp = build_tool_name(opts, "g++", CXX);
413 for ( j = 0; !gcc_defs && j < comp_args->size; j++ )
415 const char *cc = comp_args->base[j];
417 gcc_defs = strendswith(cc, gcc) || strendswith(cc, gpp);
419 free(gcc);
420 free(gpp);
421 break;
424 if (opts->target_platform == PLATFORM_WINDOWS || opts->target_platform == PLATFORM_CYGWIN)
425 goto no_compat_defines;
427 if (opts->processor != proc_cpp)
429 if (gcc_defs && !opts->wine_objdir && !opts->noshortwchar)
431 strarray_add(comp_args, "-fshort-wchar");
432 strarray_add(comp_args, "-DWINE_UNICODE_NATIVE");
434 strarray_addall(comp_args, strarray_fromstring(DLLFLAGS, " "));
437 if (opts->target_cpu == CPU_x86_64)
439 strarray_add(comp_args, "-DWIN64");
440 strarray_add(comp_args, "-D_WIN64");
441 strarray_add(comp_args, "-D__WIN64");
442 strarray_add(comp_args, "-D__WIN64__");
445 strarray_add(comp_args, "-DWIN32");
446 strarray_add(comp_args, "-D_WIN32");
447 strarray_add(comp_args, "-D__WIN32");
448 strarray_add(comp_args, "-D__WIN32__");
449 strarray_add(comp_args, "-D__WINNT");
450 strarray_add(comp_args, "-D__WINNT__");
452 if (gcc_defs)
454 int fastcall_done = 0;
455 if (opts->target_cpu == CPU_x86_64)
457 strarray_add(comp_args, "-D__stdcall=__attribute__((ms_abi))");
458 strarray_add(comp_args, "-D__cdecl=__attribute__((ms_abi))");
459 strarray_add(comp_args, "-D_stdcall=__attribute__((ms_abi))");
460 strarray_add(comp_args, "-D_cdecl=__attribute__((ms_abi))");
461 strarray_add(comp_args, "-D__fastcall=__attribute__((ms_abi))");
462 strarray_add(comp_args, "-D_fastcall=__attribute__((ms_abi))");
463 fastcall_done = 1;
465 else if (opts->target_platform == PLATFORM_APPLE)
467 /* Mac OS X uses a 16-byte aligned stack and not a 4-byte one */
468 strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
469 strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
470 strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
471 strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
473 else
475 strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__))");
476 strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__))");
477 strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__))");
478 strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__))");
481 if (!fastcall_done)
483 strarray_add(comp_args, "-D__fastcall=__attribute__((__fastcall__))");
484 strarray_add(comp_args, "-D_fastcall=__attribute__((__fastcall__))");
486 strarray_add(comp_args, "-D__declspec(x)=__declspec_##x");
487 strarray_add(comp_args, "-D__declspec_align(x)=__attribute__((aligned(x)))");
488 strarray_add(comp_args, "-D__declspec_allocate(x)=__attribute__((section(x)))");
489 strarray_add(comp_args, "-D__declspec_deprecated=__attribute__((deprecated))");
490 strarray_add(comp_args, "-D__declspec_dllimport=__attribute__((dllimport))");
491 strarray_add(comp_args, "-D__declspec_dllexport=__attribute__((dllexport))");
492 strarray_add(comp_args, "-D__declspec_naked=__attribute__((naked))");
493 strarray_add(comp_args, "-D__declspec_noinline=__attribute__((noinline))");
494 strarray_add(comp_args, "-D__declspec_noreturn=__attribute__((noreturn))");
495 strarray_add(comp_args, "-D__declspec_nothrow=__attribute__((nothrow))");
496 strarray_add(comp_args, "-D__declspec_novtable=__attribute__(())"); /* ignore it */
497 strarray_add(comp_args, "-D__declspec_selectany=__attribute__((weak))");
498 strarray_add(comp_args, "-D__declspec_thread=__thread");
501 strarray_add(comp_args, "-D__int8=char");
502 strarray_add(comp_args, "-D__int16=short");
503 strarray_add(comp_args, "-D__int32=int");
504 if (opts->target_cpu == CPU_x86_64)
505 strarray_add(comp_args, "-D__int64=long");
506 else
507 strarray_add(comp_args, "-D__int64=long long");
509 no_compat_defines:
510 strarray_add(comp_args, "-D__WINE__");
512 /* options we handle explicitly */
513 if (opts->compile_only)
514 strarray_add(comp_args, "-c");
515 if (opts->output_name)
517 strarray_add(comp_args, "-o");
518 strarray_add(comp_args, opts->output_name);
521 /* the rest of the pass-through parameters */
522 for ( j = 0 ; j < opts->compiler_args->size ; j++ )
523 strarray_add(comp_args, opts->compiler_args->base[j]);
525 /* the language option, if any */
526 if (lang && strcmp(lang, "-xnone"))
527 strarray_add(comp_args, lang);
529 /* last, but not least, the files */
530 for ( j = 0; j < opts->files->size; j++ )
532 if (opts->files->base[j][0] != '-')
533 strarray_add(comp_args, opts->files->base[j]);
536 /* standard includes come last in the include search path */
537 if (!opts->wine_objdir && !opts->nostdinc)
539 if (opts->use_msvcrt)
541 strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/msvcrt" : "-I" INCLUDEDIR "/msvcrt" );
542 strarray_add(comp_args, "-D__MSVCRT__");
544 strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/windows" : "-I" INCLUDEDIR "/windows" );
546 else if (opts->wine_objdir)
547 strarray_add(comp_args, strmake("-I%s/include", opts->wine_objdir) );
549 spawn(opts->prefix, comp_args, 0);
550 strarray_free(comp_args);
553 static const char* compile_to_object(struct options* opts, const char* file, const char* lang)
555 struct options copts;
556 char* base_name;
558 /* make a copy so we don't change any of the initial stuff */
559 /* a shallow copy is exactly what we want in this case */
560 base_name = get_basename(file);
561 copts = *opts;
562 copts.output_name = get_temp_file(base_name, ".o");
563 copts.compile_only = 1;
564 copts.files = strarray_alloc();
565 strarray_add(copts.files, file);
566 compile(&copts, lang);
567 strarray_free(copts.files);
568 free(base_name);
570 return copts.output_name;
573 /* return the initial set of options needed to run winebuild */
574 static strarray *get_winebuild_args(struct options *opts)
576 const char* winebuild = getenv("WINEBUILD");
577 strarray *spec_args = strarray_alloc();
579 if (!winebuild) winebuild = "winebuild";
580 strarray_add( spec_args, winebuild );
581 if (verbose) strarray_add( spec_args, "-v" );
582 if (keep_generated) strarray_add( spec_args, "--save-temps" );
583 if (opts->target)
585 strarray_add( spec_args, "--target" );
586 strarray_add( spec_args, opts->target );
588 if (opts->unwind_tables) strarray_add( spec_args, "-fasynchronous-unwind-tables" );
589 else strarray_add( spec_args, "-fno-asynchronous-unwind-tables" );
590 return spec_args;
593 static const char* compile_resources_to_object(struct options* opts, const strarray *resources,
594 const char *res_o_name)
596 strarray *winebuild_args = get_winebuild_args( opts );
598 strarray_add( winebuild_args, "--resources" );
599 strarray_add( winebuild_args, "-o" );
600 strarray_add( winebuild_args, res_o_name );
601 strarray_addall( winebuild_args, resources );
603 spawn( opts->prefix, winebuild_args, 0 );
604 strarray_free( winebuild_args );
605 return res_o_name;
608 /* check if there is a static lib associated to a given dll */
609 static char *find_static_lib( const char *dll )
611 char *lib = strmake("%s.a", dll);
612 if (get_file_type(lib) == file_arh) return lib;
613 free( lib );
614 return NULL;
617 /* add specified library to the list of files */
618 static void add_library( struct options *opts, strarray *lib_dirs, strarray *files, const char *library )
620 char *static_lib, *fullname = 0;
622 switch(get_lib_type(opts->target_platform, lib_dirs, library, opts->lib_suffix, &fullname))
624 case file_arh:
625 strarray_add(files, strmake("-a%s", fullname));
626 break;
627 case file_dll:
628 strarray_add(files, strmake("-d%s", fullname));
629 if ((static_lib = find_static_lib(fullname)))
631 strarray_add(files, strmake("-a%s",static_lib));
632 free(static_lib);
634 break;
635 case file_so:
636 default:
637 /* keep it anyway, the linker may know what to do with it */
638 strarray_add(files, strmake("-l%s", library));
639 break;
641 free(fullname);
644 /* hack a main or WinMain function to work around Mingw's lack of Unicode support */
645 static const char *mingw_unicode_hack( struct options *opts )
647 char *main_stub = get_temp_file( opts->output_name, ".c" );
649 create_file( main_stub, 0644,
650 "#include <stdarg.h>\n"
651 "#include <windef.h>\n"
652 "#include <winbase.h>\n"
653 "int main( int argc, char *argv[] )\n{\n"
654 " int wargc;\n"
655 " wchar_t **wargv, **wenv;\n"
656 " HMODULE msvcrt = LoadLibraryA( \"msvcrt.dll\" );\n"
657 " void __cdecl (*__wgetmainargs)(int *argc, wchar_t** *wargv, wchar_t** *wenvp, int expand_wildcards,\n"
658 " int *new_mode) = (void *)GetProcAddress( msvcrt, \"__wgetmainargs\" );\n"
659 " __wgetmainargs( &wargc, &wargv, &wenv, 0, NULL );\n"
660 " return wmain( wargc, wargv );\n}\n" );
661 return compile_to_object( opts, main_stub, NULL );
664 static void build(struct options* opts)
666 strarray *lib_dirs, *files;
667 strarray *spec_args, *link_args;
668 char *output_file;
669 const char *spec_o_name;
670 const char *output_name, *spec_file, *lang;
671 int generate_app_loader = 1;
672 int fake_module = 0;
673 unsigned int j;
675 /* NOTE: for the files array we'll use the following convention:
676 * -axxx: xxx is an archive (.a)
677 * -dxxx: xxx is a DLL (.def)
678 * -lxxx: xxx is an unsorted library
679 * -oxxx: xxx is an object (.o)
680 * -rxxx: xxx is a resource (.res)
681 * -sxxx: xxx is a shared lib (.so)
682 * -xlll: lll is the language (c, c++, etc.)
685 output_file = strdup( opts->output_name ? opts->output_name : "a.out" );
687 /* 'winegcc -o app xxx.exe.so' only creates the load script */
688 if (opts->files->size == 1 && strendswith(opts->files->base[0], ".exe.so"))
690 create_file(output_file, 0755, app_loader_template, opts->files->base[0]);
691 return;
694 /* generate app loader only for .exe */
695 if (opts->shared || strendswith(output_file, ".so"))
696 generate_app_loader = 0;
698 if (strendswith(output_file, ".fake")) fake_module = 1;
700 /* normalize the filename a bit: strip .so, ensure it has proper ext */
701 if (strendswith(output_file, ".so"))
702 output_file[strlen(output_file) - 3] = 0;
703 if ((output_name = strrchr(output_file, '/'))) output_name++;
704 else output_name = output_file;
705 if (!strchr(output_name, '.'))
706 output_file = strmake("%s.%s", output_file, opts->shared ? "dll" : "exe");
708 /* get the filename from the path */
709 if ((output_name = strrchr(output_file, '/'))) output_name++;
710 else output_name = output_file;
712 /* prepare the linking path */
713 if (!opts->wine_objdir)
715 char *lib_dir = get_lib_dir( opts );
716 lib_dirs = strarray_dup(opts->lib_dirs);
717 strarray_add( lib_dirs, strmake( "%s/wine", lib_dir ));
718 strarray_add( lib_dirs, lib_dir );
720 else
722 lib_dirs = strarray_alloc();
723 strarray_add(lib_dirs, strmake("%s/dlls", opts->wine_objdir));
724 strarray_add(lib_dirs, strmake("%s/libs/wine", opts->wine_objdir));
725 strarray_addall(lib_dirs, opts->lib_dirs);
728 /* mark the files with their appropriate type */
729 spec_file = lang = 0;
730 files = strarray_alloc();
731 link_args = strarray_alloc();
732 for ( j = 0; j < opts->files->size; j++ )
734 const char* file = opts->files->base[j];
735 if (file[0] != '-')
737 switch(get_file_type(file))
739 case file_def:
740 case file_spec:
741 if (spec_file)
742 error("Only one spec file can be specified\n");
743 spec_file = file;
744 break;
745 case file_rc:
746 /* FIXME: invoke wrc to build it */
747 error("Can't compile .rc file at the moment: %s\n", file);
748 break;
749 case file_res:
750 strarray_add(files, strmake("-r%s", file));
751 break;
752 case file_obj:
753 strarray_add(files, strmake("-o%s", file));
754 break;
755 case file_arh:
756 strarray_add(files, strmake("-a%s", file));
757 break;
758 case file_so:
759 strarray_add(files, strmake("-s%s", file));
760 break;
761 case file_na:
762 error("File does not exist: %s\n", file);
763 break;
764 default:
765 file = compile_to_object(opts, file, lang);
766 strarray_add(files, strmake("-o%s", file));
767 break;
770 else if (file[1] == 'l')
771 add_library(opts, lib_dirs, files, file + 2 );
772 else if (file[1] == 'x')
773 lang = file;
776 /* building for Windows is completely different */
778 if (opts->target_platform == PLATFORM_WINDOWS || opts->target_platform == PLATFORM_CYGWIN)
780 strarray *resources = strarray_alloc();
781 char *res_o_name = NULL;
783 if (opts->win16_app)
784 error( "Building 16-bit code is not supported for Windows\n" );
786 if (opts->shared)
788 /* run winebuild to generate the .def file */
789 char *spec_def_name = get_temp_file(output_name, ".spec.def");
790 spec_args = get_winebuild_args( opts );
791 strarray_add(spec_args, "--def");
792 strarray_add(spec_args, "-o");
793 strarray_add(spec_args, spec_def_name);
794 if (spec_file)
796 strarray_add(spec_args, "--export");
797 strarray_add(spec_args, spec_file);
799 spawn(opts->prefix, spec_args, 0);
800 strarray_free(spec_args);
802 if (opts->target) strarray_add(link_args, strmake("%s-dllwrap", opts->target));
803 else strarray_add(link_args, "dllwrap");
804 if (verbose) strarray_add(link_args, "-v");
805 strarray_add(link_args, "-k");
806 strarray_add(link_args, "--def");
807 strarray_add(link_args, spec_def_name);
809 else
811 strarray_addall(link_args, get_translator(opts));
812 strarray_add(link_args, opts->gui_app ? "-mwindows" : "-mconsole");
813 if (opts->nodefaultlibs) strarray_add(link_args, "-nodefaultlibs");
816 for ( j = 0 ; j < opts->linker_args->size ; j++ )
817 strarray_add(link_args, opts->linker_args->base[j]);
819 strarray_add(link_args, "-o");
820 strarray_add(link_args, output_file);
822 if (opts->image_base)
823 strarray_add(link_args, strmake("-Wl,--image-base,%s", opts->image_base));
825 if (opts->large_address_aware) strarray_add( link_args, "-Wl,--large-address-aware" );
827 if (opts->unicode_app && !opts->shared)
828 strarray_add(link_args, mingw_unicode_hack(opts));
830 for ( j = 0; j < lib_dirs->size; j++ )
831 strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
833 if (!opts->nodefaultlibs)
835 add_library(opts, lib_dirs, files, "winecrt0");
836 add_library(opts, lib_dirs, files, "kernel32");
837 add_library(opts, lib_dirs, files, "ntdll");
839 if (opts->shared && !opts->nostdlib) add_library(opts, lib_dirs, files, "wine");
840 if (!opts->shared && opts->use_msvcrt && opts->target_platform == PLATFORM_CYGWIN)
841 add_library(opts, lib_dirs, files, "msvcrt");
843 for ( j = 0; j < files->size; j++ )
845 const char* name = files->base[j] + 2;
847 switch(files->base[j][1])
849 case 'l':
850 case 'd':
851 strarray_add(link_args, strmake("-l%s", name));
852 break;
853 case 's':
854 case 'o':
855 strarray_add(link_args, name);
856 break;
857 case 'a':
858 if (strchr(name, '/'))
860 /* turn the path back into -Ldir -lfoo options
861 * this makes sure that we use the specified libs even
862 * when mingw adds its own import libs to the link */
863 char *lib = xstrdup( name );
864 char *p = strrchr( lib, '/' );
866 *p++ = 0;
867 if (!strncmp( p, "lib", 3 ))
869 char *ext = strrchr( p, '.' );
871 if (ext) *ext = 0;
872 p += 3;
873 strarray_add(link_args, strmake("-L%s", lib ));
874 strarray_add(link_args, strmake("-l%s", p ));
875 free( lib );
876 break;
878 free( lib );
880 strarray_add(link_args, name);
881 break;
882 case 'r':
883 if (!res_o_name)
885 res_o_name = get_temp_file( output_name, ".res.o" );
886 strarray_add( link_args, res_o_name );
888 strarray_add( resources, name );
889 break;
893 if (res_o_name) compile_resources_to_object( opts, resources, res_o_name );
895 spawn(opts->prefix, link_args, 0);
896 strarray_free (resources);
897 strarray_free (link_args);
898 strarray_free (lib_dirs);
899 strarray_free (files);
900 return;
903 /* add the default libraries, if needed */
904 if (!opts->nostdlib && opts->use_msvcrt) add_library(opts, lib_dirs, files, "msvcrt");
906 if (!opts->wine_objdir && !opts->nodefaultlibs)
908 if (opts->gui_app)
910 add_library(opts, lib_dirs, files, "shell32");
911 add_library(opts, lib_dirs, files, "comdlg32");
912 add_library(opts, lib_dirs, files, "gdi32");
914 add_library(opts, lib_dirs, files, "advapi32");
915 add_library(opts, lib_dirs, files, "user32");
918 if (!opts->nodefaultlibs)
920 add_library(opts, lib_dirs, files, "winecrt0");
921 if (opts->win16_app) add_library(opts, lib_dirs, files, "kernel");
922 add_library(opts, lib_dirs, files, "kernel32");
923 add_library(opts, lib_dirs, files, "ntdll");
925 if (!opts->nostdlib) add_library(opts, lib_dirs, files, "wine");
927 /* run winebuild to generate the .spec.o file */
928 spec_args = get_winebuild_args( opts );
929 spec_o_name = get_temp_file(output_name, ".spec.o");
930 if (opts->force_pointer_size)
931 strarray_add(spec_args, strmake("-m%u", 8 * opts->force_pointer_size ));
932 strarray_addall(spec_args, strarray_fromstring(DLLFLAGS, " "));
933 strarray_add(spec_args, opts->shared ? "--dll" : "--exe");
934 if (fake_module)
936 strarray_add(spec_args, "--fake-module");
937 strarray_add(spec_args, "-o");
938 strarray_add(spec_args, output_file);
940 else
942 strarray_add(spec_args, "-o");
943 strarray_add(spec_args, spec_o_name);
945 if (spec_file)
947 strarray_add(spec_args, "-E");
948 strarray_add(spec_args, spec_file);
950 if (opts->win16_app) strarray_add(spec_args, "-m16");
952 if (!opts->shared)
954 strarray_add(spec_args, "-F");
955 strarray_add(spec_args, output_name);
956 strarray_add(spec_args, "--subsystem");
957 strarray_add(spec_args, opts->gui_app ? "windows" : "console");
958 if (opts->unicode_app)
960 strarray_add(spec_args, "--entry");
961 strarray_add(spec_args, "__wine_spec_exe_wentry");
963 if (opts->large_address_aware) strarray_add( spec_args, "--large-address-aware" );
966 for ( j = 0; j < lib_dirs->size; j++ )
967 strarray_add(spec_args, strmake("-L%s", lib_dirs->base[j]));
969 for ( j = 0 ; j < opts->winebuild_args->size ; j++ )
970 strarray_add(spec_args, opts->winebuild_args->base[j]);
972 /* add resource files */
973 for ( j = 0; j < files->size; j++ )
974 if (files->base[j][1] == 'r') strarray_add(spec_args, files->base[j]);
976 /* add other files */
977 strarray_add(spec_args, "--");
978 for ( j = 0; j < files->size; j++ )
980 switch(files->base[j][1])
982 case 'd':
983 case 'a':
984 case 'o':
985 strarray_add(spec_args, files->base[j] + 2);
986 break;
990 spawn(opts->prefix, spec_args, 0);
991 strarray_free (spec_args);
992 if (fake_module) return; /* nothing else to do */
994 /* link everything together now */
995 strarray_addall(link_args, get_translator(opts));
996 strarray_addall(link_args, strarray_fromstring(LDDLLFLAGS, " "));
998 strarray_add(link_args, "-o");
999 strarray_add(link_args, strmake("%s.so", output_file));
1001 for ( j = 0 ; j < opts->linker_args->size ; j++ )
1002 strarray_add(link_args, opts->linker_args->base[j]);
1004 switch (opts->target_platform)
1006 case PLATFORM_APPLE:
1007 if (opts->image_base)
1009 strarray_add(link_args, "-image_base");
1010 strarray_add(link_args, opts->image_base);
1012 break;
1013 case PLATFORM_SOLARIS:
1015 char *mapfile = get_temp_file( output_name, ".map" );
1016 const char *align = opts->section_align ? opts->section_align : "0x1000";
1018 create_file( mapfile, 0644, "text = A%s;\ndata = A%s;\n", align, align );
1019 strarray_add(link_args, strmake("-Wl,-M,%s", mapfile));
1020 strarray_add(tmp_files, mapfile);
1022 break;
1023 default:
1024 break;
1027 for ( j = 0; j < lib_dirs->size; j++ )
1028 strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
1030 strarray_add(link_args, spec_o_name);
1032 for ( j = 0; j < files->size; j++ )
1034 const char* name = files->base[j] + 2;
1035 switch(files->base[j][1])
1037 case 'l':
1038 strarray_add(link_args, strmake("-l%s", name));
1039 break;
1040 case 's':
1041 case 'a':
1042 case 'o':
1043 strarray_add(link_args, name);
1044 break;
1048 if (!opts->nostdlib)
1050 strarray_add(link_args, "-lm");
1051 strarray_add(link_args, "-lc");
1054 spawn(opts->prefix, link_args, 0);
1055 strarray_free (link_args);
1057 /* set the base address */
1058 if (opts->image_base)
1060 const char *prelink = PRELINK;
1061 if (prelink[0] && strcmp(prelink,"false"))
1063 strarray *prelink_args = strarray_alloc();
1064 strarray_add(prelink_args, prelink);
1065 strarray_add(prelink_args, "--reloc-only");
1066 strarray_add(prelink_args, opts->image_base);
1067 strarray_add(prelink_args, strmake("%s.so", output_file));
1068 spawn(opts->prefix, prelink_args, 1);
1069 strarray_free(prelink_args);
1073 /* create the loader script */
1074 if (generate_app_loader)
1075 create_file(output_file, 0755, app_loader_template, strmake("%s.so", output_name));
1079 static void forward(int argc, char **argv, struct options* opts)
1081 strarray* args = strarray_alloc();
1082 int j;
1084 strarray_addall(args, get_translator(opts));
1086 for( j = 1; j < argc; j++ )
1087 strarray_add(args, argv[j]);
1089 spawn(opts->prefix, args, 0);
1090 strarray_free (args);
1094 * Linker Options
1095 * object-file-name -llibrary -nostartfiles -nodefaultlibs
1096 * -nostdlib -s -static -static-libgcc -shared -shared-libgcc
1097 * -symbolic -Wl,option -Xlinker option -u symbol
1098 * -framework name
1100 static int is_linker_arg(const char* arg)
1102 static const char* link_switches[] =
1104 "-nostartfiles", "-nostdlib", "-s",
1105 "-static", "-static-libgcc", "-shared", "-shared-libgcc", "-symbolic",
1106 "-framework", "--coverage", "-fprofile-generate", "-fprofile-use"
1108 unsigned int j;
1110 switch (arg[1])
1112 case 'R':
1113 case 'z':
1114 case 'l':
1115 case 'u':
1116 return 1;
1117 case 'W':
1118 if (strncmp("-Wl,", arg, 4) == 0) return 1;
1119 break;
1120 case 'X':
1121 if (strcmp("-Xlinker", arg) == 0) return 1;
1122 break;
1123 case 'a':
1124 if (strcmp("-arch", arg) == 0) return 1;
1125 break;
1128 for (j = 0; j < sizeof(link_switches)/sizeof(link_switches[0]); j++)
1129 if (strcmp(link_switches[j], arg) == 0) return 1;
1131 return 0;
1135 * Target Options
1136 * -b machine -V version
1138 static int is_target_arg(const char* arg)
1140 return arg[1] == 'b' || arg[1] == 'V';
1145 * Directory Options
1146 * -Bprefix -Idir -I- -Ldir -specs=file
1148 static int is_directory_arg(const char* arg)
1150 return arg[1] == 'B' || arg[1] == 'L' || arg[1] == 'I' || strncmp("-specs=", arg, 7) == 0;
1154 * MinGW Options
1155 * -mno-cygwin -mwindows -mconsole -mthreads -municode
1157 static int is_mingw_arg(const char* arg)
1159 static const char* mingw_switches[] =
1161 "-mno-cygwin", "-mwindows", "-mconsole", "-mthreads", "-municode"
1163 unsigned int j;
1165 for (j = 0; j < sizeof(mingw_switches)/sizeof(mingw_switches[0]); j++)
1166 if (strcmp(mingw_switches[j], arg) == 0) return 1;
1168 return 0;
1171 static void parse_target_option( struct options *opts, const char *target )
1173 char *p, *platform, *spec = xstrdup( target );
1174 unsigned int i;
1176 /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
1178 /* get the CPU part */
1180 if (!(p = strchr( spec, '-' ))) error( "Invalid target specification '%s'\n", target );
1181 *p++ = 0;
1182 for (i = 0; i < sizeof(cpu_names)/sizeof(cpu_names[0]); i++)
1184 if (!strcmp( cpu_names[i].name, spec ))
1186 opts->target_cpu = cpu_names[i].cpu;
1187 break;
1190 if (i == sizeof(cpu_names)/sizeof(cpu_names[0]))
1191 error( "Unrecognized CPU '%s'\n", spec );
1192 platform = p;
1193 if ((p = strrchr( p, '-' ))) platform = p + 1;
1195 /* get the OS part */
1197 opts->target_platform = PLATFORM_UNSPECIFIED; /* default value */
1198 for (i = 0; i < sizeof(platform_names)/sizeof(platform_names[0]); i++)
1200 if (!strncmp( platform_names[i].name, platform, strlen(platform_names[i].name) ))
1202 opts->target_platform = platform_names[i].platform;
1203 break;
1207 free( spec );
1208 opts->target = xstrdup( target );
1211 int main(int argc, char **argv)
1213 int i, c, next_is_arg = 0, linking = 1;
1214 int raw_compiler_arg, raw_linker_arg;
1215 const char* option_arg;
1216 struct options opts;
1217 char* lang = 0;
1218 char* str;
1220 #ifdef SIGHUP
1221 signal( SIGHUP, exit_on_signal );
1222 #endif
1223 signal( SIGTERM, exit_on_signal );
1224 signal( SIGINT, exit_on_signal );
1225 #ifdef HAVE_SIGADDSET
1226 sigemptyset( &signal_mask );
1227 sigaddset( &signal_mask, SIGHUP );
1228 sigaddset( &signal_mask, SIGTERM );
1229 sigaddset( &signal_mask, SIGINT );
1230 #endif
1232 /* setup tmp file removal at exit */
1233 tmp_files = strarray_alloc();
1234 atexit(clean_temp_files);
1236 /* initialize options */
1237 memset(&opts, 0, sizeof(opts));
1238 opts.target_cpu = build_cpu;
1239 opts.target_platform = build_platform;
1240 opts.lib_dirs = strarray_alloc();
1241 opts.files = strarray_alloc();
1242 opts.linker_args = strarray_alloc();
1243 opts.compiler_args = strarray_alloc();
1244 opts.winebuild_args = strarray_alloc();
1246 /* determine the processor type */
1247 if (strendswith(argv[0], "winecpp")) opts.processor = proc_cpp;
1248 else if (strendswith(argv[0], "++")) opts.processor = proc_cxx;
1250 /* parse options */
1251 for ( i = 1 ; i < argc ; i++ )
1253 if (argv[i][0] == '-') /* option */
1255 /* determine if this switch is followed by a separate argument */
1256 next_is_arg = 0;
1257 option_arg = 0;
1258 switch(argv[i][1])
1260 case 'x': case 'o': case 'D': case 'U':
1261 case 'I': case 'A': case 'l': case 'u':
1262 case 'b': case 'V': case 'G': case 'L':
1263 case 'B': case 'R': case 'z':
1264 if (argv[i][2]) option_arg = &argv[i][2];
1265 else next_is_arg = 1;
1266 break;
1267 case 'i':
1268 next_is_arg = 1;
1269 break;
1270 case 'a':
1271 if (strcmp("-aux-info", argv[i]) == 0)
1272 next_is_arg = 1;
1273 if (strcmp("-arch", argv[i]) == 0)
1274 next_is_arg = 1;
1275 break;
1276 case 'X':
1277 if (strcmp("-Xlinker", argv[i]) == 0)
1278 next_is_arg = 1;
1279 break;
1280 case 'M':
1281 c = argv[i][2];
1282 if (c == 'F' || c == 'T' || c == 'Q')
1284 if (argv[i][3]) option_arg = &argv[i][3];
1285 else next_is_arg = 1;
1287 break;
1288 case 'f':
1289 if (strcmp("-framework", argv[i]) == 0)
1290 next_is_arg = 1;
1291 break;
1292 case '-':
1293 if (strcmp("--param", argv[i]) == 0)
1294 next_is_arg = 1;
1295 break;
1297 if (next_is_arg)
1299 if (i + 1 >= argc) error("option -%c requires an argument\n", argv[i][1]);
1300 option_arg = argv[i+1];
1303 /* determine what options go 'as is' to the linker & the compiler */
1304 raw_compiler_arg = raw_linker_arg = 0;
1305 if (is_linker_arg(argv[i]))
1307 raw_linker_arg = 1;
1309 else
1311 if (is_directory_arg(argv[i]) || is_target_arg(argv[i]))
1312 raw_linker_arg = 1;
1313 raw_compiler_arg = !is_mingw_arg(argv[i]);
1316 /* these things we handle explicitly so we don't pass them 'as is' */
1317 if (argv[i][1] == 'l' || argv[i][1] == 'I' || argv[i][1] == 'L')
1318 raw_linker_arg = 0;
1319 if (argv[i][1] == 'c' || argv[i][1] == 'L')
1320 raw_compiler_arg = 0;
1321 if (argv[i][1] == 'o' || argv[i][1] == 'b' || argv[i][1] == 'V')
1322 raw_compiler_arg = raw_linker_arg = 0;
1324 /* do a bit of semantic analysis */
1325 switch (argv[i][1])
1327 case 'B':
1328 str = strdup(option_arg);
1329 if (strendswith(str, "/tools/winebuild"))
1331 char *objdir = strdup(str);
1332 objdir[strlen(objdir) - sizeof("/tools/winebuild") + 1] = 0;
1333 opts.wine_objdir = objdir;
1334 /* don't pass it to the compiler, this generates warnings */
1335 raw_compiler_arg = raw_linker_arg = 0;
1337 if (strendswith(str, "/")) str[strlen(str) - 1] = 0;
1338 if (!opts.prefix) opts.prefix = strarray_alloc();
1339 strarray_add(opts.prefix, str);
1340 break;
1341 case 'b':
1342 parse_target_option( &opts, option_arg );
1343 break;
1344 case 'V':
1345 opts.version = xstrdup( option_arg );
1346 break;
1347 case 'c': /* compile or assemble */
1348 if (argv[i][2] == 0) opts.compile_only = 1;
1349 /* fall through */
1350 case 'S': /* generate assembler code */
1351 case 'E': /* preprocess only */
1352 if (argv[i][2] == 0) linking = 0;
1353 break;
1354 case 'f':
1355 if (strcmp("-fno-short-wchar", argv[i]) == 0)
1356 opts.noshortwchar = 1;
1357 else if (!strcmp("-fasynchronous-unwind-tables", argv[i]))
1358 opts.unwind_tables = 1;
1359 else if (!strcmp("-fno-asynchronous-unwind-tables", argv[i]))
1360 opts.unwind_tables = 0;
1361 break;
1362 case 'l':
1363 strarray_add(opts.files, strmake("-l%s", option_arg));
1364 break;
1365 case 'L':
1366 strarray_add(opts.lib_dirs, option_arg);
1367 break;
1368 case 'M': /* map file generation */
1369 linking = 0;
1370 break;
1371 case 'm':
1372 if (strcmp("-mno-cygwin", argv[i]) == 0)
1373 opts.use_msvcrt = 1;
1374 else if (strcmp("-mwindows", argv[i]) == 0)
1375 opts.gui_app = 1;
1376 else if (strcmp("-mconsole", argv[i]) == 0)
1377 opts.gui_app = 0;
1378 else if (strcmp("-municode", argv[i]) == 0)
1379 opts.unicode_app = 1;
1380 else if (strcmp("-m16", argv[i]) == 0)
1381 opts.win16_app = 1;
1382 else if (strcmp("-m32", argv[i]) == 0)
1384 if (opts.target_cpu == CPU_x86_64)
1385 opts.target_cpu = CPU_x86;
1386 opts.force_pointer_size = 4;
1387 raw_linker_arg = 1;
1389 else if (strcmp("-m64", argv[i]) == 0)
1391 opts.force_pointer_size = 8;
1392 raw_linker_arg = 1;
1394 else if (strncmp("-mcpu=", argv[i], 6) == 0)
1395 strarray_add(opts.winebuild_args, argv[i]);
1396 break;
1397 case 'n':
1398 if (strcmp("-nostdinc", argv[i]) == 0)
1399 opts.nostdinc = 1;
1400 else if (strcmp("-nodefaultlibs", argv[i]) == 0)
1401 opts.nodefaultlibs = 1;
1402 else if (strcmp("-nostdlib", argv[i]) == 0)
1403 opts.nostdlib = 1;
1404 else if (strcmp("-nostartfiles", argv[i]) == 0)
1405 opts.nostartfiles = 1;
1406 break;
1407 case 'o':
1408 opts.output_name = option_arg;
1409 break;
1410 case 's':
1411 if (strcmp("-static", argv[i]) == 0)
1412 linking = -1;
1413 else if(strcmp("-save-temps", argv[i]) == 0)
1414 keep_generated = 1;
1415 else if(strcmp("-shared", argv[i]) == 0)
1417 opts.shared = 1;
1418 raw_compiler_arg = raw_linker_arg = 0;
1420 break;
1421 case 'v':
1422 if (argv[i][2] == 0) verbose++;
1423 break;
1424 case 'W':
1425 if (strncmp("-Wl,", argv[i], 4) == 0)
1427 unsigned int j;
1428 strarray* Wl = strarray_fromstring(argv[i] + 4, ",");
1429 for (j = 0; j < Wl->size; j++)
1431 if (!strcmp(Wl->base[j], "--image-base") && j < Wl->size - 1)
1433 opts.image_base = strdup( Wl->base[++j] );
1434 continue;
1436 if (!strcmp(Wl->base[j], "--section-alignment") && j < Wl->size - 1)
1438 opts.section_align = strdup( Wl->base[++j] );
1439 continue;
1441 if (!strcmp(Wl->base[j], "--large-address-aware"))
1443 opts.large_address_aware = 1;
1444 continue;
1446 if (!strcmp(Wl->base[j], "-static")) linking = -1;
1447 strarray_add(opts.linker_args, strmake("-Wl,%s",Wl->base[j]));
1449 strarray_free(Wl);
1450 raw_compiler_arg = raw_linker_arg = 0;
1452 else if (strncmp("-Wb,", argv[i], 4) == 0)
1454 strarray* Wb = strarray_fromstring(argv[i] + 4, ",");
1455 strarray_addall(opts.winebuild_args, Wb);
1456 strarray_free(Wb);
1457 /* don't pass it to the compiler, it generates errors */
1458 raw_compiler_arg = raw_linker_arg = 0;
1460 break;
1461 case 'x':
1462 lang = strmake("-x%s", option_arg);
1463 strarray_add(opts.files, lang);
1464 /* we'll pass these flags ourselves, explicitly */
1465 raw_compiler_arg = raw_linker_arg = 0;
1466 break;
1467 case '-':
1468 if (strcmp("-static", argv[i]+1) == 0)
1469 linking = -1;
1470 else if (!strncmp("--sysroot", argv[i], 9) && opts.wine_objdir)
1472 if (argv[i][9] == '=') opts.wine_objdir = argv[i] + 10;
1473 else opts.wine_objdir = argv[++i];
1474 raw_compiler_arg = raw_linker_arg = 0;
1476 else if (!strncmp("--lib-suffix", argv[i], 12) && opts.wine_objdir)
1478 if (argv[i][12] == '=') opts.lib_suffix = argv[i] + 13;
1479 else opts.lib_suffix = argv[++i];
1480 raw_compiler_arg = raw_linker_arg = 0;
1482 break;
1485 /* put the arg into the appropriate bucket */
1486 if (raw_linker_arg)
1488 strarray_add(opts.linker_args, argv[i]);
1489 if (next_is_arg && (i + 1 < argc))
1490 strarray_add(opts.linker_args, argv[i + 1]);
1492 if (raw_compiler_arg)
1494 strarray_add(opts.compiler_args, argv[i]);
1495 if (next_is_arg && (i + 1 < argc))
1496 strarray_add(opts.compiler_args, argv[i + 1]);
1499 /* skip the next token if it's an argument */
1500 if (next_is_arg) i++;
1502 else
1504 strarray_add(opts.files, argv[i]);
1508 if (opts.processor == proc_cpp) linking = 0;
1509 if (linking == -1) error("Static linking is not supported\n");
1511 if (opts.files->size == 0) forward(argc, argv, &opts);
1512 else if (linking) build(&opts);
1513 else compile(&opts, lang);
1515 return 0;