xolehlp: Fix calling convention.
[wine.git] / tools / winegcc / winegcc.c
blob4b0d3e8404f52abbd9e4df782663d229e2dca0a5
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 { "powerpc", CPU_POWERPC },
162 { "arm", CPU_ARM },
163 { "aarch64", CPU_ARM64 }
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 int strip;
203 const char* wine_objdir;
204 const char* output_name;
205 const char* image_base;
206 const char* section_align;
207 const char* lib_suffix;
208 strarray* prefix;
209 strarray* lib_dirs;
210 strarray* linker_args;
211 strarray* compiler_args;
212 strarray* winebuild_args;
213 strarray* files;
216 #ifdef __i386__
217 static const enum target_cpu build_cpu = CPU_x86;
218 #elif defined(__x86_64__)
219 static const enum target_cpu build_cpu = CPU_x86_64;
220 #elif defined(__powerpc__)
221 static const enum target_cpu build_cpu = CPU_POWERPC;
222 #elif defined(__arm__)
223 static const enum target_cpu build_cpu = CPU_ARM;
224 #elif defined(__aarch64__)
225 static const enum target_cpu build_cpu = CPU_ARM64;
226 #else
227 #error Unsupported CPU
228 #endif
230 #ifdef __APPLE__
231 static enum target_platform build_platform = PLATFORM_APPLE;
232 #elif defined(__sun)
233 static enum target_platform build_platform = PLATFORM_SOLARIS;
234 #elif defined(__CYGWIN__)
235 static enum target_platform build_platform = PLATFORM_CYGWIN;
236 #elif defined(_WIN32)
237 static enum target_platform build_platform = PLATFORM_WINDOWS;
238 #else
239 static enum target_platform build_platform = PLATFORM_UNSPECIFIED;
240 #endif
242 static void clean_temp_files(void)
244 unsigned int i;
246 if (keep_generated) return;
248 for (i = 0; i < tmp_files->size; i++)
249 unlink(tmp_files->base[i]);
252 /* clean things up when aborting on a signal */
253 static void exit_on_signal( int sig )
255 exit(1); /* this will call the atexit functions */
258 static char* get_temp_file(const char* prefix, const char* suffix)
260 int fd;
261 char* tmp = strmake("%s-XXXXXX%s", prefix, suffix);
263 #ifdef HAVE_SIGPROCMASK
264 sigset_t old_set;
265 /* block signals while manipulating the temp files list */
266 sigprocmask( SIG_BLOCK, &signal_mask, &old_set );
267 #endif
268 fd = mkstemps( tmp, strlen(suffix) );
269 if (fd == -1)
271 /* could not create it in current directory, try in /tmp */
272 free(tmp);
273 tmp = strmake("/tmp/%s-XXXXXX%s", prefix, suffix);
274 fd = mkstemps( tmp, strlen(suffix) );
275 if (fd == -1) error( "could not create temp file\n" );
277 close( fd );
278 strarray_add(tmp_files, tmp);
279 #ifdef HAVE_SIGPROCMASK
280 sigprocmask( SIG_SETMASK, &old_set, NULL );
281 #endif
282 return tmp;
285 static char* build_tool_name(struct options *opts, const char* base, const char* deflt)
287 char* str;
289 if (opts->target && opts->version)
291 str = strmake("%s-%s-%s", opts->target, base, opts->version);
293 else if (opts->target)
295 str = strmake("%s-%s", opts->target, base);
297 else if (opts->version)
299 str = strmake("%s-%s", base, opts->version);
301 else
302 str = xstrdup(deflt);
303 return str;
306 static const strarray* get_translator(struct options *opts)
308 char *str = NULL;
309 strarray *ret;
311 switch(opts->processor)
313 case proc_cpp:
314 str = build_tool_name(opts, "cpp", CPP);
315 break;
316 case proc_cc:
317 case proc_as:
318 str = build_tool_name(opts, "gcc", CC);
319 break;
320 case proc_cxx:
321 str = build_tool_name(opts, "g++", CXX);
322 break;
323 default:
324 assert(0);
326 ret = strarray_fromstring( str, " " );
327 free(str);
328 if (opts->force_pointer_size)
329 strarray_add( ret, strmake("-m%u", 8 * opts->force_pointer_size ));
330 return ret;
333 /* check that file is a library for the correct platform */
334 static int check_platform( struct options *opts, const char *file )
336 int ret = 0, fd = open( file, O_RDONLY );
337 if (fd != -1)
339 unsigned char header[16];
340 if (read( fd, header, sizeof(header) ) == sizeof(header))
342 /* FIXME: only ELF is supported, platform is not checked beyond 32/64 */
343 if (!memcmp( header, "\177ELF", 4 ))
345 if (header[4] == 2) /* 64-bit */
346 ret = (opts->target_cpu == CPU_x86_64 || opts->target_cpu == CPU_ARM64);
347 else
348 ret = (opts->target_cpu != CPU_x86_64 && opts->target_cpu != CPU_ARM64);
351 close( fd );
353 return ret;
356 static char *get_lib_dir( struct options *opts )
358 static const char *stdlibpath[] = { LIBDIR, "/usr/lib", "/usr/local/lib", "/lib" };
359 static const char libwine[] = "/libwine.so";
360 unsigned int i;
362 for (i = 0; i < sizeof(stdlibpath)/sizeof(stdlibpath[0]); i++)
364 char *p, *buffer = xmalloc( strlen(stdlibpath[i]) + strlen("/arm-linux-gnueabi") + strlen(libwine) + 1 );
365 strcpy( buffer, stdlibpath[i] );
366 p = buffer + strlen(buffer);
367 while (p > buffer && p[-1] == '/') p--;
368 strcpy( p, libwine );
369 if (check_platform( opts, buffer )) goto found;
370 if (p > buffer + 2 && (!memcmp( p - 2, "32", 2 ) || !memcmp( p - 2, "64", 2 ))) p -= 2;
371 if (opts->target_cpu != CPU_x86_64 && opts->target_cpu != CPU_ARM64)
373 strcpy( p, "32" );
374 strcat( p, libwine );
375 if (check_platform( opts, buffer )) goto found;
377 if (opts->target_cpu == CPU_x86_64 || opts->target_cpu == CPU_ARM64)
379 strcpy( p, "64" );
380 strcat( p, libwine );
381 if (check_platform( opts, buffer )) goto found;
383 switch(opts->target_cpu)
385 case CPU_x86: strcpy( p, "/i386-linux-gnu" ); break;
386 case CPU_x86_64: strcpy( p, "/x86_64-linux-gnu" ); break;
387 case CPU_ARM: strcpy( p, "/arm-linux-gnueabi" ); break;
388 case CPU_ARM64: strcpy( p, "/aarch64-linux-gnu" ); break;
389 case CPU_POWERPC: strcpy( p, "/powerpc-linux-gnu" ); break;
390 default:
391 assert(0);
393 strcat( p, libwine );
394 if (check_platform( opts, buffer )) goto found;
395 free( buffer );
396 continue;
398 found:
399 buffer[strlen(buffer) - strlen(libwine)] = 0;
400 return buffer;
402 return xstrdup( LIBDIR );
405 static void compile(struct options* opts, const char* lang)
407 strarray* comp_args = strarray_alloc();
408 unsigned int i, j;
409 int gcc_defs = 0;
410 strarray* gcc;
411 strarray* gpp;
413 strarray_addall(comp_args, get_translator(opts));
414 switch(opts->processor)
416 case proc_cpp: gcc_defs = 1; break;
417 case proc_as: gcc_defs = 0; break;
418 /* Note: if the C compiler is gcc we assume the C++ compiler is too */
419 /* mixing different C and C++ compilers isn't supported in configure anyway */
420 case proc_cc:
421 case proc_cxx:
422 gcc = strarray_fromstring(build_tool_name(opts, "gcc", CC), " ");
423 gpp = strarray_fromstring(build_tool_name(opts, "g++", CXX), " ");
424 for ( j = 0; !gcc_defs && j < comp_args->size; j++ )
426 const char *cc = comp_args->base[j];
428 for (i = 0; !gcc_defs && i < gcc->size; i++)
429 gcc_defs = gcc->base[i][0] != '-' && strendswith(cc, gcc->base[i]);
430 for (i = 0; !gcc_defs && i < gpp->size; i++)
431 gcc_defs = gpp->base[i][0] != '-' && strendswith(cc, gpp->base[i]);
433 strarray_free(gcc);
434 strarray_free(gpp);
435 break;
438 if (opts->target_platform == PLATFORM_WINDOWS || opts->target_platform == PLATFORM_CYGWIN)
439 goto no_compat_defines;
441 if (opts->processor != proc_cpp)
443 if (gcc_defs && !opts->wine_objdir && !opts->noshortwchar)
445 strarray_add(comp_args, "-fshort-wchar");
446 strarray_add(comp_args, "-DWINE_UNICODE_NATIVE");
448 strarray_addall(comp_args, strarray_fromstring(DLLFLAGS, " "));
451 if (opts->target_cpu == CPU_x86_64 || opts->target_cpu == CPU_ARM64)
453 strarray_add(comp_args, "-DWIN64");
454 strarray_add(comp_args, "-D_WIN64");
455 strarray_add(comp_args, "-D__WIN64");
456 strarray_add(comp_args, "-D__WIN64__");
459 strarray_add(comp_args, "-DWIN32");
460 strarray_add(comp_args, "-D_WIN32");
461 strarray_add(comp_args, "-D__WIN32");
462 strarray_add(comp_args, "-D__WIN32__");
463 strarray_add(comp_args, "-D__WINNT");
464 strarray_add(comp_args, "-D__WINNT__");
466 if (gcc_defs)
468 int fastcall_done = 0;
469 if (opts->target_cpu == CPU_x86_64)
471 strarray_add(comp_args, "-D__stdcall=__attribute__((ms_abi))");
472 strarray_add(comp_args, "-D__cdecl=__attribute__((ms_abi))");
473 strarray_add(comp_args, "-D_stdcall=__attribute__((ms_abi))");
474 strarray_add(comp_args, "-D_cdecl=__attribute__((ms_abi))");
475 strarray_add(comp_args, "-D__fastcall=__attribute__((ms_abi))");
476 strarray_add(comp_args, "-D_fastcall=__attribute__((ms_abi))");
477 fastcall_done = 1;
479 else if (opts->target_platform == PLATFORM_APPLE)
481 /* Mac OS X uses a 16-byte aligned stack and not a 4-byte one */
482 strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
483 strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
484 strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
485 strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
487 else
489 strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__))");
490 strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__))");
491 strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__))");
492 strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__))");
495 if (!fastcall_done)
497 strarray_add(comp_args, "-D__fastcall=__attribute__((__fastcall__))");
498 strarray_add(comp_args, "-D_fastcall=__attribute__((__fastcall__))");
500 strarray_add(comp_args, "-D__declspec(x)=__declspec_##x");
501 strarray_add(comp_args, "-D__declspec_align(x)=__attribute__((aligned(x)))");
502 strarray_add(comp_args, "-D__declspec_allocate(x)=__attribute__((section(x)))");
503 strarray_add(comp_args, "-D__declspec_deprecated=__attribute__((deprecated))");
504 strarray_add(comp_args, "-D__declspec_dllimport=__attribute__((dllimport))");
505 strarray_add(comp_args, "-D__declspec_dllexport=__attribute__((dllexport))");
506 strarray_add(comp_args, "-D__declspec_naked=__attribute__((naked))");
507 strarray_add(comp_args, "-D__declspec_noinline=__attribute__((noinline))");
508 strarray_add(comp_args, "-D__declspec_noreturn=__attribute__((noreturn))");
509 strarray_add(comp_args, "-D__declspec_nothrow=__attribute__((nothrow))");
510 strarray_add(comp_args, "-D__declspec_novtable=__attribute__(())"); /* ignore it */
511 strarray_add(comp_args, "-D__declspec_selectany=__attribute__((weak))");
512 strarray_add(comp_args, "-D__declspec_thread=__thread");
515 strarray_add(comp_args, "-D__int8=char");
516 strarray_add(comp_args, "-D__int16=short");
517 strarray_add(comp_args, "-D__int32=int");
518 if (opts->target_cpu == CPU_x86_64 || opts->target_cpu == CPU_ARM64)
519 strarray_add(comp_args, "-D__int64=long");
520 else
521 strarray_add(comp_args, "-D__int64=long long");
523 no_compat_defines:
524 strarray_add(comp_args, "-D__WINE__");
526 /* options we handle explicitly */
527 if (opts->compile_only)
528 strarray_add(comp_args, "-c");
529 if (opts->output_name)
531 strarray_add(comp_args, "-o");
532 strarray_add(comp_args, opts->output_name);
535 /* the rest of the pass-through parameters */
536 for ( j = 0 ; j < opts->compiler_args->size ; j++ )
537 strarray_add(comp_args, opts->compiler_args->base[j]);
539 /* the language option, if any */
540 if (lang && strcmp(lang, "-xnone"))
541 strarray_add(comp_args, lang);
543 /* last, but not least, the files */
544 for ( j = 0; j < opts->files->size; j++ )
546 if (opts->files->base[j][0] != '-')
547 strarray_add(comp_args, opts->files->base[j]);
550 /* standard includes come last in the include search path */
551 if (!opts->wine_objdir && !opts->nostdinc)
553 if (opts->use_msvcrt)
555 strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/msvcrt" : "-I" INCLUDEDIR "/msvcrt" );
556 strarray_add(comp_args, "-D__MSVCRT__");
558 strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/windows" : "-I" INCLUDEDIR "/windows" );
560 else if (opts->wine_objdir)
561 strarray_add(comp_args, strmake("-I%s/include", opts->wine_objdir) );
563 spawn(opts->prefix, comp_args, 0);
564 strarray_free(comp_args);
567 static const char* compile_to_object(struct options* opts, const char* file, const char* lang)
569 struct options copts;
570 char* base_name;
572 /* make a copy so we don't change any of the initial stuff */
573 /* a shallow copy is exactly what we want in this case */
574 base_name = get_basename(file);
575 copts = *opts;
576 copts.output_name = get_temp_file(base_name, ".o");
577 copts.compile_only = 1;
578 copts.files = strarray_alloc();
579 strarray_add(copts.files, file);
580 compile(&copts, lang);
581 strarray_free(copts.files);
582 free(base_name);
584 return copts.output_name;
587 /* return the initial set of options needed to run winebuild */
588 static strarray *get_winebuild_args(struct options *opts)
590 const char* winebuild = getenv("WINEBUILD");
591 strarray *spec_args = strarray_alloc();
593 if (!winebuild) winebuild = "winebuild";
594 strarray_add( spec_args, winebuild );
595 if (verbose) strarray_add( spec_args, "-v" );
596 if (keep_generated) strarray_add( spec_args, "--save-temps" );
597 if (opts->target)
599 strarray_add( spec_args, "--target" );
600 strarray_add( spec_args, opts->target );
602 if (opts->unwind_tables) strarray_add( spec_args, "-fasynchronous-unwind-tables" );
603 else strarray_add( spec_args, "-fno-asynchronous-unwind-tables" );
604 return spec_args;
607 static const char* compile_resources_to_object(struct options* opts, const strarray *resources,
608 const char *res_o_name)
610 strarray *winebuild_args = get_winebuild_args( opts );
612 strarray_add( winebuild_args, "--resources" );
613 strarray_add( winebuild_args, "-o" );
614 strarray_add( winebuild_args, res_o_name );
615 strarray_addall( winebuild_args, resources );
617 spawn( opts->prefix, winebuild_args, 0 );
618 strarray_free( winebuild_args );
619 return res_o_name;
622 /* check if there is a static lib associated to a given dll */
623 static char *find_static_lib( const char *dll )
625 char *lib = strmake("%s.a", dll);
626 if (get_file_type(lib) == file_arh) return lib;
627 free( lib );
628 return NULL;
631 /* add specified library to the list of files */
632 static void add_library( struct options *opts, strarray *lib_dirs, strarray *files, const char *library )
634 char *static_lib, *fullname = 0;
636 switch(get_lib_type(opts->target_platform, lib_dirs, library, opts->lib_suffix, &fullname))
638 case file_arh:
639 strarray_add(files, strmake("-a%s", fullname));
640 break;
641 case file_dll:
642 strarray_add(files, strmake("-d%s", fullname));
643 if ((static_lib = find_static_lib(fullname)))
645 strarray_add(files, strmake("-a%s",static_lib));
646 free(static_lib);
648 break;
649 case file_so:
650 default:
651 /* keep it anyway, the linker may know what to do with it */
652 strarray_add(files, strmake("-l%s", library));
653 break;
655 free(fullname);
658 /* hack a main or WinMain function to work around Mingw's lack of Unicode support */
659 static const char *mingw_unicode_hack( struct options *opts )
661 char *main_stub = get_temp_file( opts->output_name, ".c" );
663 create_file( main_stub, 0644,
664 "typedef unsigned short wchar_t;\n"
665 "extern void * __stdcall LoadLibraryA(const char *);\n"
666 "extern void * __stdcall GetProcAddress(void *,const char *);\n"
667 "extern int wmain( int argc, wchar_t *argv[] );\n\n"
668 "int main( int argc, char *argv[] )\n{\n"
669 " int wargc;\n"
670 " wchar_t **wargv, **wenv;\n"
671 " void *msvcrt = LoadLibraryA( \"msvcrt.dll\" );\n"
672 " void (*__wgetmainargs)(int *argc, wchar_t** *wargv, wchar_t** *wenvp, int expand_wildcards,\n"
673 " int *new_mode) = GetProcAddress( msvcrt, \"__wgetmainargs\" );\n"
674 " __wgetmainargs( &wargc, &wargv, &wenv, 0, 0 );\n"
675 " return wmain( wargc, wargv );\n}\n" );
676 return compile_to_object( opts, main_stub, NULL );
679 static void build(struct options* opts)
681 strarray *lib_dirs, *files;
682 strarray *spec_args, *link_args;
683 char *output_file;
684 const char *spec_o_name;
685 const char *output_name, *spec_file, *lang;
686 int generate_app_loader = 1;
687 int fake_module = 0;
688 unsigned int j;
690 /* NOTE: for the files array we'll use the following convention:
691 * -axxx: xxx is an archive (.a)
692 * -dxxx: xxx is a DLL (.def)
693 * -lxxx: xxx is an unsorted library
694 * -oxxx: xxx is an object (.o)
695 * -rxxx: xxx is a resource (.res)
696 * -sxxx: xxx is a shared lib (.so)
697 * -xlll: lll is the language (c, c++, etc.)
700 output_file = strdup( opts->output_name ? opts->output_name : "a.out" );
702 /* 'winegcc -o app xxx.exe.so' only creates the load script */
703 if (opts->files->size == 1 && strendswith(opts->files->base[0], ".exe.so"))
705 create_file(output_file, 0755, app_loader_template, opts->files->base[0]);
706 return;
709 /* generate app loader only for .exe */
710 if (opts->shared || strendswith(output_file, ".so"))
711 generate_app_loader = 0;
713 if (strendswith(output_file, ".fake")) fake_module = 1;
715 /* normalize the filename a bit: strip .so, ensure it has proper ext */
716 if (strendswith(output_file, ".so"))
717 output_file[strlen(output_file) - 3] = 0;
718 if ((output_name = strrchr(output_file, '/'))) output_name++;
719 else output_name = output_file;
720 if (!strchr(output_name, '.'))
721 output_file = strmake("%s.%s", output_file, opts->shared ? "dll" : "exe");
723 /* get the filename from the path */
724 if ((output_name = strrchr(output_file, '/'))) output_name++;
725 else output_name = output_file;
727 /* prepare the linking path */
728 if (!opts->wine_objdir)
730 char *lib_dir = get_lib_dir( opts );
731 lib_dirs = strarray_dup(opts->lib_dirs);
732 strarray_add( lib_dirs, strmake( "%s/wine", lib_dir ));
733 strarray_add( lib_dirs, lib_dir );
735 else
737 lib_dirs = strarray_alloc();
738 strarray_add(lib_dirs, strmake("%s/dlls", opts->wine_objdir));
739 strarray_add(lib_dirs, strmake("%s/libs/wine", opts->wine_objdir));
740 strarray_addall(lib_dirs, opts->lib_dirs);
743 /* mark the files with their appropriate type */
744 spec_file = lang = 0;
745 files = strarray_alloc();
746 link_args = strarray_alloc();
747 for ( j = 0; j < opts->files->size; j++ )
749 const char* file = opts->files->base[j];
750 if (file[0] != '-')
752 switch(get_file_type(file))
754 case file_def:
755 case file_spec:
756 if (spec_file)
757 error("Only one spec file can be specified\n");
758 spec_file = file;
759 break;
760 case file_rc:
761 /* FIXME: invoke wrc to build it */
762 error("Can't compile .rc file at the moment: %s\n", file);
763 break;
764 case file_res:
765 strarray_add(files, strmake("-r%s", file));
766 break;
767 case file_obj:
768 strarray_add(files, strmake("-o%s", file));
769 break;
770 case file_arh:
771 strarray_add(files, strmake("-a%s", file));
772 break;
773 case file_so:
774 strarray_add(files, strmake("-s%s", file));
775 break;
776 case file_na:
777 error("File does not exist: %s\n", file);
778 break;
779 default:
780 file = compile_to_object(opts, file, lang);
781 strarray_add(files, strmake("-o%s", file));
782 break;
785 else if (file[1] == 'l')
786 add_library(opts, lib_dirs, files, file + 2 );
787 else if (file[1] == 'x')
788 lang = file;
791 /* building for Windows is completely different */
793 if (opts->target_platform == PLATFORM_WINDOWS || opts->target_platform == PLATFORM_CYGWIN)
795 strarray *resources = strarray_alloc();
796 char *res_o_name = NULL;
798 if (opts->win16_app)
799 error( "Building 16-bit code is not supported for Windows\n" );
801 if (opts->shared)
803 /* run winebuild to generate the .def file */
804 char *spec_def_name = get_temp_file(output_name, ".spec.def");
805 spec_args = get_winebuild_args( opts );
806 strarray_add(spec_args, "--def");
807 strarray_add(spec_args, "-o");
808 strarray_add(spec_args, spec_def_name);
809 if (spec_file)
811 strarray_add(spec_args, "--export");
812 strarray_add(spec_args, spec_file);
814 spawn(opts->prefix, spec_args, 0);
815 strarray_free(spec_args);
817 if (opts->target) strarray_add(link_args, strmake("%s-dllwrap", opts->target));
818 else strarray_add(link_args, "dllwrap");
819 if (verbose) strarray_add(link_args, "-v");
820 strarray_add(link_args, "-k");
821 strarray_add(link_args, "--def");
822 strarray_add(link_args, spec_def_name);
824 else
826 strarray_addall(link_args, get_translator(opts));
827 strarray_add(link_args, opts->gui_app ? "-mwindows" : "-mconsole");
828 if (opts->nodefaultlibs) strarray_add(link_args, "-nodefaultlibs");
831 for ( j = 0 ; j < opts->linker_args->size ; j++ )
832 strarray_add(link_args, opts->linker_args->base[j]);
834 strarray_add(link_args, "-o");
835 strarray_add(link_args, output_file);
837 if (opts->image_base)
838 strarray_add(link_args, strmake("-Wl,--image-base,%s", opts->image_base));
840 if (opts->large_address_aware) strarray_add( link_args, "-Wl,--large-address-aware" );
842 if (opts->unicode_app && !opts->shared)
843 strarray_add(link_args, mingw_unicode_hack(opts));
845 for ( j = 0; j < lib_dirs->size; j++ )
846 strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
848 if (!opts->nodefaultlibs)
850 add_library(opts, lib_dirs, files, "winecrt0");
851 add_library(opts, lib_dirs, files, "kernel32");
852 add_library(opts, lib_dirs, files, "ntdll");
854 if (opts->shared && !opts->nostdlib) add_library(opts, lib_dirs, files, "wine");
855 if (!opts->shared && opts->use_msvcrt && opts->target_platform == PLATFORM_CYGWIN)
856 add_library(opts, lib_dirs, files, "msvcrt");
858 for ( j = 0; j < files->size; j++ )
860 const char* name = files->base[j] + 2;
862 switch(files->base[j][1])
864 case 'l':
865 case 'd':
866 strarray_add(link_args, strmake("-l%s", name));
867 break;
868 case 's':
869 case 'o':
870 strarray_add(link_args, name);
871 break;
872 case 'a':
873 if (strchr(name, '/'))
875 /* turn the path back into -Ldir -lfoo options
876 * this makes sure that we use the specified libs even
877 * when mingw adds its own import libs to the link */
878 char *lib = xstrdup( name );
879 char *p = strrchr( lib, '/' );
881 *p++ = 0;
882 if (!strncmp( p, "lib", 3 ))
884 char *ext = strrchr( p, '.' );
886 if (ext) *ext = 0;
887 p += 3;
888 strarray_add(link_args, strmake("-L%s", lib ));
889 strarray_add(link_args, strmake("-l%s", p ));
890 free( lib );
891 break;
893 free( lib );
895 strarray_add(link_args, name);
896 break;
897 case 'r':
898 if (!res_o_name)
900 res_o_name = get_temp_file( output_name, ".res.o" );
901 strarray_add( link_args, res_o_name );
903 strarray_add( resources, name );
904 break;
908 if (res_o_name) compile_resources_to_object( opts, resources, res_o_name );
910 spawn(opts->prefix, link_args, 0);
911 strarray_free (resources);
912 strarray_free (link_args);
913 strarray_free (lib_dirs);
914 strarray_free (files);
915 return;
918 /* add the default libraries, if needed */
919 if (!opts->nostdlib && opts->use_msvcrt) add_library(opts, lib_dirs, files, "msvcrt");
921 if (!opts->wine_objdir && !opts->nodefaultlibs)
923 if (opts->gui_app)
925 add_library(opts, lib_dirs, files, "shell32");
926 add_library(opts, lib_dirs, files, "comdlg32");
927 add_library(opts, lib_dirs, files, "gdi32");
929 add_library(opts, lib_dirs, files, "advapi32");
930 add_library(opts, lib_dirs, files, "user32");
933 if (!opts->nodefaultlibs)
935 add_library(opts, lib_dirs, files, "winecrt0");
936 if (opts->win16_app) add_library(opts, lib_dirs, files, "kernel");
937 add_library(opts, lib_dirs, files, "kernel32");
938 add_library(opts, lib_dirs, files, "ntdll");
940 if (!opts->nostdlib) add_library(opts, lib_dirs, files, "wine");
942 /* run winebuild to generate the .spec.o file */
943 spec_args = get_winebuild_args( opts );
944 spec_o_name = get_temp_file(output_name, ".spec.o");
945 if (opts->force_pointer_size)
946 strarray_add(spec_args, strmake("-m%u", 8 * opts->force_pointer_size ));
947 strarray_addall(spec_args, strarray_fromstring(DLLFLAGS, " "));
948 strarray_add(spec_args, opts->shared ? "--dll" : "--exe");
949 if (fake_module)
951 strarray_add(spec_args, "--fake-module");
952 strarray_add(spec_args, "-o");
953 strarray_add(spec_args, output_file);
955 else
957 strarray_add(spec_args, "-o");
958 strarray_add(spec_args, spec_o_name);
960 if (spec_file)
962 strarray_add(spec_args, "-E");
963 strarray_add(spec_args, spec_file);
965 if (opts->win16_app) strarray_add(spec_args, "-m16");
967 if (!opts->shared)
969 strarray_add(spec_args, "-F");
970 strarray_add(spec_args, output_name);
971 strarray_add(spec_args, "--subsystem");
972 strarray_add(spec_args, opts->gui_app ? "windows" : "console");
973 if (opts->unicode_app)
975 strarray_add(spec_args, "--entry");
976 strarray_add(spec_args, "__wine_spec_exe_wentry");
978 if (opts->large_address_aware) strarray_add( spec_args, "--large-address-aware" );
981 for ( j = 0; j < lib_dirs->size; j++ )
982 strarray_add(spec_args, strmake("-L%s", lib_dirs->base[j]));
984 for ( j = 0 ; j < opts->winebuild_args->size ; j++ )
985 strarray_add(spec_args, opts->winebuild_args->base[j]);
987 /* add resource files */
988 for ( j = 0; j < files->size; j++ )
989 if (files->base[j][1] == 'r') strarray_add(spec_args, files->base[j]);
991 /* add other files */
992 strarray_add(spec_args, "--");
993 for ( j = 0; j < files->size; j++ )
995 switch(files->base[j][1])
997 case 'd':
998 case 'a':
999 case 'o':
1000 strarray_add(spec_args, files->base[j] + 2);
1001 break;
1005 spawn(opts->prefix, spec_args, 0);
1006 strarray_free (spec_args);
1007 if (fake_module) return; /* nothing else to do */
1009 /* link everything together now */
1010 strarray_addall(link_args, get_translator(opts));
1011 strarray_addall(link_args, strarray_fromstring(LDDLLFLAGS, " "));
1013 strarray_add(link_args, "-o");
1014 strarray_add(link_args, strmake("%s.so", output_file));
1016 for ( j = 0 ; j < opts->linker_args->size ; j++ )
1017 strarray_add(link_args, opts->linker_args->base[j]);
1019 switch (opts->target_platform)
1021 case PLATFORM_APPLE:
1022 if (opts->image_base)
1024 strarray_add(link_args, "-image_base");
1025 strarray_add(link_args, opts->image_base);
1027 if (opts->strip)
1028 strarray_add(link_args, "-Wl,-x");
1029 break;
1030 case PLATFORM_SOLARIS:
1032 char *mapfile = get_temp_file( output_name, ".map" );
1033 const char *align = opts->section_align ? opts->section_align : "0x1000";
1035 create_file( mapfile, 0644, "text = A%s;\ndata = A%s;\n", align, align );
1036 strarray_add(link_args, strmake("-Wl,-M,%s", mapfile));
1037 strarray_add(tmp_files, mapfile);
1039 break;
1040 default:
1041 break;
1044 for ( j = 0; j < lib_dirs->size; j++ )
1045 strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
1047 strarray_add(link_args, spec_o_name);
1049 for ( j = 0; j < files->size; j++ )
1051 const char* name = files->base[j] + 2;
1052 switch(files->base[j][1])
1054 case 'l':
1055 strarray_add(link_args, strmake("-l%s", name));
1056 break;
1057 case 's':
1058 case 'a':
1059 case 'o':
1060 strarray_add(link_args, name);
1061 break;
1065 if (!opts->nostdlib)
1067 strarray_add(link_args, "-lm");
1068 strarray_add(link_args, "-lc");
1071 spawn(opts->prefix, link_args, 0);
1072 strarray_free (link_args);
1074 /* set the base address */
1075 if (opts->image_base && !opts->target)
1077 const char *prelink = PRELINK;
1078 if (prelink[0] && strcmp(prelink,"false"))
1080 strarray *prelink_args = strarray_alloc();
1081 strarray_add(prelink_args, prelink);
1082 strarray_add(prelink_args, "--reloc-only");
1083 strarray_add(prelink_args, opts->image_base);
1084 strarray_add(prelink_args, strmake("%s.so", output_file));
1085 spawn(opts->prefix, prelink_args, 1);
1086 strarray_free(prelink_args);
1090 /* create the loader script */
1091 if (generate_app_loader)
1092 create_file(output_file, 0755, app_loader_template, strmake("%s.so", output_name));
1096 static void forward(int argc, char **argv, struct options* opts)
1098 strarray* args = strarray_alloc();
1099 int j;
1101 strarray_addall(args, get_translator(opts));
1103 for( j = 1; j < argc; j++ )
1104 strarray_add(args, argv[j]);
1106 spawn(opts->prefix, args, 0);
1107 strarray_free (args);
1111 * Linker Options
1112 * object-file-name -llibrary -nostartfiles -nodefaultlibs
1113 * -nostdlib -s -static -static-libgcc -shared -shared-libgcc
1114 * -symbolic -Wl,option -Xlinker option -u symbol
1115 * -framework name
1117 static int is_linker_arg(const char* arg)
1119 static const char* link_switches[] =
1121 "-nostartfiles", "-nostdlib", "-s",
1122 "-static", "-static-libgcc", "-shared", "-shared-libgcc", "-symbolic",
1123 "-framework", "--coverage", "-fprofile-generate", "-fprofile-use"
1125 unsigned int j;
1127 switch (arg[1])
1129 case 'R':
1130 case 'z':
1131 case 'l':
1132 case 'u':
1133 return 1;
1134 case 'W':
1135 if (strncmp("-Wl,", arg, 4) == 0) return 1;
1136 break;
1137 case 'X':
1138 if (strcmp("-Xlinker", arg) == 0) return 1;
1139 break;
1140 case 'a':
1141 if (strcmp("-arch", arg) == 0) return 1;
1142 break;
1145 for (j = 0; j < sizeof(link_switches)/sizeof(link_switches[0]); j++)
1146 if (strcmp(link_switches[j], arg) == 0) return 1;
1148 return 0;
1152 * Target Options
1153 * -b machine -V version
1155 static int is_target_arg(const char* arg)
1157 return arg[1] == 'b' || arg[1] == 'V';
1162 * Directory Options
1163 * -Bprefix -Idir -I- -Ldir -specs=file
1165 static int is_directory_arg(const char* arg)
1167 return arg[1] == 'B' || arg[1] == 'L' || arg[1] == 'I' || strncmp("-specs=", arg, 7) == 0;
1171 * MinGW Options
1172 * -mno-cygwin -mwindows -mconsole -mthreads -municode
1174 static int is_mingw_arg(const char* arg)
1176 static const char* mingw_switches[] =
1178 "-mno-cygwin", "-mwindows", "-mconsole", "-mthreads", "-municode"
1180 unsigned int j;
1182 for (j = 0; j < sizeof(mingw_switches)/sizeof(mingw_switches[0]); j++)
1183 if (strcmp(mingw_switches[j], arg) == 0) return 1;
1185 return 0;
1188 static void parse_target_option( struct options *opts, const char *target )
1190 char *p, *platform, *spec = xstrdup( target );
1191 unsigned int i;
1193 /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
1195 /* get the CPU part */
1197 if ((p = strchr( spec, '-' )))
1199 *p++ = 0;
1200 for (i = 0; i < sizeof(cpu_names)/sizeof(cpu_names[0]); i++)
1202 if (!strcmp( cpu_names[i].name, spec ))
1204 opts->target_cpu = cpu_names[i].cpu;
1205 break;
1208 if (i == sizeof(cpu_names)/sizeof(cpu_names[0]))
1209 error( "Unrecognized CPU '%s'\n", spec );
1210 platform = p;
1211 if ((p = strrchr( p, '-' ))) platform = p + 1;
1213 else if (!strcmp( spec, "mingw32" ))
1215 opts->target_cpu = CPU_x86;
1216 platform = spec;
1218 else
1219 error( "Invalid target specification '%s'\n", target );
1221 /* get the OS part */
1223 opts->target_platform = PLATFORM_UNSPECIFIED; /* default value */
1224 for (i = 0; i < sizeof(platform_names)/sizeof(platform_names[0]); i++)
1226 if (!strncmp( platform_names[i].name, platform, strlen(platform_names[i].name) ))
1228 opts->target_platform = platform_names[i].platform;
1229 break;
1233 free( spec );
1234 opts->target = xstrdup( target );
1237 int main(int argc, char **argv)
1239 int i, c, next_is_arg = 0, linking = 1;
1240 int raw_compiler_arg, raw_linker_arg;
1241 const char* option_arg;
1242 struct options opts;
1243 char* lang = 0;
1244 char* str;
1246 #ifdef SIGHUP
1247 signal( SIGHUP, exit_on_signal );
1248 #endif
1249 signal( SIGTERM, exit_on_signal );
1250 signal( SIGINT, exit_on_signal );
1251 #ifdef HAVE_SIGADDSET
1252 sigemptyset( &signal_mask );
1253 sigaddset( &signal_mask, SIGHUP );
1254 sigaddset( &signal_mask, SIGTERM );
1255 sigaddset( &signal_mask, SIGINT );
1256 #endif
1258 /* setup tmp file removal at exit */
1259 tmp_files = strarray_alloc();
1260 atexit(clean_temp_files);
1262 /* initialize options */
1263 memset(&opts, 0, sizeof(opts));
1264 opts.target_cpu = build_cpu;
1265 opts.target_platform = build_platform;
1266 opts.lib_dirs = strarray_alloc();
1267 opts.files = strarray_alloc();
1268 opts.linker_args = strarray_alloc();
1269 opts.compiler_args = strarray_alloc();
1270 opts.winebuild_args = strarray_alloc();
1272 /* determine the processor type */
1273 if (strendswith(argv[0], "winecpp")) opts.processor = proc_cpp;
1274 else if (strendswith(argv[0], "++")) opts.processor = proc_cxx;
1276 /* parse options */
1277 for ( i = 1 ; i < argc ; i++ )
1279 if (argv[i][0] == '-') /* option */
1281 /* determine if this switch is followed by a separate argument */
1282 next_is_arg = 0;
1283 option_arg = 0;
1284 switch(argv[i][1])
1286 case 'x': case 'o': case 'D': case 'U':
1287 case 'I': case 'A': case 'l': case 'u':
1288 case 'b': case 'V': case 'G': case 'L':
1289 case 'B': case 'R': case 'z':
1290 if (argv[i][2]) option_arg = &argv[i][2];
1291 else next_is_arg = 1;
1292 break;
1293 case 'i':
1294 next_is_arg = 1;
1295 break;
1296 case 'a':
1297 if (strcmp("-aux-info", argv[i]) == 0)
1298 next_is_arg = 1;
1299 if (strcmp("-arch", argv[i]) == 0)
1300 next_is_arg = 1;
1301 break;
1302 case 'X':
1303 if (strcmp("-Xlinker", argv[i]) == 0)
1304 next_is_arg = 1;
1305 break;
1306 case 'M':
1307 c = argv[i][2];
1308 if (c == 'F' || c == 'T' || c == 'Q')
1310 if (argv[i][3]) option_arg = &argv[i][3];
1311 else next_is_arg = 1;
1313 break;
1314 case 'f':
1315 if (strcmp("-framework", argv[i]) == 0)
1316 next_is_arg = 1;
1317 break;
1318 case '-':
1319 if (strcmp("--param", argv[i]) == 0)
1320 next_is_arg = 1;
1321 break;
1323 if (next_is_arg)
1325 if (i + 1 >= argc) error("option -%c requires an argument\n", argv[i][1]);
1326 option_arg = argv[i+1];
1329 /* determine what options go 'as is' to the linker & the compiler */
1330 raw_compiler_arg = raw_linker_arg = 0;
1331 if (is_linker_arg(argv[i]))
1333 raw_linker_arg = 1;
1335 else
1337 if (is_directory_arg(argv[i]) || is_target_arg(argv[i]))
1338 raw_linker_arg = 1;
1339 raw_compiler_arg = !is_mingw_arg(argv[i]);
1342 /* these things we handle explicitly so we don't pass them 'as is' */
1343 if (argv[i][1] == 'l' || argv[i][1] == 'I' || argv[i][1] == 'L')
1344 raw_linker_arg = 0;
1345 if (argv[i][1] == 'c' || argv[i][1] == 'L')
1346 raw_compiler_arg = 0;
1347 if (argv[i][1] == 'o' || argv[i][1] == 'b' || argv[i][1] == 'V')
1348 raw_compiler_arg = raw_linker_arg = 0;
1350 /* do a bit of semantic analysis */
1351 switch (argv[i][1])
1353 case 'B':
1354 str = strdup(option_arg);
1355 if (strendswith(str, "/")) str[strlen(str) - 1] = 0;
1356 if (strendswith(str, "/tools/winebuild"))
1358 char *objdir = strdup(str);
1359 objdir[strlen(objdir) - sizeof("/tools/winebuild") + 1] = 0;
1360 opts.wine_objdir = objdir;
1361 /* don't pass it to the compiler, this generates warnings */
1362 raw_compiler_arg = raw_linker_arg = 0;
1364 if (!opts.prefix) opts.prefix = strarray_alloc();
1365 strarray_add(opts.prefix, str);
1366 break;
1367 case 'b':
1368 parse_target_option( &opts, option_arg );
1369 break;
1370 case 'V':
1371 opts.version = xstrdup( option_arg );
1372 break;
1373 case 'c': /* compile or assemble */
1374 if (argv[i][2] == 0) opts.compile_only = 1;
1375 /* fall through */
1376 case 'S': /* generate assembler code */
1377 case 'E': /* preprocess only */
1378 if (argv[i][2] == 0) linking = 0;
1379 break;
1380 case 'f':
1381 if (strcmp("-fno-short-wchar", argv[i]) == 0)
1382 opts.noshortwchar = 1;
1383 else if (!strcmp("-fasynchronous-unwind-tables", argv[i]))
1384 opts.unwind_tables = 1;
1385 else if (!strcmp("-fno-asynchronous-unwind-tables", argv[i]))
1386 opts.unwind_tables = 0;
1387 break;
1388 case 'l':
1389 strarray_add(opts.files, strmake("-l%s", option_arg));
1390 break;
1391 case 'L':
1392 strarray_add(opts.lib_dirs, option_arg);
1393 break;
1394 case 'M': /* map file generation */
1395 linking = 0;
1396 break;
1397 case 'm':
1398 if (strcmp("-mno-cygwin", argv[i]) == 0)
1399 opts.use_msvcrt = 1;
1400 else if (strcmp("-mwindows", argv[i]) == 0)
1401 opts.gui_app = 1;
1402 else if (strcmp("-mconsole", argv[i]) == 0)
1403 opts.gui_app = 0;
1404 else if (strcmp("-municode", argv[i]) == 0)
1405 opts.unicode_app = 1;
1406 else if (strcmp("-m16", argv[i]) == 0)
1407 opts.win16_app = 1;
1408 else if (strcmp("-m32", argv[i]) == 0)
1410 if (opts.target_cpu == CPU_x86_64)
1411 opts.target_cpu = CPU_x86;
1412 else if (opts.target_cpu == CPU_ARM64)
1413 opts.target_cpu = CPU_ARM;
1414 opts.force_pointer_size = 4;
1415 raw_linker_arg = 1;
1417 else if (strcmp("-m64", argv[i]) == 0)
1419 if (opts.target_cpu == CPU_x86)
1420 opts.target_cpu = CPU_x86_64;
1421 else if (opts.target_cpu == CPU_ARM)
1422 opts.target_cpu = CPU_ARM64;
1423 opts.force_pointer_size = 8;
1424 raw_linker_arg = 1;
1426 else if (strncmp("-mcpu=", argv[i], 6) == 0)
1427 strarray_add(opts.winebuild_args, argv[i]);
1428 break;
1429 case 'n':
1430 if (strcmp("-nostdinc", argv[i]) == 0)
1431 opts.nostdinc = 1;
1432 else if (strcmp("-nodefaultlibs", argv[i]) == 0)
1433 opts.nodefaultlibs = 1;
1434 else if (strcmp("-nostdlib", argv[i]) == 0)
1435 opts.nostdlib = 1;
1436 else if (strcmp("-nostartfiles", argv[i]) == 0)
1437 opts.nostartfiles = 1;
1438 break;
1439 case 'o':
1440 opts.output_name = option_arg;
1441 break;
1442 case 's':
1443 if (strcmp("-static", argv[i]) == 0)
1444 linking = -1;
1445 else if(strcmp("-save-temps", argv[i]) == 0)
1446 keep_generated = 1;
1447 else if(strcmp("-shared", argv[i]) == 0)
1449 opts.shared = 1;
1450 raw_compiler_arg = raw_linker_arg = 0;
1452 else if (strcmp("-s", argv[i]) == 0 && opts.target_platform == PLATFORM_APPLE)
1454 /* On Mac, change -s into -Wl,-x. ld's -s switch
1455 * is deprecated, and it doesn't work on Tiger with
1456 * MH_BUNDLEs anyway
1458 opts.strip = 1;
1459 raw_linker_arg = 0;
1461 break;
1462 case 'v':
1463 if (argv[i][2] == 0) verbose++;
1464 break;
1465 case 'W':
1466 if (strncmp("-Wl,", argv[i], 4) == 0)
1468 unsigned int j;
1469 strarray* Wl = strarray_fromstring(argv[i] + 4, ",");
1470 for (j = 0; j < Wl->size; j++)
1472 if (!strcmp(Wl->base[j], "--image-base") && j < Wl->size - 1)
1474 opts.image_base = strdup( Wl->base[++j] );
1475 continue;
1477 if (!strcmp(Wl->base[j], "--section-alignment") && j < Wl->size - 1)
1479 opts.section_align = strdup( Wl->base[++j] );
1480 continue;
1482 if (!strcmp(Wl->base[j], "--large-address-aware"))
1484 opts.large_address_aware = 1;
1485 continue;
1487 if (!strcmp(Wl->base[j], "-static")) linking = -1;
1488 strarray_add(opts.linker_args, strmake("-Wl,%s",Wl->base[j]));
1490 strarray_free(Wl);
1491 raw_compiler_arg = raw_linker_arg = 0;
1493 else if (strncmp("-Wb,", argv[i], 4) == 0)
1495 strarray* Wb = strarray_fromstring(argv[i] + 4, ",");
1496 strarray_addall(opts.winebuild_args, Wb);
1497 strarray_free(Wb);
1498 /* don't pass it to the compiler, it generates errors */
1499 raw_compiler_arg = raw_linker_arg = 0;
1501 break;
1502 case 'x':
1503 lang = strmake("-x%s", option_arg);
1504 strarray_add(opts.files, lang);
1505 /* we'll pass these flags ourselves, explicitly */
1506 raw_compiler_arg = raw_linker_arg = 0;
1507 break;
1508 case '-':
1509 if (strcmp("-static", argv[i]+1) == 0)
1510 linking = -1;
1511 else if (!strncmp("--sysroot", argv[i], 9) && opts.wine_objdir)
1513 if (argv[i][9] == '=') opts.wine_objdir = argv[i] + 10;
1514 else opts.wine_objdir = argv[++i];
1515 raw_compiler_arg = raw_linker_arg = 0;
1517 else if (!strncmp("--lib-suffix", argv[i], 12) && opts.wine_objdir)
1519 if (argv[i][12] == '=') opts.lib_suffix = argv[i] + 13;
1520 else opts.lib_suffix = argv[++i];
1521 raw_compiler_arg = raw_linker_arg = 0;
1523 break;
1526 /* put the arg into the appropriate bucket */
1527 if (raw_linker_arg)
1529 strarray_add(opts.linker_args, argv[i]);
1530 if (next_is_arg && (i + 1 < argc))
1531 strarray_add(opts.linker_args, argv[i + 1]);
1533 if (raw_compiler_arg)
1535 strarray_add(opts.compiler_args, argv[i]);
1536 if (next_is_arg && (i + 1 < argc))
1537 strarray_add(opts.compiler_args, argv[i + 1]);
1540 /* skip the next token if it's an argument */
1541 if (next_is_arg) i++;
1543 else
1545 strarray_add(opts.files, argv[i]);
1549 if (opts.processor == proc_cpp) linking = 0;
1550 if (linking == -1) error("Static linking is not supported\n");
1552 if (opts.files->size == 0) forward(argc, argv, &opts);
1553 else if (linking) build(&opts);
1554 else compile(&opts, lang);
1556 return 0;