wbemprox: Add a stub implementation of IWbemQualifierSet.
[wine.git] / tools / winegcc / winegcc.c
blob2432bf39f0aa4a8d073aeeb52d6fc27a897f9ad0
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 },
164 { "aarch64", CPU_ARM64 }
167 static const struct
169 const char *name;
170 enum target_platform platform;
171 } platform_names[] =
173 { "macos", PLATFORM_APPLE },
174 { "darwin", PLATFORM_APPLE },
175 { "solaris", PLATFORM_SOLARIS },
176 { "cygwin", PLATFORM_CYGWIN },
177 { "mingw32", PLATFORM_WINDOWS },
178 { "windows", PLATFORM_WINDOWS },
179 { "winnt", PLATFORM_WINDOWS }
182 struct options
184 enum processor processor;
185 enum target_cpu target_cpu;
186 enum target_platform target_platform;
187 const char *target;
188 const char *version;
189 int shared;
190 int use_msvcrt;
191 int nostdinc;
192 int nostdlib;
193 int nostartfiles;
194 int nodefaultlibs;
195 int noshortwchar;
196 int gui_app;
197 int unicode_app;
198 int win16_app;
199 int compile_only;
200 int force_pointer_size;
201 int large_address_aware;
202 int unwind_tables;
203 int strip;
204 const char* wine_objdir;
205 const char* output_name;
206 const char* image_base;
207 const char* section_align;
208 const char* lib_suffix;
209 strarray* prefix;
210 strarray* lib_dirs;
211 strarray* linker_args;
212 strarray* compiler_args;
213 strarray* winebuild_args;
214 strarray* files;
217 #ifdef __i386__
218 static const enum target_cpu build_cpu = CPU_x86;
219 #elif defined(__x86_64__)
220 static const enum target_cpu build_cpu = CPU_x86_64;
221 #elif defined(__sparc__)
222 static const enum target_cpu build_cpu = CPU_SPARC;
223 #elif defined(__powerpc__)
224 static const enum target_cpu build_cpu = CPU_POWERPC;
225 #elif defined(__arm__)
226 static const enum target_cpu build_cpu = CPU_ARM;
227 #elif defined(__aarch64__)
228 static const enum target_cpu build_cpu = CPU_ARM64;
229 #else
230 #error Unsupported CPU
231 #endif
233 #ifdef __APPLE__
234 static enum target_platform build_platform = PLATFORM_APPLE;
235 #elif defined(__sun)
236 static enum target_platform build_platform = PLATFORM_SOLARIS;
237 #elif defined(__CYGWIN__)
238 static enum target_platform build_platform = PLATFORM_CYGWIN;
239 #elif defined(_WIN32)
240 static enum target_platform build_platform = PLATFORM_WINDOWS;
241 #else
242 static enum target_platform build_platform = PLATFORM_UNSPECIFIED;
243 #endif
245 static void clean_temp_files(void)
247 unsigned int i;
249 if (keep_generated) return;
251 for (i = 0; i < tmp_files->size; i++)
252 unlink(tmp_files->base[i]);
255 /* clean things up when aborting on a signal */
256 static void exit_on_signal( int sig )
258 exit(1); /* this will call the atexit functions */
261 static char* get_temp_file(const char* prefix, const char* suffix)
263 int fd;
264 char* tmp = strmake("%s-XXXXXX%s", prefix, suffix);
266 #ifdef HAVE_SIGPROCMASK
267 sigset_t old_set;
268 /* block signals while manipulating the temp files list */
269 sigprocmask( SIG_BLOCK, &signal_mask, &old_set );
270 #endif
271 fd = mkstemps( tmp, strlen(suffix) );
272 if (fd == -1)
274 /* could not create it in current directory, try in /tmp */
275 free(tmp);
276 tmp = strmake("/tmp/%s-XXXXXX%s", prefix, suffix);
277 fd = mkstemps( tmp, strlen(suffix) );
278 if (fd == -1) error( "could not create temp file\n" );
280 close( fd );
281 strarray_add(tmp_files, tmp);
282 #ifdef HAVE_SIGPROCMASK
283 sigprocmask( SIG_SETMASK, &old_set, NULL );
284 #endif
285 return tmp;
288 static char* build_tool_name(struct options *opts, const char* base, const char* deflt)
290 char* str;
292 if (opts->target && opts->version)
294 str = strmake("%s-%s-%s", opts->target, base, opts->version);
296 else if (opts->target)
298 str = strmake("%s-%s", opts->target, base);
300 else if (opts->version)
302 str = strmake("%s-%s", base, opts->version);
304 else
305 str = xstrdup(deflt);
306 return str;
309 static const strarray* get_translator(struct options *opts)
311 char *str = NULL;
312 strarray *ret;
314 switch(opts->processor)
316 case proc_cpp:
317 str = build_tool_name(opts, "cpp", CPP);
318 break;
319 case proc_cc:
320 case proc_as:
321 str = build_tool_name(opts, "gcc", CC);
322 break;
323 case proc_cxx:
324 str = build_tool_name(opts, "g++", CXX);
325 break;
326 default:
327 assert(0);
329 ret = strarray_fromstring( str, " " );
330 free(str);
331 if (opts->force_pointer_size)
332 strarray_add( ret, strmake("-m%u", 8 * opts->force_pointer_size ));
333 return ret;
336 /* check that file is a library for the correct platform */
337 static int check_platform( struct options *opts, const char *file )
339 int ret = 0, fd = open( file, O_RDONLY );
340 if (fd != -1)
342 unsigned char header[16];
343 if (read( fd, header, sizeof(header) ) == sizeof(header))
345 /* FIXME: only ELF is supported, platform is not checked beyond 32/64 */
346 if (!memcmp( header, "\177ELF", 4 ))
348 if (header[4] == 2) /* 64-bit */
349 ret = (opts->force_pointer_size == 8 ||
350 (!opts->force_pointer_size && (opts->target_cpu == CPU_x86_64 || opts->target_cpu == CPU_ARM64)));
351 else
352 ret = (opts->force_pointer_size == 4 ||
353 (!opts->force_pointer_size && opts->target_cpu != CPU_x86_64 && opts->target_cpu != CPU_ARM64));
356 close( fd );
358 return ret;
361 static char *get_lib_dir( struct options *opts )
363 static const char *stdlibpath[] = { LIBDIR, "/usr/lib", "/usr/local/lib", "/lib" };
364 static const char libwine[] = "/libwine.so";
365 unsigned int i;
367 for (i = 0; i < sizeof(stdlibpath)/sizeof(stdlibpath[0]); i++)
369 char *p, *buffer = xmalloc( strlen(stdlibpath[i]) + strlen(libwine) + 3 );
370 strcpy( buffer, stdlibpath[i] );
371 p = buffer + strlen(buffer);
372 while (p > buffer && p[-1] == '/') p--;
373 strcpy( p, libwine );
374 if (check_platform( opts, buffer )) goto found;
375 if (p > buffer + 2 && (!memcmp( p - 2, "32", 2 ) || !memcmp( p - 2, "64", 2 ))) p -= 2;
376 if (opts->force_pointer_size == 4 || (!opts->force_pointer_size && opts->target_cpu != CPU_x86_64 && opts->target_cpu != CPU_ARM64))
378 strcpy( p, "32" );
379 strcat( p, libwine );
380 if (check_platform( opts, buffer )) goto found;
382 if (opts->force_pointer_size == 8 || (!opts->force_pointer_size && (opts->target_cpu == CPU_x86_64 || opts->target_cpu == CPU_ARM64)))
384 strcpy( p, "64" );
385 strcat( p, libwine );
386 if (check_platform( opts, buffer )) goto found;
388 free( buffer );
389 continue;
391 found:
392 buffer[strlen(buffer) - strlen(libwine)] = 0;
393 return buffer;
395 return xstrdup( LIBDIR );
398 static void compile(struct options* opts, const char* lang)
400 strarray* comp_args = strarray_alloc();
401 unsigned int i, j;
402 int gcc_defs = 0;
403 strarray* gcc;
404 strarray* gpp;
406 strarray_addall(comp_args, get_translator(opts));
407 switch(opts->processor)
409 case proc_cpp: gcc_defs = 1; break;
410 case proc_as: gcc_defs = 0; break;
411 /* Note: if the C compiler is gcc we assume the C++ compiler is too */
412 /* mixing different C and C++ compilers isn't supported in configure anyway */
413 case proc_cc:
414 case proc_cxx:
415 gcc = strarray_fromstring(build_tool_name(opts, "gcc", CC), " ");
416 gpp = strarray_fromstring(build_tool_name(opts, "g++", CXX), " ");
417 for ( j = 0; !gcc_defs && j < comp_args->size; j++ )
419 const char *cc = comp_args->base[j];
421 for (i = 0; !gcc_defs && i < gcc->size; i++)
422 gcc_defs = gcc->base[i][0] != '-' && strendswith(cc, gcc->base[i]);
423 for (i = 0; !gcc_defs && i < gpp->size; i++)
424 gcc_defs = gpp->base[i][0] != '-' && strendswith(cc, gpp->base[i]);
426 strarray_free(gcc);
427 strarray_free(gpp);
428 break;
431 if (opts->target_platform == PLATFORM_WINDOWS || opts->target_platform == PLATFORM_CYGWIN)
432 goto no_compat_defines;
434 if (opts->processor != proc_cpp)
436 if (gcc_defs && !opts->wine_objdir && !opts->noshortwchar)
438 strarray_add(comp_args, "-fshort-wchar");
439 strarray_add(comp_args, "-DWINE_UNICODE_NATIVE");
441 strarray_addall(comp_args, strarray_fromstring(DLLFLAGS, " "));
444 if (opts->target_cpu == CPU_x86_64 || opts->target_cpu == CPU_ARM64)
446 strarray_add(comp_args, "-DWIN64");
447 strarray_add(comp_args, "-D_WIN64");
448 strarray_add(comp_args, "-D__WIN64");
449 strarray_add(comp_args, "-D__WIN64__");
452 strarray_add(comp_args, "-DWIN32");
453 strarray_add(comp_args, "-D_WIN32");
454 strarray_add(comp_args, "-D__WIN32");
455 strarray_add(comp_args, "-D__WIN32__");
456 strarray_add(comp_args, "-D__WINNT");
457 strarray_add(comp_args, "-D__WINNT__");
459 if (gcc_defs)
461 int fastcall_done = 0;
462 if (opts->target_cpu == CPU_x86_64)
464 strarray_add(comp_args, "-D__stdcall=__attribute__((ms_abi))");
465 strarray_add(comp_args, "-D__cdecl=__attribute__((ms_abi))");
466 strarray_add(comp_args, "-D_stdcall=__attribute__((ms_abi))");
467 strarray_add(comp_args, "-D_cdecl=__attribute__((ms_abi))");
468 strarray_add(comp_args, "-D__fastcall=__attribute__((ms_abi))");
469 strarray_add(comp_args, "-D_fastcall=__attribute__((ms_abi))");
470 fastcall_done = 1;
472 else if (opts->target_platform == PLATFORM_APPLE)
474 /* Mac OS X uses a 16-byte aligned stack and not a 4-byte one */
475 strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
476 strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
477 strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
478 strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
480 else
482 strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__))");
483 strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__))");
484 strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__))");
485 strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__))");
488 if (!fastcall_done)
490 strarray_add(comp_args, "-D__fastcall=__attribute__((__fastcall__))");
491 strarray_add(comp_args, "-D_fastcall=__attribute__((__fastcall__))");
493 strarray_add(comp_args, "-D__declspec(x)=__declspec_##x");
494 strarray_add(comp_args, "-D__declspec_align(x)=__attribute__((aligned(x)))");
495 strarray_add(comp_args, "-D__declspec_allocate(x)=__attribute__((section(x)))");
496 strarray_add(comp_args, "-D__declspec_deprecated=__attribute__((deprecated))");
497 strarray_add(comp_args, "-D__declspec_dllimport=__attribute__((dllimport))");
498 strarray_add(comp_args, "-D__declspec_dllexport=__attribute__((dllexport))");
499 strarray_add(comp_args, "-D__declspec_naked=__attribute__((naked))");
500 strarray_add(comp_args, "-D__declspec_noinline=__attribute__((noinline))");
501 strarray_add(comp_args, "-D__declspec_noreturn=__attribute__((noreturn))");
502 strarray_add(comp_args, "-D__declspec_nothrow=__attribute__((nothrow))");
503 strarray_add(comp_args, "-D__declspec_novtable=__attribute__(())"); /* ignore it */
504 strarray_add(comp_args, "-D__declspec_selectany=__attribute__((weak))");
505 strarray_add(comp_args, "-D__declspec_thread=__thread");
508 strarray_add(comp_args, "-D__int8=char");
509 strarray_add(comp_args, "-D__int16=short");
510 strarray_add(comp_args, "-D__int32=int");
511 if (opts->target_cpu == CPU_x86_64 || opts->target_cpu == CPU_ARM64)
512 strarray_add(comp_args, "-D__int64=long");
513 else
514 strarray_add(comp_args, "-D__int64=long long");
516 no_compat_defines:
517 strarray_add(comp_args, "-D__WINE__");
519 /* options we handle explicitly */
520 if (opts->compile_only)
521 strarray_add(comp_args, "-c");
522 if (opts->output_name)
524 strarray_add(comp_args, "-o");
525 strarray_add(comp_args, opts->output_name);
528 /* the rest of the pass-through parameters */
529 for ( j = 0 ; j < opts->compiler_args->size ; j++ )
530 strarray_add(comp_args, opts->compiler_args->base[j]);
532 /* the language option, if any */
533 if (lang && strcmp(lang, "-xnone"))
534 strarray_add(comp_args, lang);
536 /* last, but not least, the files */
537 for ( j = 0; j < opts->files->size; j++ )
539 if (opts->files->base[j][0] != '-')
540 strarray_add(comp_args, opts->files->base[j]);
543 /* standard includes come last in the include search path */
544 if (!opts->wine_objdir && !opts->nostdinc)
546 if (opts->use_msvcrt)
548 strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/msvcrt" : "-I" INCLUDEDIR "/msvcrt" );
549 strarray_add(comp_args, "-D__MSVCRT__");
551 strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/windows" : "-I" INCLUDEDIR "/windows" );
553 else if (opts->wine_objdir)
554 strarray_add(comp_args, strmake("-I%s/include", opts->wine_objdir) );
556 spawn(opts->prefix, comp_args, 0);
557 strarray_free(comp_args);
560 static const char* compile_to_object(struct options* opts, const char* file, const char* lang)
562 struct options copts;
563 char* base_name;
565 /* make a copy so we don't change any of the initial stuff */
566 /* a shallow copy is exactly what we want in this case */
567 base_name = get_basename(file);
568 copts = *opts;
569 copts.output_name = get_temp_file(base_name, ".o");
570 copts.compile_only = 1;
571 copts.files = strarray_alloc();
572 strarray_add(copts.files, file);
573 compile(&copts, lang);
574 strarray_free(copts.files);
575 free(base_name);
577 return copts.output_name;
580 /* return the initial set of options needed to run winebuild */
581 static strarray *get_winebuild_args(struct options *opts)
583 const char* winebuild = getenv("WINEBUILD");
584 strarray *spec_args = strarray_alloc();
586 if (!winebuild) winebuild = "winebuild";
587 strarray_add( spec_args, winebuild );
588 if (verbose) strarray_add( spec_args, "-v" );
589 if (keep_generated) strarray_add( spec_args, "--save-temps" );
590 if (opts->target)
592 strarray_add( spec_args, "--target" );
593 strarray_add( spec_args, opts->target );
595 if (opts->unwind_tables) strarray_add( spec_args, "-fasynchronous-unwind-tables" );
596 else strarray_add( spec_args, "-fno-asynchronous-unwind-tables" );
597 return spec_args;
600 static const char* compile_resources_to_object(struct options* opts, const strarray *resources,
601 const char *res_o_name)
603 strarray *winebuild_args = get_winebuild_args( opts );
605 strarray_add( winebuild_args, "--resources" );
606 strarray_add( winebuild_args, "-o" );
607 strarray_add( winebuild_args, res_o_name );
608 strarray_addall( winebuild_args, resources );
610 spawn( opts->prefix, winebuild_args, 0 );
611 strarray_free( winebuild_args );
612 return res_o_name;
615 /* check if there is a static lib associated to a given dll */
616 static char *find_static_lib( const char *dll )
618 char *lib = strmake("%s.a", dll);
619 if (get_file_type(lib) == file_arh) return lib;
620 free( lib );
621 return NULL;
624 /* add specified library to the list of files */
625 static void add_library( struct options *opts, strarray *lib_dirs, strarray *files, const char *library )
627 char *static_lib, *fullname = 0;
629 switch(get_lib_type(opts->target_platform, lib_dirs, library, opts->lib_suffix, &fullname))
631 case file_arh:
632 strarray_add(files, strmake("-a%s", fullname));
633 break;
634 case file_dll:
635 strarray_add(files, strmake("-d%s", fullname));
636 if ((static_lib = find_static_lib(fullname)))
638 strarray_add(files, strmake("-a%s",static_lib));
639 free(static_lib);
641 break;
642 case file_so:
643 default:
644 /* keep it anyway, the linker may know what to do with it */
645 strarray_add(files, strmake("-l%s", library));
646 break;
648 free(fullname);
651 /* hack a main or WinMain function to work around Mingw's lack of Unicode support */
652 static const char *mingw_unicode_hack( struct options *opts )
654 char *main_stub = get_temp_file( opts->output_name, ".c" );
656 create_file( main_stub, 0644,
657 "typedef unsigned short wchar_t;\n"
658 "extern void * __stdcall LoadLibraryA(const char *);\n"
659 "extern void * __stdcall GetProcAddress(void *,const char *);\n"
660 "extern int wmain( int argc, wchar_t *argv[] );\n\n"
661 "int main( int argc, char *argv[] )\n{\n"
662 " int wargc;\n"
663 " wchar_t **wargv, **wenv;\n"
664 " void *msvcrt = LoadLibraryA( \"msvcrt.dll\" );\n"
665 " void (*__wgetmainargs)(int *argc, wchar_t** *wargv, wchar_t** *wenvp, int expand_wildcards,\n"
666 " int *new_mode) = GetProcAddress( msvcrt, \"__wgetmainargs\" );\n"
667 " __wgetmainargs( &wargc, &wargv, &wenv, 0, 0 );\n"
668 " return wmain( wargc, wargv );\n}\n" );
669 return compile_to_object( opts, main_stub, NULL );
672 static void build(struct options* opts)
674 strarray *lib_dirs, *files;
675 strarray *spec_args, *link_args;
676 char *output_file;
677 const char *spec_o_name;
678 const char *output_name, *spec_file, *lang;
679 int generate_app_loader = 1;
680 int fake_module = 0;
681 unsigned int j;
683 /* NOTE: for the files array we'll use the following convention:
684 * -axxx: xxx is an archive (.a)
685 * -dxxx: xxx is a DLL (.def)
686 * -lxxx: xxx is an unsorted library
687 * -oxxx: xxx is an object (.o)
688 * -rxxx: xxx is a resource (.res)
689 * -sxxx: xxx is a shared lib (.so)
690 * -xlll: lll is the language (c, c++, etc.)
693 output_file = strdup( opts->output_name ? opts->output_name : "a.out" );
695 /* 'winegcc -o app xxx.exe.so' only creates the load script */
696 if (opts->files->size == 1 && strendswith(opts->files->base[0], ".exe.so"))
698 create_file(output_file, 0755, app_loader_template, opts->files->base[0]);
699 return;
702 /* generate app loader only for .exe */
703 if (opts->shared || strendswith(output_file, ".so"))
704 generate_app_loader = 0;
706 if (strendswith(output_file, ".fake")) fake_module = 1;
708 /* normalize the filename a bit: strip .so, ensure it has proper ext */
709 if (strendswith(output_file, ".so"))
710 output_file[strlen(output_file) - 3] = 0;
711 if ((output_name = strrchr(output_file, '/'))) output_name++;
712 else output_name = output_file;
713 if (!strchr(output_name, '.'))
714 output_file = strmake("%s.%s", output_file, opts->shared ? "dll" : "exe");
716 /* get the filename from the path */
717 if ((output_name = strrchr(output_file, '/'))) output_name++;
718 else output_name = output_file;
720 /* prepare the linking path */
721 if (!opts->wine_objdir)
723 char *lib_dir = get_lib_dir( opts );
724 lib_dirs = strarray_dup(opts->lib_dirs);
725 strarray_add( lib_dirs, strmake( "%s/wine", lib_dir ));
726 strarray_add( lib_dirs, lib_dir );
728 else
730 lib_dirs = strarray_alloc();
731 strarray_add(lib_dirs, strmake("%s/dlls", opts->wine_objdir));
732 strarray_add(lib_dirs, strmake("%s/libs/wine", opts->wine_objdir));
733 strarray_addall(lib_dirs, opts->lib_dirs);
736 /* mark the files with their appropriate type */
737 spec_file = lang = 0;
738 files = strarray_alloc();
739 link_args = strarray_alloc();
740 for ( j = 0; j < opts->files->size; j++ )
742 const char* file = opts->files->base[j];
743 if (file[0] != '-')
745 switch(get_file_type(file))
747 case file_def:
748 case file_spec:
749 if (spec_file)
750 error("Only one spec file can be specified\n");
751 spec_file = file;
752 break;
753 case file_rc:
754 /* FIXME: invoke wrc to build it */
755 error("Can't compile .rc file at the moment: %s\n", file);
756 break;
757 case file_res:
758 strarray_add(files, strmake("-r%s", file));
759 break;
760 case file_obj:
761 strarray_add(files, strmake("-o%s", file));
762 break;
763 case file_arh:
764 strarray_add(files, strmake("-a%s", file));
765 break;
766 case file_so:
767 strarray_add(files, strmake("-s%s", file));
768 break;
769 case file_na:
770 error("File does not exist: %s\n", file);
771 break;
772 default:
773 file = compile_to_object(opts, file, lang);
774 strarray_add(files, strmake("-o%s", file));
775 break;
778 else if (file[1] == 'l')
779 add_library(opts, lib_dirs, files, file + 2 );
780 else if (file[1] == 'x')
781 lang = file;
784 /* building for Windows is completely different */
786 if (opts->target_platform == PLATFORM_WINDOWS || opts->target_platform == PLATFORM_CYGWIN)
788 strarray *resources = strarray_alloc();
789 char *res_o_name = NULL;
791 if (opts->win16_app)
792 error( "Building 16-bit code is not supported for Windows\n" );
794 if (opts->shared)
796 /* run winebuild to generate the .def file */
797 char *spec_def_name = get_temp_file(output_name, ".spec.def");
798 spec_args = get_winebuild_args( opts );
799 strarray_add(spec_args, "--def");
800 strarray_add(spec_args, "-o");
801 strarray_add(spec_args, spec_def_name);
802 if (spec_file)
804 strarray_add(spec_args, "--export");
805 strarray_add(spec_args, spec_file);
807 spawn(opts->prefix, spec_args, 0);
808 strarray_free(spec_args);
810 if (opts->target) strarray_add(link_args, strmake("%s-dllwrap", opts->target));
811 else strarray_add(link_args, "dllwrap");
812 if (verbose) strarray_add(link_args, "-v");
813 strarray_add(link_args, "-k");
814 strarray_add(link_args, "--def");
815 strarray_add(link_args, spec_def_name);
817 else
819 strarray_addall(link_args, get_translator(opts));
820 strarray_add(link_args, opts->gui_app ? "-mwindows" : "-mconsole");
821 if (opts->nodefaultlibs) strarray_add(link_args, "-nodefaultlibs");
824 for ( j = 0 ; j < opts->linker_args->size ; j++ )
825 strarray_add(link_args, opts->linker_args->base[j]);
827 strarray_add(link_args, "-o");
828 strarray_add(link_args, output_file);
830 if (opts->image_base)
831 strarray_add(link_args, strmake("-Wl,--image-base,%s", opts->image_base));
833 if (opts->large_address_aware) strarray_add( link_args, "-Wl,--large-address-aware" );
835 if (opts->unicode_app && !opts->shared)
836 strarray_add(link_args, mingw_unicode_hack(opts));
838 for ( j = 0; j < lib_dirs->size; j++ )
839 strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
841 if (!opts->nodefaultlibs)
843 add_library(opts, lib_dirs, files, "winecrt0");
844 add_library(opts, lib_dirs, files, "kernel32");
845 add_library(opts, lib_dirs, files, "ntdll");
847 if (opts->shared && !opts->nostdlib) add_library(opts, lib_dirs, files, "wine");
848 if (!opts->shared && opts->use_msvcrt && opts->target_platform == PLATFORM_CYGWIN)
849 add_library(opts, lib_dirs, files, "msvcrt");
851 for ( j = 0; j < files->size; j++ )
853 const char* name = files->base[j] + 2;
855 switch(files->base[j][1])
857 case 'l':
858 case 'd':
859 strarray_add(link_args, strmake("-l%s", name));
860 break;
861 case 's':
862 case 'o':
863 strarray_add(link_args, name);
864 break;
865 case 'a':
866 if (strchr(name, '/'))
868 /* turn the path back into -Ldir -lfoo options
869 * this makes sure that we use the specified libs even
870 * when mingw adds its own import libs to the link */
871 char *lib = xstrdup( name );
872 char *p = strrchr( lib, '/' );
874 *p++ = 0;
875 if (!strncmp( p, "lib", 3 ))
877 char *ext = strrchr( p, '.' );
879 if (ext) *ext = 0;
880 p += 3;
881 strarray_add(link_args, strmake("-L%s", lib ));
882 strarray_add(link_args, strmake("-l%s", p ));
883 free( lib );
884 break;
886 free( lib );
888 strarray_add(link_args, name);
889 break;
890 case 'r':
891 if (!res_o_name)
893 res_o_name = get_temp_file( output_name, ".res.o" );
894 strarray_add( link_args, res_o_name );
896 strarray_add( resources, name );
897 break;
901 if (res_o_name) compile_resources_to_object( opts, resources, res_o_name );
903 spawn(opts->prefix, link_args, 0);
904 strarray_free (resources);
905 strarray_free (link_args);
906 strarray_free (lib_dirs);
907 strarray_free (files);
908 return;
911 /* add the default libraries, if needed */
912 if (!opts->nostdlib && opts->use_msvcrt) add_library(opts, lib_dirs, files, "msvcrt");
914 if (!opts->wine_objdir && !opts->nodefaultlibs)
916 if (opts->gui_app)
918 add_library(opts, lib_dirs, files, "shell32");
919 add_library(opts, lib_dirs, files, "comdlg32");
920 add_library(opts, lib_dirs, files, "gdi32");
922 add_library(opts, lib_dirs, files, "advapi32");
923 add_library(opts, lib_dirs, files, "user32");
926 if (!opts->nodefaultlibs)
928 add_library(opts, lib_dirs, files, "winecrt0");
929 if (opts->win16_app) add_library(opts, lib_dirs, files, "kernel");
930 add_library(opts, lib_dirs, files, "kernel32");
931 add_library(opts, lib_dirs, files, "ntdll");
933 if (!opts->nostdlib) add_library(opts, lib_dirs, files, "wine");
935 /* run winebuild to generate the .spec.o file */
936 spec_args = get_winebuild_args( opts );
937 spec_o_name = get_temp_file(output_name, ".spec.o");
938 if (opts->force_pointer_size)
939 strarray_add(spec_args, strmake("-m%u", 8 * opts->force_pointer_size ));
940 strarray_addall(spec_args, strarray_fromstring(DLLFLAGS, " "));
941 strarray_add(spec_args, opts->shared ? "--dll" : "--exe");
942 if (fake_module)
944 strarray_add(spec_args, "--fake-module");
945 strarray_add(spec_args, "-o");
946 strarray_add(spec_args, output_file);
948 else
950 strarray_add(spec_args, "-o");
951 strarray_add(spec_args, spec_o_name);
953 if (spec_file)
955 strarray_add(spec_args, "-E");
956 strarray_add(spec_args, spec_file);
958 if (opts->win16_app) strarray_add(spec_args, "-m16");
960 if (!opts->shared)
962 strarray_add(spec_args, "-F");
963 strarray_add(spec_args, output_name);
964 strarray_add(spec_args, "--subsystem");
965 strarray_add(spec_args, opts->gui_app ? "windows" : "console");
966 if (opts->unicode_app)
968 strarray_add(spec_args, "--entry");
969 strarray_add(spec_args, "__wine_spec_exe_wentry");
971 if (opts->large_address_aware) strarray_add( spec_args, "--large-address-aware" );
974 for ( j = 0; j < lib_dirs->size; j++ )
975 strarray_add(spec_args, strmake("-L%s", lib_dirs->base[j]));
977 for ( j = 0 ; j < opts->winebuild_args->size ; j++ )
978 strarray_add(spec_args, opts->winebuild_args->base[j]);
980 /* add resource files */
981 for ( j = 0; j < files->size; j++ )
982 if (files->base[j][1] == 'r') strarray_add(spec_args, files->base[j]);
984 /* add other files */
985 strarray_add(spec_args, "--");
986 for ( j = 0; j < files->size; j++ )
988 switch(files->base[j][1])
990 case 'd':
991 case 'a':
992 case 'o':
993 strarray_add(spec_args, files->base[j] + 2);
994 break;
998 spawn(opts->prefix, spec_args, 0);
999 strarray_free (spec_args);
1000 if (fake_module) return; /* nothing else to do */
1002 /* link everything together now */
1003 strarray_addall(link_args, get_translator(opts));
1004 strarray_addall(link_args, strarray_fromstring(LDDLLFLAGS, " "));
1006 strarray_add(link_args, "-o");
1007 strarray_add(link_args, strmake("%s.so", output_file));
1009 for ( j = 0 ; j < opts->linker_args->size ; j++ )
1010 strarray_add(link_args, opts->linker_args->base[j]);
1012 switch (opts->target_platform)
1014 case PLATFORM_APPLE:
1015 if (opts->image_base)
1017 strarray_add(link_args, "-image_base");
1018 strarray_add(link_args, opts->image_base);
1020 if (opts->strip)
1021 strarray_add(link_args, "-Wl,-x");
1022 break;
1023 case PLATFORM_SOLARIS:
1025 char *mapfile = get_temp_file( output_name, ".map" );
1026 const char *align = opts->section_align ? opts->section_align : "0x1000";
1028 create_file( mapfile, 0644, "text = A%s;\ndata = A%s;\n", align, align );
1029 strarray_add(link_args, strmake("-Wl,-M,%s", mapfile));
1030 strarray_add(tmp_files, mapfile);
1032 break;
1033 default:
1034 break;
1037 for ( j = 0; j < lib_dirs->size; j++ )
1038 strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
1040 strarray_add(link_args, spec_o_name);
1042 for ( j = 0; j < files->size; j++ )
1044 const char* name = files->base[j] + 2;
1045 switch(files->base[j][1])
1047 case 'l':
1048 strarray_add(link_args, strmake("-l%s", name));
1049 break;
1050 case 's':
1051 case 'a':
1052 case 'o':
1053 strarray_add(link_args, name);
1054 break;
1058 if (!opts->nostdlib)
1060 strarray_add(link_args, "-lm");
1061 strarray_add(link_args, "-lc");
1064 spawn(opts->prefix, link_args, 0);
1065 strarray_free (link_args);
1067 /* set the base address */
1068 if (opts->image_base)
1070 const char *prelink = PRELINK;
1071 if (prelink[0] && strcmp(prelink,"false"))
1073 strarray *prelink_args = strarray_alloc();
1074 strarray_add(prelink_args, prelink);
1075 strarray_add(prelink_args, "--reloc-only");
1076 strarray_add(prelink_args, opts->image_base);
1077 strarray_add(prelink_args, strmake("%s.so", output_file));
1078 spawn(opts->prefix, prelink_args, 1);
1079 strarray_free(prelink_args);
1083 /* create the loader script */
1084 if (generate_app_loader)
1085 create_file(output_file, 0755, app_loader_template, strmake("%s.so", output_name));
1089 static void forward(int argc, char **argv, struct options* opts)
1091 strarray* args = strarray_alloc();
1092 int j;
1094 strarray_addall(args, get_translator(opts));
1096 for( j = 1; j < argc; j++ )
1097 strarray_add(args, argv[j]);
1099 spawn(opts->prefix, args, 0);
1100 strarray_free (args);
1104 * Linker Options
1105 * object-file-name -llibrary -nostartfiles -nodefaultlibs
1106 * -nostdlib -s -static -static-libgcc -shared -shared-libgcc
1107 * -symbolic -Wl,option -Xlinker option -u symbol
1108 * -framework name
1110 static int is_linker_arg(const char* arg)
1112 static const char* link_switches[] =
1114 "-nostartfiles", "-nostdlib", "-s",
1115 "-static", "-static-libgcc", "-shared", "-shared-libgcc", "-symbolic",
1116 "-framework", "--coverage", "-fprofile-generate", "-fprofile-use"
1118 unsigned int j;
1120 switch (arg[1])
1122 case 'R':
1123 case 'z':
1124 case 'l':
1125 case 'u':
1126 return 1;
1127 case 'W':
1128 if (strncmp("-Wl,", arg, 4) == 0) return 1;
1129 break;
1130 case 'X':
1131 if (strcmp("-Xlinker", arg) == 0) return 1;
1132 break;
1133 case 'a':
1134 if (strcmp("-arch", arg) == 0) return 1;
1135 break;
1138 for (j = 0; j < sizeof(link_switches)/sizeof(link_switches[0]); j++)
1139 if (strcmp(link_switches[j], arg) == 0) return 1;
1141 return 0;
1145 * Target Options
1146 * -b machine -V version
1148 static int is_target_arg(const char* arg)
1150 return arg[1] == 'b' || arg[1] == 'V';
1155 * Directory Options
1156 * -Bprefix -Idir -I- -Ldir -specs=file
1158 static int is_directory_arg(const char* arg)
1160 return arg[1] == 'B' || arg[1] == 'L' || arg[1] == 'I' || strncmp("-specs=", arg, 7) == 0;
1164 * MinGW Options
1165 * -mno-cygwin -mwindows -mconsole -mthreads -municode
1167 static int is_mingw_arg(const char* arg)
1169 static const char* mingw_switches[] =
1171 "-mno-cygwin", "-mwindows", "-mconsole", "-mthreads", "-municode"
1173 unsigned int j;
1175 for (j = 0; j < sizeof(mingw_switches)/sizeof(mingw_switches[0]); j++)
1176 if (strcmp(mingw_switches[j], arg) == 0) return 1;
1178 return 0;
1181 static void parse_target_option( struct options *opts, const char *target )
1183 char *p, *platform, *spec = xstrdup( target );
1184 unsigned int i;
1186 /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
1188 /* get the CPU part */
1190 if ((p = strchr( spec, '-' )))
1192 *p++ = 0;
1193 for (i = 0; i < sizeof(cpu_names)/sizeof(cpu_names[0]); i++)
1195 if (!strcmp( cpu_names[i].name, spec ))
1197 opts->target_cpu = cpu_names[i].cpu;
1198 break;
1201 if (i == sizeof(cpu_names)/sizeof(cpu_names[0]))
1202 error( "Unrecognized CPU '%s'\n", spec );
1203 platform = p;
1204 if ((p = strrchr( p, '-' ))) platform = p + 1;
1206 else if (!strcmp( spec, "mingw32" ))
1208 opts->target_cpu = CPU_x86;
1209 platform = spec;
1211 else
1212 error( "Invalid target specification '%s'\n", target );
1214 /* get the OS part */
1216 opts->target_platform = PLATFORM_UNSPECIFIED; /* default value */
1217 for (i = 0; i < sizeof(platform_names)/sizeof(platform_names[0]); i++)
1219 if (!strncmp( platform_names[i].name, platform, strlen(platform_names[i].name) ))
1221 opts->target_platform = platform_names[i].platform;
1222 break;
1226 free( spec );
1227 opts->target = xstrdup( target );
1230 int main(int argc, char **argv)
1232 int i, c, next_is_arg = 0, linking = 1;
1233 int raw_compiler_arg, raw_linker_arg;
1234 const char* option_arg;
1235 struct options opts;
1236 char* lang = 0;
1237 char* str;
1239 #ifdef SIGHUP
1240 signal( SIGHUP, exit_on_signal );
1241 #endif
1242 signal( SIGTERM, exit_on_signal );
1243 signal( SIGINT, exit_on_signal );
1244 #ifdef HAVE_SIGADDSET
1245 sigemptyset( &signal_mask );
1246 sigaddset( &signal_mask, SIGHUP );
1247 sigaddset( &signal_mask, SIGTERM );
1248 sigaddset( &signal_mask, SIGINT );
1249 #endif
1251 /* setup tmp file removal at exit */
1252 tmp_files = strarray_alloc();
1253 atexit(clean_temp_files);
1255 /* initialize options */
1256 memset(&opts, 0, sizeof(opts));
1257 opts.target_cpu = build_cpu;
1258 opts.target_platform = build_platform;
1259 opts.lib_dirs = strarray_alloc();
1260 opts.files = strarray_alloc();
1261 opts.linker_args = strarray_alloc();
1262 opts.compiler_args = strarray_alloc();
1263 opts.winebuild_args = strarray_alloc();
1265 /* determine the processor type */
1266 if (strendswith(argv[0], "winecpp")) opts.processor = proc_cpp;
1267 else if (strendswith(argv[0], "++")) opts.processor = proc_cxx;
1269 /* parse options */
1270 for ( i = 1 ; i < argc ; i++ )
1272 if (argv[i][0] == '-') /* option */
1274 /* determine if this switch is followed by a separate argument */
1275 next_is_arg = 0;
1276 option_arg = 0;
1277 switch(argv[i][1])
1279 case 'x': case 'o': case 'D': case 'U':
1280 case 'I': case 'A': case 'l': case 'u':
1281 case 'b': case 'V': case 'G': case 'L':
1282 case 'B': case 'R': case 'z':
1283 if (argv[i][2]) option_arg = &argv[i][2];
1284 else next_is_arg = 1;
1285 break;
1286 case 'i':
1287 next_is_arg = 1;
1288 break;
1289 case 'a':
1290 if (strcmp("-aux-info", argv[i]) == 0)
1291 next_is_arg = 1;
1292 if (strcmp("-arch", argv[i]) == 0)
1293 next_is_arg = 1;
1294 break;
1295 case 'X':
1296 if (strcmp("-Xlinker", argv[i]) == 0)
1297 next_is_arg = 1;
1298 break;
1299 case 'M':
1300 c = argv[i][2];
1301 if (c == 'F' || c == 'T' || c == 'Q')
1303 if (argv[i][3]) option_arg = &argv[i][3];
1304 else next_is_arg = 1;
1306 break;
1307 case 'f':
1308 if (strcmp("-framework", argv[i]) == 0)
1309 next_is_arg = 1;
1310 break;
1311 case '-':
1312 if (strcmp("--param", argv[i]) == 0)
1313 next_is_arg = 1;
1314 break;
1316 if (next_is_arg)
1318 if (i + 1 >= argc) error("option -%c requires an argument\n", argv[i][1]);
1319 option_arg = argv[i+1];
1322 /* determine what options go 'as is' to the linker & the compiler */
1323 raw_compiler_arg = raw_linker_arg = 0;
1324 if (is_linker_arg(argv[i]))
1326 raw_linker_arg = 1;
1328 else
1330 if (is_directory_arg(argv[i]) || is_target_arg(argv[i]))
1331 raw_linker_arg = 1;
1332 raw_compiler_arg = !is_mingw_arg(argv[i]);
1335 /* these things we handle explicitly so we don't pass them 'as is' */
1336 if (argv[i][1] == 'l' || argv[i][1] == 'I' || argv[i][1] == 'L')
1337 raw_linker_arg = 0;
1338 if (argv[i][1] == 'c' || argv[i][1] == 'L')
1339 raw_compiler_arg = 0;
1340 if (argv[i][1] == 'o' || argv[i][1] == 'b' || argv[i][1] == 'V')
1341 raw_compiler_arg = raw_linker_arg = 0;
1343 /* do a bit of semantic analysis */
1344 switch (argv[i][1])
1346 case 'B':
1347 str = strdup(option_arg);
1348 if (strendswith(str, "/")) str[strlen(str) - 1] = 0;
1349 if (strendswith(str, "/tools/winebuild"))
1351 char *objdir = strdup(str);
1352 objdir[strlen(objdir) - sizeof("/tools/winebuild") + 1] = 0;
1353 opts.wine_objdir = objdir;
1354 /* don't pass it to the compiler, this generates warnings */
1355 raw_compiler_arg = raw_linker_arg = 0;
1357 if (!opts.prefix) opts.prefix = strarray_alloc();
1358 strarray_add(opts.prefix, str);
1359 break;
1360 case 'b':
1361 parse_target_option( &opts, option_arg );
1362 break;
1363 case 'V':
1364 opts.version = xstrdup( option_arg );
1365 break;
1366 case 'c': /* compile or assemble */
1367 if (argv[i][2] == 0) opts.compile_only = 1;
1368 /* fall through */
1369 case 'S': /* generate assembler code */
1370 case 'E': /* preprocess only */
1371 if (argv[i][2] == 0) linking = 0;
1372 break;
1373 case 'f':
1374 if (strcmp("-fno-short-wchar", argv[i]) == 0)
1375 opts.noshortwchar = 1;
1376 else if (!strcmp("-fasynchronous-unwind-tables", argv[i]))
1377 opts.unwind_tables = 1;
1378 else if (!strcmp("-fno-asynchronous-unwind-tables", argv[i]))
1379 opts.unwind_tables = 0;
1380 break;
1381 case 'l':
1382 strarray_add(opts.files, strmake("-l%s", option_arg));
1383 break;
1384 case 'L':
1385 strarray_add(opts.lib_dirs, option_arg);
1386 break;
1387 case 'M': /* map file generation */
1388 linking = 0;
1389 break;
1390 case 'm':
1391 if (strcmp("-mno-cygwin", argv[i]) == 0)
1392 opts.use_msvcrt = 1;
1393 else if (strcmp("-mwindows", argv[i]) == 0)
1394 opts.gui_app = 1;
1395 else if (strcmp("-mconsole", argv[i]) == 0)
1396 opts.gui_app = 0;
1397 else if (strcmp("-municode", argv[i]) == 0)
1398 opts.unicode_app = 1;
1399 else if (strcmp("-m16", argv[i]) == 0)
1400 opts.win16_app = 1;
1401 else if (strcmp("-m32", argv[i]) == 0)
1403 if (opts.target_cpu == CPU_x86_64)
1404 opts.target_cpu = CPU_x86;
1405 else if (opts.target_cpu == CPU_ARM64)
1406 opts.target_cpu = CPU_ARM;
1407 opts.force_pointer_size = 4;
1408 raw_linker_arg = 1;
1410 else if (strcmp("-m64", argv[i]) == 0)
1412 opts.force_pointer_size = 8;
1413 raw_linker_arg = 1;
1415 else if (strncmp("-mcpu=", argv[i], 6) == 0)
1416 strarray_add(opts.winebuild_args, argv[i]);
1417 break;
1418 case 'n':
1419 if (strcmp("-nostdinc", argv[i]) == 0)
1420 opts.nostdinc = 1;
1421 else if (strcmp("-nodefaultlibs", argv[i]) == 0)
1422 opts.nodefaultlibs = 1;
1423 else if (strcmp("-nostdlib", argv[i]) == 0)
1424 opts.nostdlib = 1;
1425 else if (strcmp("-nostartfiles", argv[i]) == 0)
1426 opts.nostartfiles = 1;
1427 break;
1428 case 'o':
1429 opts.output_name = option_arg;
1430 break;
1431 case 's':
1432 if (strcmp("-static", argv[i]) == 0)
1433 linking = -1;
1434 else if(strcmp("-save-temps", argv[i]) == 0)
1435 keep_generated = 1;
1436 else if(strcmp("-shared", argv[i]) == 0)
1438 opts.shared = 1;
1439 raw_compiler_arg = raw_linker_arg = 0;
1441 else if (strcmp("-s", argv[i]) == 0 && opts.target_platform == PLATFORM_APPLE)
1443 /* On Mac, change -s into -Wl,-x. ld's -s switch
1444 * is deprecated, and it doesn't work on Tiger with
1445 * MH_BUNDLEs anyway
1447 opts.strip = 1;
1448 raw_linker_arg = 0;
1450 break;
1451 case 'v':
1452 if (argv[i][2] == 0) verbose++;
1453 break;
1454 case 'W':
1455 if (strncmp("-Wl,", argv[i], 4) == 0)
1457 unsigned int j;
1458 strarray* Wl = strarray_fromstring(argv[i] + 4, ",");
1459 for (j = 0; j < Wl->size; j++)
1461 if (!strcmp(Wl->base[j], "--image-base") && j < Wl->size - 1)
1463 opts.image_base = strdup( Wl->base[++j] );
1464 continue;
1466 if (!strcmp(Wl->base[j], "--section-alignment") && j < Wl->size - 1)
1468 opts.section_align = strdup( Wl->base[++j] );
1469 continue;
1471 if (!strcmp(Wl->base[j], "--large-address-aware"))
1473 opts.large_address_aware = 1;
1474 continue;
1476 if (!strcmp(Wl->base[j], "-static")) linking = -1;
1477 strarray_add(opts.linker_args, strmake("-Wl,%s",Wl->base[j]));
1479 strarray_free(Wl);
1480 raw_compiler_arg = raw_linker_arg = 0;
1482 else if (strncmp("-Wb,", argv[i], 4) == 0)
1484 strarray* Wb = strarray_fromstring(argv[i] + 4, ",");
1485 strarray_addall(opts.winebuild_args, Wb);
1486 strarray_free(Wb);
1487 /* don't pass it to the compiler, it generates errors */
1488 raw_compiler_arg = raw_linker_arg = 0;
1490 break;
1491 case 'x':
1492 lang = strmake("-x%s", option_arg);
1493 strarray_add(opts.files, lang);
1494 /* we'll pass these flags ourselves, explicitly */
1495 raw_compiler_arg = raw_linker_arg = 0;
1496 break;
1497 case '-':
1498 if (strcmp("-static", argv[i]+1) == 0)
1499 linking = -1;
1500 else if (!strncmp("--sysroot", argv[i], 9) && opts.wine_objdir)
1502 if (argv[i][9] == '=') opts.wine_objdir = argv[i] + 10;
1503 else opts.wine_objdir = argv[++i];
1504 raw_compiler_arg = raw_linker_arg = 0;
1506 else if (!strncmp("--lib-suffix", argv[i], 12) && opts.wine_objdir)
1508 if (argv[i][12] == '=') opts.lib_suffix = argv[i] + 13;
1509 else opts.lib_suffix = argv[++i];
1510 raw_compiler_arg = raw_linker_arg = 0;
1512 break;
1515 /* put the arg into the appropriate bucket */
1516 if (raw_linker_arg)
1518 strarray_add(opts.linker_args, argv[i]);
1519 if (next_is_arg && (i + 1 < argc))
1520 strarray_add(opts.linker_args, argv[i + 1]);
1522 if (raw_compiler_arg)
1524 strarray_add(opts.compiler_args, argv[i]);
1525 if (next_is_arg && (i + 1 < argc))
1526 strarray_add(opts.compiler_args, argv[i + 1]);
1529 /* skip the next token if it's an argument */
1530 if (next_is_arg) i++;
1532 else
1534 strarray_add(opts.files, argv[i]);
1538 if (opts.processor == proc_cpp) linking = 0;
1539 if (linking == -1) error("Static linking is not supported\n");
1541 if (opts.files->size == 0) forward(argc, argv, &opts);
1542 else if (linking) build(&opts);
1543 else compile(&opts, lang);
1545 return 0;