d3dx10_43: Add D3DX10CreateEffectPoolFromMemory stub.
[wine.git] / tools / winegcc / winegcc.c
blobad139f5c4ce065e4b361f3e7a2ba6d0ba501ccba
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 TMPDIR */
272 const char* tmpdir;
274 free(tmp);
275 if (!(tmpdir = getenv("TMPDIR"))) tmpdir = "/tmp";
276 tmp = strmake("%s/%s-XXXXXX%s", tmpdir, 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 static int try_link( const strarray *prefix, const strarray *link_tool, const char *cflags )
338 const char *in = get_temp_file( "try_link", ".c" );
339 const char *out = get_temp_file( "try_link", ".out" );
340 const char *err = get_temp_file( "try_link", ".err" );
341 strarray *link = strarray_dup( link_tool );
342 int sout = -1, serr = -1;
343 int ret;
345 create_file( in, 0644, "int main(void){return 1;}\n" );
347 strarray_add( link, "-o" );
348 strarray_add( link, out );
349 strarray_addall( link, strarray_fromstring( cflags, " " ) );
350 strarray_add( link, in );
352 sout = dup( fileno(stdout) );
353 freopen( err, "w", stdout );
354 serr = dup( fileno(stderr) );
355 freopen( err, "w", stderr );
356 ret = spawn( prefix, link, 1 );
357 if (sout >= 0)
359 dup2( sout, fileno(stdout) );
360 close( sout );
362 if (serr >= 0)
364 dup2( serr, fileno(stderr) );
365 close( serr );
367 strarray_free( link );
368 return ret;
371 static const strarray* get_lddllflags( const struct options *opts, const strarray *link_tool )
373 strarray *flags = strarray_alloc();
374 switch (opts->target_platform)
376 case PLATFORM_APPLE:
377 strarray_add( flags, "-bundle" );
378 strarray_add( flags, "-multiply_defined" );
379 strarray_add( flags, "suppress" );
380 if (opts->target_cpu == CPU_POWERPC)
382 strarray_add( flags, "-read_only_relocs" );
383 strarray_add( flags, "warning" );
385 break;
387 case PLATFORM_SOLARIS:
388 case PLATFORM_UNSPECIFIED:
389 strarray_add( flags, "-shared" );
390 strarray_add( flags, "-Wl,-Bsymbolic" );
392 /* Try all options first - this is likely to succeed on modern compilers */
393 if (!try_link( opts->prefix, link_tool, "-fPIC -shared -Wl,-Bsymbolic "
394 "-Wl,-z,defs -Wl,-init,__wine_spec_init,-fini,_wine_spec_fini" ))
396 strarray_add( flags, "-Wl,-z,defs" );
397 strarray_add( flags, "-Wl,-init,__wine_spec_init,-fini,__wine_spec_fini" );
399 else /* otherwise figure out which ones are allowed */
401 if (!try_link( opts->prefix, link_tool, "-fPIC -shared -Wl,-Bsymbolic -Wl,-z,defs" ))
402 strarray_add( flags, "-Wl,-z,defs" );
403 if (!try_link( opts->prefix, link_tool, "-fPIC -shared -Wl,-Bsymbolic "
404 "-Wl,-init,__wine_spec_init,-fini,_wine_spec_fini" ))
405 strarray_add( flags, "-Wl,-init,__wine_spec_init,-fini,__wine_spec_fini" );
407 break;
409 default:
410 assert(0);
412 return flags;
415 /* check that file is a library for the correct platform */
416 static int check_platform( struct options *opts, const char *file )
418 int ret = 0, fd = open( file, O_RDONLY );
419 if (fd != -1)
421 unsigned char header[16];
422 if (read( fd, header, sizeof(header) ) == sizeof(header))
424 /* FIXME: only ELF is supported, platform is not checked beyond 32/64 */
425 if (!memcmp( header, "\177ELF", 4 ))
427 if (header[4] == 2) /* 64-bit */
428 ret = (opts->target_cpu == CPU_x86_64 || opts->target_cpu == CPU_ARM64);
429 else
430 ret = (opts->target_cpu != CPU_x86_64 && opts->target_cpu != CPU_ARM64);
433 close( fd );
435 return ret;
438 static char *get_lib_dir( struct options *opts )
440 static const char *stdlibpath[] = { LIBDIR, "/usr/lib", "/usr/local/lib", "/lib" };
441 static const char libwine[] = "/libwine.so";
442 unsigned int i;
444 for (i = 0; i < sizeof(stdlibpath)/sizeof(stdlibpath[0]); i++)
446 char *p, *buffer = xmalloc( strlen(stdlibpath[i]) + strlen("/arm-linux-gnueabi") + strlen(libwine) + 1 );
447 strcpy( buffer, stdlibpath[i] );
448 p = buffer + strlen(buffer);
449 while (p > buffer && p[-1] == '/') p--;
450 strcpy( p, libwine );
451 if (check_platform( opts, buffer )) goto found;
452 if (p > buffer + 2 && (!memcmp( p - 2, "32", 2 ) || !memcmp( p - 2, "64", 2 ))) p -= 2;
453 if (opts->target_cpu != CPU_x86_64 && opts->target_cpu != CPU_ARM64)
455 strcpy( p, "32" );
456 strcat( p, libwine );
457 if (check_platform( opts, buffer )) goto found;
459 if (opts->target_cpu == CPU_x86_64 || opts->target_cpu == CPU_ARM64)
461 strcpy( p, "64" );
462 strcat( p, libwine );
463 if (check_platform( opts, buffer )) goto found;
465 switch(opts->target_cpu)
467 case CPU_x86: strcpy( p, "/i386-linux-gnu" ); break;
468 case CPU_x86_64: strcpy( p, "/x86_64-linux-gnu" ); break;
469 case CPU_ARM: strcpy( p, "/arm-linux-gnueabi" ); break;
470 case CPU_ARM64: strcpy( p, "/aarch64-linux-gnu" ); break;
471 case CPU_POWERPC: strcpy( p, "/powerpc-linux-gnu" ); break;
472 default:
473 assert(0);
475 strcat( p, libwine );
476 if (check_platform( opts, buffer )) goto found;
477 free( buffer );
478 continue;
480 found:
481 buffer[strlen(buffer) - strlen(libwine)] = 0;
482 return buffer;
484 return xstrdup( LIBDIR );
487 static void compile(struct options* opts, const char* lang)
489 strarray* comp_args = strarray_alloc();
490 unsigned int i, j;
491 int gcc_defs = 0;
492 strarray* gcc;
493 strarray* gpp;
495 strarray_addall(comp_args, get_translator(opts));
496 switch(opts->processor)
498 case proc_cpp: gcc_defs = 1; break;
499 case proc_as: gcc_defs = 0; break;
500 /* Note: if the C compiler is gcc we assume the C++ compiler is too */
501 /* mixing different C and C++ compilers isn't supported in configure anyway */
502 case proc_cc:
503 case proc_cxx:
504 gcc = strarray_fromstring(build_tool_name(opts, "gcc", CC), " ");
505 gpp = strarray_fromstring(build_tool_name(opts, "g++", CXX), " ");
506 for ( j = 0; !gcc_defs && j < comp_args->size; j++ )
508 const char *cc = comp_args->base[j];
510 for (i = 0; !gcc_defs && i < gcc->size; i++)
511 gcc_defs = gcc->base[i][0] != '-' && strendswith(cc, gcc->base[i]);
512 for (i = 0; !gcc_defs && i < gpp->size; i++)
513 gcc_defs = gpp->base[i][0] != '-' && strendswith(cc, gpp->base[i]);
515 strarray_free(gcc);
516 strarray_free(gpp);
517 break;
520 if (opts->target_platform == PLATFORM_WINDOWS || opts->target_platform == PLATFORM_CYGWIN)
521 goto no_compat_defines;
523 if (opts->processor != proc_cpp)
525 if (gcc_defs && !opts->wine_objdir && !opts->noshortwchar)
527 strarray_add(comp_args, "-fshort-wchar");
528 strarray_add(comp_args, "-DWINE_UNICODE_NATIVE");
530 strarray_add(comp_args, "-D_REENTRANT");
531 strarray_add(comp_args, "-fPIC");
534 if (opts->target_cpu == CPU_x86_64 || opts->target_cpu == CPU_ARM64)
536 strarray_add(comp_args, "-DWIN64");
537 strarray_add(comp_args, "-D_WIN64");
538 strarray_add(comp_args, "-D__WIN64");
539 strarray_add(comp_args, "-D__WIN64__");
542 strarray_add(comp_args, "-DWIN32");
543 strarray_add(comp_args, "-D_WIN32");
544 strarray_add(comp_args, "-D__WIN32");
545 strarray_add(comp_args, "-D__WIN32__");
546 strarray_add(comp_args, "-D__WINNT");
547 strarray_add(comp_args, "-D__WINNT__");
549 if (gcc_defs)
551 int fastcall_done = 0;
552 if (opts->target_cpu == CPU_x86_64)
554 strarray_add(comp_args, "-D__stdcall=__attribute__((ms_abi))");
555 strarray_add(comp_args, "-D__cdecl=__attribute__((ms_abi))");
556 strarray_add(comp_args, "-D_stdcall=__attribute__((ms_abi))");
557 strarray_add(comp_args, "-D_cdecl=__attribute__((ms_abi))");
558 strarray_add(comp_args, "-D__fastcall=__attribute__((ms_abi))");
559 strarray_add(comp_args, "-D_fastcall=__attribute__((ms_abi))");
560 fastcall_done = 1;
562 else if (opts->target_platform == PLATFORM_APPLE)
564 /* Mac OS X uses a 16-byte aligned stack and not a 4-byte one */
565 strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
566 strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
567 strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
568 strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
570 else if (opts->target_cpu == CPU_ARM || opts->target_cpu == CPU_ARM64)
572 strarray_add(comp_args, "-D__stdcall=");
573 strarray_add(comp_args, "-D__cdecl=");
574 strarray_add(comp_args, "-D_stdcall=");
575 strarray_add(comp_args, "-D_cdecl=");
576 strarray_add(comp_args, "-D__fastcall=");
577 strarray_add(comp_args, "-D_fastcall=");
578 fastcall_done = 1;
580 else
582 strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__))");
583 strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__))");
584 strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__))");
585 strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__))");
588 if (!fastcall_done)
590 strarray_add(comp_args, "-D__fastcall=__attribute__((__fastcall__))");
591 strarray_add(comp_args, "-D_fastcall=__attribute__((__fastcall__))");
593 strarray_add(comp_args, "-D__declspec(x)=__declspec_##x");
594 strarray_add(comp_args, "-D__declspec_align(x)=__attribute__((aligned(x)))");
595 strarray_add(comp_args, "-D__declspec_allocate(x)=__attribute__((section(x)))");
596 strarray_add(comp_args, "-D__declspec_deprecated=__attribute__((deprecated))");
597 strarray_add(comp_args, "-D__declspec_dllimport=__attribute__((dllimport))");
598 strarray_add(comp_args, "-D__declspec_dllexport=__attribute__((dllexport))");
599 strarray_add(comp_args, "-D__declspec_naked=__attribute__((naked))");
600 strarray_add(comp_args, "-D__declspec_noinline=__attribute__((noinline))");
601 strarray_add(comp_args, "-D__declspec_noreturn=__attribute__((noreturn))");
602 strarray_add(comp_args, "-D__declspec_nothrow=__attribute__((nothrow))");
603 strarray_add(comp_args, "-D__declspec_novtable=__attribute__(())"); /* ignore it */
604 strarray_add(comp_args, "-D__declspec_selectany=__attribute__((weak))");
605 strarray_add(comp_args, "-D__declspec_thread=__thread");
608 strarray_add(comp_args, "-D__int8=char");
609 strarray_add(comp_args, "-D__int16=short");
610 strarray_add(comp_args, "-D__int32=int");
611 if (opts->target_cpu == CPU_x86_64 || opts->target_cpu == CPU_ARM64)
612 strarray_add(comp_args, "-D__int64=long");
613 else
614 strarray_add(comp_args, "-D__int64=long long");
616 no_compat_defines:
617 strarray_add(comp_args, "-D__WINE__");
619 /* options we handle explicitly */
620 if (opts->compile_only)
621 strarray_add(comp_args, "-c");
622 if (opts->output_name)
624 strarray_add(comp_args, "-o");
625 strarray_add(comp_args, opts->output_name);
628 /* the rest of the pass-through parameters */
629 for ( j = 0 ; j < opts->compiler_args->size ; j++ )
630 strarray_add(comp_args, opts->compiler_args->base[j]);
632 /* the language option, if any */
633 if (lang && strcmp(lang, "-xnone"))
634 strarray_add(comp_args, lang);
636 /* last, but not least, the files */
637 for ( j = 0; j < opts->files->size; j++ )
639 if (opts->files->base[j][0] != '-')
640 strarray_add(comp_args, opts->files->base[j]);
643 /* standard includes come last in the include search path */
644 if (!opts->wine_objdir && !opts->nostdinc)
646 if (opts->use_msvcrt)
648 strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/msvcrt" : "-I" INCLUDEDIR "/msvcrt" );
649 strarray_add(comp_args, "-D__MSVCRT__");
651 strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/windows" : "-I" INCLUDEDIR "/windows" );
653 else if (opts->wine_objdir)
654 strarray_add(comp_args, strmake("-I%s/include", opts->wine_objdir) );
656 spawn(opts->prefix, comp_args, 0);
657 strarray_free(comp_args);
660 static const char* compile_to_object(struct options* opts, const char* file, const char* lang)
662 struct options copts;
663 char* base_name;
665 /* make a copy so we don't change any of the initial stuff */
666 /* a shallow copy is exactly what we want in this case */
667 base_name = get_basename(file);
668 copts = *opts;
669 copts.output_name = get_temp_file(base_name, ".o");
670 copts.compile_only = 1;
671 copts.files = strarray_alloc();
672 strarray_add(copts.files, file);
673 compile(&copts, lang);
674 strarray_free(copts.files);
675 free(base_name);
677 return copts.output_name;
680 /* return the initial set of options needed to run winebuild */
681 static strarray *get_winebuild_args(struct options *opts)
683 const char* winebuild = getenv("WINEBUILD");
684 strarray *spec_args = strarray_alloc();
686 if (!winebuild) winebuild = "winebuild";
687 strarray_add( spec_args, winebuild );
688 if (verbose) strarray_add( spec_args, "-v" );
689 if (keep_generated) strarray_add( spec_args, "--save-temps" );
690 if (opts->target)
692 strarray_add( spec_args, "--target" );
693 strarray_add( spec_args, opts->target );
695 if (opts->unwind_tables) strarray_add( spec_args, "-fasynchronous-unwind-tables" );
696 else strarray_add( spec_args, "-fno-asynchronous-unwind-tables" );
697 return spec_args;
700 static const char* compile_resources_to_object(struct options* opts, const strarray *resources,
701 const char *res_o_name)
703 strarray *winebuild_args = get_winebuild_args( opts );
705 strarray_add( winebuild_args, "--resources" );
706 strarray_add( winebuild_args, "-o" );
707 strarray_add( winebuild_args, res_o_name );
708 strarray_addall( winebuild_args, resources );
710 spawn( opts->prefix, winebuild_args, 0 );
711 strarray_free( winebuild_args );
712 return res_o_name;
715 /* check if there is a static lib associated to a given dll */
716 static char *find_static_lib( const char *dll )
718 char *lib = strmake("%s.a", dll);
719 if (get_file_type(lib) == file_arh) return lib;
720 free( lib );
721 return NULL;
724 /* add specified library to the list of files */
725 static void add_library( struct options *opts, strarray *lib_dirs, strarray *files, const char *library )
727 char *static_lib, *fullname = 0;
729 switch(get_lib_type(opts->target_platform, lib_dirs, library, opts->lib_suffix, &fullname))
731 case file_arh:
732 strarray_add(files, strmake("-a%s", fullname));
733 break;
734 case file_dll:
735 strarray_add(files, strmake("-d%s", fullname));
736 if ((static_lib = find_static_lib(fullname)))
738 strarray_add(files, strmake("-a%s",static_lib));
739 free(static_lib);
741 break;
742 case file_so:
743 default:
744 /* keep it anyway, the linker may know what to do with it */
745 strarray_add(files, strmake("-l%s", library));
746 break;
748 free(fullname);
751 /* hack a main or WinMain function to work around Mingw's lack of Unicode support */
752 static const char *mingw_unicode_hack( struct options *opts )
754 char *main_stub = get_temp_file( opts->output_name, ".c" );
756 create_file( main_stub, 0644,
757 "typedef unsigned short wchar_t;\n"
758 "extern void * __stdcall LoadLibraryA(const char *);\n"
759 "extern void * __stdcall GetProcAddress(void *,const char *);\n"
760 "extern int wmain( int argc, wchar_t *argv[] );\n\n"
761 "int main( int argc, char *argv[] )\n{\n"
762 " int wargc;\n"
763 " wchar_t **wargv, **wenv;\n"
764 " void *msvcrt = LoadLibraryA( \"msvcrt.dll\" );\n"
765 " void (*__wgetmainargs)(int *argc, wchar_t** *wargv, wchar_t** *wenvp, int expand_wildcards,\n"
766 " int *new_mode) = GetProcAddress( msvcrt, \"__wgetmainargs\" );\n"
767 " __wgetmainargs( &wargc, &wargv, &wenv, 0, 0 );\n"
768 " return wmain( wargc, wargv );\n}\n" );
769 return compile_to_object( opts, main_stub, NULL );
772 static void build(struct options* opts)
774 strarray *lib_dirs, *files;
775 strarray *spec_args, *link_args;
776 char *output_file;
777 const char *spec_o_name;
778 const char *output_name, *spec_file, *lang;
779 const char *prelink = NULL;
780 int generate_app_loader = 1;
781 int fake_module = 0;
782 unsigned int j;
784 /* NOTE: for the files array we'll use the following convention:
785 * -axxx: xxx is an archive (.a)
786 * -dxxx: xxx is a DLL (.def)
787 * -lxxx: xxx is an unsorted library
788 * -oxxx: xxx is an object (.o)
789 * -rxxx: xxx is a resource (.res)
790 * -sxxx: xxx is a shared lib (.so)
791 * -xlll: lll is the language (c, c++, etc.)
794 output_file = strdup( opts->output_name ? opts->output_name : "a.out" );
796 /* 'winegcc -o app xxx.exe.so' only creates the load script */
797 if (opts->files->size == 1 && strendswith(opts->files->base[0], ".exe.so"))
799 create_file(output_file, 0755, app_loader_template, opts->files->base[0]);
800 return;
803 /* generate app loader only for .exe */
804 if (opts->shared || strendswith(output_file, ".so"))
805 generate_app_loader = 0;
807 if (strendswith(output_file, ".fake")) fake_module = 1;
809 /* normalize the filename a bit: strip .so, ensure it has proper ext */
810 if (strendswith(output_file, ".so"))
811 output_file[strlen(output_file) - 3] = 0;
812 if ((output_name = strrchr(output_file, '/'))) output_name++;
813 else output_name = output_file;
814 if (!strchr(output_name, '.'))
815 output_file = strmake("%s.%s", output_file, opts->shared ? "dll" : "exe");
817 /* get the filename from the path */
818 if ((output_name = strrchr(output_file, '/'))) output_name++;
819 else output_name = output_file;
821 /* prepare the linking path */
822 if (!opts->wine_objdir)
824 char *lib_dir = get_lib_dir( opts );
825 lib_dirs = strarray_dup(opts->lib_dirs);
826 strarray_add( lib_dirs, strmake( "%s/wine", lib_dir ));
827 strarray_add( lib_dirs, lib_dir );
829 else
831 lib_dirs = strarray_alloc();
832 strarray_add(lib_dirs, strmake("%s/dlls", opts->wine_objdir));
833 strarray_add(lib_dirs, strmake("%s/libs/wine", opts->wine_objdir));
834 strarray_addall(lib_dirs, opts->lib_dirs);
837 /* mark the files with their appropriate type */
838 spec_file = lang = 0;
839 files = strarray_alloc();
840 link_args = strarray_alloc();
841 for ( j = 0; j < opts->files->size; j++ )
843 const char* file = opts->files->base[j];
844 if (file[0] != '-')
846 switch(get_file_type(file))
848 case file_def:
849 case file_spec:
850 if (spec_file)
851 error("Only one spec file can be specified\n");
852 spec_file = file;
853 break;
854 case file_rc:
855 /* FIXME: invoke wrc to build it */
856 error("Can't compile .rc file at the moment: %s\n", file);
857 break;
858 case file_res:
859 strarray_add(files, strmake("-r%s", file));
860 break;
861 case file_obj:
862 strarray_add(files, strmake("-o%s", file));
863 break;
864 case file_arh:
865 strarray_add(files, strmake("-a%s", file));
866 break;
867 case file_so:
868 strarray_add(files, strmake("-s%s", file));
869 break;
870 case file_na:
871 error("File does not exist: %s\n", file);
872 break;
873 default:
874 file = compile_to_object(opts, file, lang);
875 strarray_add(files, strmake("-o%s", file));
876 break;
879 else if (file[1] == 'l')
880 add_library(opts, lib_dirs, files, file + 2 );
881 else if (file[1] == 'x')
882 lang = file;
885 /* building for Windows is completely different */
887 if (opts->target_platform == PLATFORM_WINDOWS || opts->target_platform == PLATFORM_CYGWIN)
889 strarray *resources = strarray_alloc();
890 char *res_o_name = NULL;
892 if (opts->win16_app)
893 error( "Building 16-bit code is not supported for Windows\n" );
895 strarray_addall(link_args, get_translator(opts));
897 if (opts->shared)
899 /* run winebuild to generate the .def file */
900 char *spec_def_name = get_temp_file(output_name, ".spec.def");
901 spec_args = get_winebuild_args( opts );
902 strarray_add(spec_args, "--def");
903 strarray_add(spec_args, "-o");
904 strarray_add(spec_args, spec_def_name);
905 if (spec_file)
907 strarray_add(spec_args, "--export");
908 strarray_add(spec_args, spec_file);
910 spawn(opts->prefix, spec_args, 0);
911 strarray_free(spec_args);
913 strarray_add(link_args, "-shared");
914 if (verbose) strarray_add(link_args, "-v");
915 strarray_add(link_args, "-Wl,--kill-at");
916 strarray_add(link_args, spec_def_name);
918 else
920 strarray_add(link_args, opts->gui_app ? "-mwindows" : "-mconsole");
921 if (opts->nodefaultlibs) strarray_add(link_args, "-nodefaultlibs");
924 for ( j = 0 ; j < opts->linker_args->size ; j++ )
925 strarray_add(link_args, opts->linker_args->base[j]);
927 strarray_add(link_args, "-o");
928 strarray_add(link_args, output_file);
930 if (opts->image_base)
931 strarray_add(link_args, strmake("-Wl,--image-base,%s", opts->image_base));
933 if (opts->large_address_aware && opts->target_cpu == CPU_x86)
934 strarray_add( link_args, "-Wl,--large-address-aware" );
936 if (opts->unicode_app && !opts->shared)
937 strarray_add(link_args, mingw_unicode_hack(opts));
939 for ( j = 0; j < lib_dirs->size; j++ )
940 strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
942 if (!opts->nodefaultlibs)
944 add_library(opts, lib_dirs, files, "winecrt0");
945 add_library(opts, lib_dirs, files, "kernel32");
946 add_library(opts, lib_dirs, files, "ntdll");
948 if (!opts->shared && opts->use_msvcrt && opts->target_platform == PLATFORM_CYGWIN)
949 add_library(opts, lib_dirs, files, "msvcrt");
951 for ( j = 0; j < files->size; j++ )
953 const char* name = files->base[j] + 2;
955 switch(files->base[j][1])
957 case 'l':
958 case 'd':
959 strarray_add(link_args, strmake("-l%s", name));
960 break;
961 case 's':
962 case 'o':
963 strarray_add(link_args, name);
964 break;
965 case 'a':
966 if (strchr(name, '/'))
968 /* turn the path back into -Ldir -lfoo options
969 * this makes sure that we use the specified libs even
970 * when mingw adds its own import libs to the link */
971 char *lib = xstrdup( name );
972 char *p = strrchr( lib, '/' );
974 *p++ = 0;
975 if (!strncmp( p, "lib", 3 ))
977 char *ext = strrchr( p, '.' );
979 if (ext) *ext = 0;
980 p += 3;
981 strarray_add(link_args, strmake("-L%s", lib ));
982 strarray_add(link_args, strmake("-l%s", p ));
983 free( lib );
984 break;
986 free( lib );
988 strarray_add(link_args, name);
989 break;
990 case 'r':
991 if (!res_o_name)
993 res_o_name = get_temp_file( output_name, ".res.o" );
994 strarray_add( link_args, res_o_name );
996 strarray_add( resources, name );
997 break;
1001 if (res_o_name) compile_resources_to_object( opts, resources, res_o_name );
1003 spawn(opts->prefix, link_args, 0);
1004 strarray_free (resources);
1005 strarray_free (link_args);
1006 strarray_free (lib_dirs);
1007 strarray_free (files);
1008 return;
1011 /* add the default libraries, if needed */
1012 if (!opts->nostdlib && opts->use_msvcrt) add_library(opts, lib_dirs, files, "msvcrt");
1014 if (!opts->wine_objdir && !opts->nodefaultlibs)
1016 if (opts->gui_app)
1018 add_library(opts, lib_dirs, files, "shell32");
1019 add_library(opts, lib_dirs, files, "comdlg32");
1020 add_library(opts, lib_dirs, files, "gdi32");
1022 add_library(opts, lib_dirs, files, "advapi32");
1023 add_library(opts, lib_dirs, files, "user32");
1026 if (!opts->nodefaultlibs)
1028 add_library(opts, lib_dirs, files, "winecrt0");
1029 if (opts->win16_app) add_library(opts, lib_dirs, files, "kernel");
1030 add_library(opts, lib_dirs, files, "kernel32");
1031 add_library(opts, lib_dirs, files, "ntdll");
1033 if (!opts->nostdlib) add_library(opts, lib_dirs, files, "wine");
1035 /* run winebuild to generate the .spec.o file */
1036 spec_args = get_winebuild_args( opts );
1037 strarray_add( spec_args, strmake( "--cc-cmd=%s", build_tool_name( opts, "gcc", CC )));
1038 strarray_add( spec_args, strmake( "--ld-cmd=%s", build_tool_name( opts, "ld", LD )));
1040 spec_o_name = get_temp_file(output_name, ".spec.o");
1041 if (opts->force_pointer_size)
1042 strarray_add(spec_args, strmake("-m%u", 8 * opts->force_pointer_size ));
1043 strarray_add(spec_args, "-D_REENTRANT");
1044 strarray_add(spec_args, "-fPIC");
1045 strarray_add(spec_args, opts->shared ? "--dll" : "--exe");
1046 if (fake_module)
1048 strarray_add(spec_args, "--fake-module");
1049 strarray_add(spec_args, "-o");
1050 strarray_add(spec_args, output_file);
1052 else
1054 strarray_add(spec_args, "-o");
1055 strarray_add(spec_args, spec_o_name);
1057 if (spec_file)
1059 strarray_add(spec_args, "-E");
1060 strarray_add(spec_args, spec_file);
1062 if (opts->win16_app) strarray_add(spec_args, "-m16");
1064 if (!opts->shared)
1066 strarray_add(spec_args, "-F");
1067 strarray_add(spec_args, output_name);
1068 strarray_add(spec_args, "--subsystem");
1069 strarray_add(spec_args, opts->gui_app ? "windows" : "console");
1070 if (opts->unicode_app)
1072 strarray_add(spec_args, "--entry");
1073 strarray_add(spec_args, "__wine_spec_exe_wentry");
1075 if (opts->large_address_aware) strarray_add( spec_args, "--large-address-aware" );
1078 for ( j = 0; j < lib_dirs->size; j++ )
1079 strarray_add(spec_args, strmake("-L%s", lib_dirs->base[j]));
1081 for ( j = 0 ; j < opts->winebuild_args->size ; j++ )
1082 strarray_add(spec_args, opts->winebuild_args->base[j]);
1084 /* add resource files */
1085 for ( j = 0; j < files->size; j++ )
1086 if (files->base[j][1] == 'r') strarray_add(spec_args, files->base[j]);
1088 /* add other files */
1089 strarray_add(spec_args, "--");
1090 for ( j = 0; j < files->size; j++ )
1092 switch(files->base[j][1])
1094 case 'd':
1095 case 'a':
1096 case 'o':
1097 strarray_add(spec_args, files->base[j] + 2);
1098 break;
1102 spawn(opts->prefix, spec_args, 0);
1103 strarray_free (spec_args);
1104 if (fake_module) return; /* nothing else to do */
1106 /* link everything together now */
1107 strarray_addall(link_args, get_translator(opts));
1108 strarray_addall(link_args, get_lddllflags(opts, link_args));
1110 strarray_add(link_args, "-o");
1111 strarray_add(link_args, strmake("%s.so", output_file));
1113 for ( j = 0 ; j < opts->linker_args->size ; j++ )
1114 strarray_add(link_args, opts->linker_args->base[j]);
1116 switch (opts->target_platform)
1118 case PLATFORM_APPLE:
1119 if (opts->image_base)
1121 strarray_add(link_args, "-image_base");
1122 strarray_add(link_args, opts->image_base);
1124 if (opts->strip)
1125 strarray_add(link_args, "-Wl,-x");
1126 break;
1127 case PLATFORM_SOLARIS:
1129 char *mapfile = get_temp_file( output_name, ".map" );
1130 const char *align = opts->section_align ? opts->section_align : "0x1000";
1132 create_file( mapfile, 0644, "text = A%s;\ndata = A%s;\n", align, align );
1133 strarray_add(link_args, strmake("-Wl,-M,%s", mapfile));
1134 strarray_add(tmp_files, mapfile);
1136 break;
1137 default:
1138 if (opts->image_base)
1140 if (!try_link(opts->prefix, link_args, strmake("-Wl,-Ttext-segment=%s", opts->image_base)))
1141 strarray_add(link_args, strmake("-Wl,-Ttext-segment=%s", opts->image_base));
1142 else
1143 prelink = PRELINK;
1145 break;
1148 for ( j = 0; j < lib_dirs->size; j++ )
1149 strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
1151 strarray_add(link_args, spec_o_name);
1153 for ( j = 0; j < files->size; j++ )
1155 const char* name = files->base[j] + 2;
1156 switch(files->base[j][1])
1158 case 'l':
1159 strarray_add(link_args, strmake("-l%s", name));
1160 break;
1161 case 's':
1162 case 'a':
1163 case 'o':
1164 strarray_add(link_args, name);
1165 break;
1169 if (!opts->nostdlib)
1171 strarray_add(link_args, "-lm");
1172 strarray_add(link_args, "-lc");
1175 spawn(opts->prefix, link_args, 0);
1176 strarray_free (link_args);
1178 /* set the base address with prelink if linker support is not present */
1179 if (prelink && !opts->target)
1181 if (prelink[0] && strcmp(prelink,"false"))
1183 strarray *prelink_args = strarray_alloc();
1184 strarray_add(prelink_args, prelink);
1185 strarray_add(prelink_args, "--reloc-only");
1186 strarray_add(prelink_args, opts->image_base);
1187 strarray_add(prelink_args, strmake("%s.so", output_file));
1188 spawn(opts->prefix, prelink_args, 1);
1189 strarray_free(prelink_args);
1193 /* create the loader script */
1194 if (generate_app_loader)
1195 create_file(output_file, 0755, app_loader_template, strmake("%s.so", output_name));
1199 static void forward(int argc, char **argv, struct options* opts)
1201 strarray* args = strarray_alloc();
1202 int j;
1204 strarray_addall(args, get_translator(opts));
1206 for( j = 1; j < argc; j++ )
1207 strarray_add(args, argv[j]);
1209 spawn(opts->prefix, args, 0);
1210 strarray_free (args);
1214 * Linker Options
1215 * object-file-name -llibrary -nostartfiles -nodefaultlibs
1216 * -nostdlib -s -static -static-libgcc -shared -shared-libgcc
1217 * -symbolic -Wl,option -Xlinker option -u symbol
1218 * -framework name
1220 static int is_linker_arg(const char* arg)
1222 static const char* link_switches[] =
1224 "-nostartfiles", "-nostdlib", "-s",
1225 "-static", "-static-libgcc", "-shared", "-shared-libgcc", "-symbolic",
1226 "-framework", "--coverage", "-fprofile-generate", "-fprofile-use"
1228 unsigned int j;
1230 switch (arg[1])
1232 case 'R':
1233 case 'z':
1234 case 'l':
1235 case 'u':
1236 return 1;
1237 case 'W':
1238 if (strncmp("-Wl,", arg, 4) == 0) return 1;
1239 break;
1240 case 'X':
1241 if (strcmp("-Xlinker", arg) == 0) return 1;
1242 break;
1243 case 'a':
1244 if (strcmp("-arch", arg) == 0) return 1;
1245 break;
1248 for (j = 0; j < sizeof(link_switches)/sizeof(link_switches[0]); j++)
1249 if (strcmp(link_switches[j], arg) == 0) return 1;
1251 return 0;
1255 * Target Options
1256 * -b machine -V version
1258 static int is_target_arg(const char* arg)
1260 return arg[1] == 'b' || arg[1] == 'V';
1265 * Directory Options
1266 * -Bprefix -Idir -I- -Ldir -specs=file
1268 static int is_directory_arg(const char* arg)
1270 return arg[1] == 'B' || arg[1] == 'L' || arg[1] == 'I' || strncmp("-specs=", arg, 7) == 0;
1274 * MinGW Options
1275 * -mno-cygwin -mwindows -mconsole -mthreads -municode
1277 static int is_mingw_arg(const char* arg)
1279 static const char* mingw_switches[] =
1281 "-mno-cygwin", "-mwindows", "-mconsole", "-mthreads", "-municode"
1283 unsigned int j;
1285 for (j = 0; j < sizeof(mingw_switches)/sizeof(mingw_switches[0]); j++)
1286 if (strcmp(mingw_switches[j], arg) == 0) return 1;
1288 return 0;
1291 static void parse_target_option( struct options *opts, const char *target )
1293 char *p, *platform, *spec = xstrdup( target );
1294 unsigned int i;
1296 /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
1298 /* get the CPU part */
1300 if ((p = strchr( spec, '-' )))
1302 *p++ = 0;
1303 for (i = 0; i < sizeof(cpu_names)/sizeof(cpu_names[0]); i++)
1305 if (!strcmp( cpu_names[i].name, spec ))
1307 opts->target_cpu = cpu_names[i].cpu;
1308 break;
1311 if (i == sizeof(cpu_names)/sizeof(cpu_names[0]))
1312 error( "Unrecognized CPU '%s'\n", spec );
1313 platform = p;
1314 if ((p = strrchr( p, '-' ))) platform = p + 1;
1316 else if (!strcmp( spec, "mingw32" ))
1318 opts->target_cpu = CPU_x86;
1319 platform = spec;
1321 else
1322 error( "Invalid target specification '%s'\n", target );
1324 /* get the OS part */
1326 opts->target_platform = PLATFORM_UNSPECIFIED; /* default value */
1327 for (i = 0; i < sizeof(platform_names)/sizeof(platform_names[0]); i++)
1329 if (!strncmp( platform_names[i].name, platform, strlen(platform_names[i].name) ))
1331 opts->target_platform = platform_names[i].platform;
1332 break;
1336 free( spec );
1337 opts->target = xstrdup( target );
1340 int main(int argc, char **argv)
1342 int i, c, next_is_arg = 0, linking = 1;
1343 int raw_compiler_arg, raw_linker_arg;
1344 const char* option_arg;
1345 struct options opts;
1346 char* lang = 0;
1347 char* str;
1349 #ifdef SIGHUP
1350 signal( SIGHUP, exit_on_signal );
1351 #endif
1352 signal( SIGTERM, exit_on_signal );
1353 signal( SIGINT, exit_on_signal );
1354 #ifdef HAVE_SIGADDSET
1355 sigemptyset( &signal_mask );
1356 sigaddset( &signal_mask, SIGHUP );
1357 sigaddset( &signal_mask, SIGTERM );
1358 sigaddset( &signal_mask, SIGINT );
1359 #endif
1361 /* setup tmp file removal at exit */
1362 tmp_files = strarray_alloc();
1363 atexit(clean_temp_files);
1365 /* initialize options */
1366 memset(&opts, 0, sizeof(opts));
1367 opts.target_cpu = build_cpu;
1368 opts.target_platform = build_platform;
1369 opts.lib_dirs = strarray_alloc();
1370 opts.files = strarray_alloc();
1371 opts.linker_args = strarray_alloc();
1372 opts.compiler_args = strarray_alloc();
1373 opts.winebuild_args = strarray_alloc();
1375 /* determine the processor type */
1376 if (strendswith(argv[0], "winecpp")) opts.processor = proc_cpp;
1377 else if (strendswith(argv[0], "++")) opts.processor = proc_cxx;
1379 /* parse options */
1380 for ( i = 1 ; i < argc ; i++ )
1382 if (argv[i][0] == '-') /* option */
1384 /* determine if this switch is followed by a separate argument */
1385 next_is_arg = 0;
1386 option_arg = 0;
1387 switch(argv[i][1])
1389 case 'x': case 'o': case 'D': case 'U':
1390 case 'I': case 'A': case 'l': case 'u':
1391 case 'b': case 'V': case 'G': case 'L':
1392 case 'B': case 'R': case 'z':
1393 if (argv[i][2]) option_arg = &argv[i][2];
1394 else next_is_arg = 1;
1395 break;
1396 case 'i':
1397 next_is_arg = 1;
1398 break;
1399 case 'a':
1400 if (strcmp("-aux-info", argv[i]) == 0)
1401 next_is_arg = 1;
1402 if (strcmp("-arch", argv[i]) == 0)
1403 next_is_arg = 1;
1404 break;
1405 case 'X':
1406 if (strcmp("-Xlinker", argv[i]) == 0)
1407 next_is_arg = 1;
1408 break;
1409 case 'M':
1410 c = argv[i][2];
1411 if (c == 'F' || c == 'T' || c == 'Q')
1413 if (argv[i][3]) option_arg = &argv[i][3];
1414 else next_is_arg = 1;
1416 break;
1417 case 'f':
1418 if (strcmp("-framework", argv[i]) == 0)
1419 next_is_arg = 1;
1420 break;
1421 case '-':
1422 if (strcmp("--param", argv[i]) == 0)
1423 next_is_arg = 1;
1424 break;
1426 if (next_is_arg)
1428 if (i + 1 >= argc) error("option -%c requires an argument\n", argv[i][1]);
1429 option_arg = argv[i+1];
1432 /* determine what options go 'as is' to the linker & the compiler */
1433 raw_compiler_arg = raw_linker_arg = 0;
1434 if (is_linker_arg(argv[i]))
1436 raw_linker_arg = 1;
1438 else
1440 if (is_directory_arg(argv[i]) || is_target_arg(argv[i]))
1441 raw_linker_arg = 1;
1442 raw_compiler_arg = !is_mingw_arg(argv[i]);
1445 /* these things we handle explicitly so we don't pass them 'as is' */
1446 if (argv[i][1] == 'l' || argv[i][1] == 'I' || argv[i][1] == 'L')
1447 raw_linker_arg = 0;
1448 if (argv[i][1] == 'c' || argv[i][1] == 'L')
1449 raw_compiler_arg = 0;
1450 if (argv[i][1] == 'o' || argv[i][1] == 'b' || argv[i][1] == 'V')
1451 raw_compiler_arg = raw_linker_arg = 0;
1453 /* do a bit of semantic analysis */
1454 switch (argv[i][1])
1456 case 'B':
1457 str = strdup(option_arg);
1458 if (strendswith(str, "/")) str[strlen(str) - 1] = 0;
1459 if (strendswith(str, "/tools/winebuild"))
1461 char *objdir = strdup(str);
1462 objdir[strlen(objdir) - sizeof("/tools/winebuild") + 1] = 0;
1463 opts.wine_objdir = objdir;
1464 /* don't pass it to the compiler, this generates warnings */
1465 raw_compiler_arg = raw_linker_arg = 0;
1467 if (!opts.prefix) opts.prefix = strarray_alloc();
1468 strarray_add(opts.prefix, str);
1469 break;
1470 case 'b':
1471 parse_target_option( &opts, option_arg );
1472 break;
1473 case 'V':
1474 opts.version = xstrdup( option_arg );
1475 break;
1476 case 'c': /* compile or assemble */
1477 if (argv[i][2] == 0) opts.compile_only = 1;
1478 /* fall through */
1479 case 'S': /* generate assembler code */
1480 case 'E': /* preprocess only */
1481 if (argv[i][2] == 0) linking = 0;
1482 break;
1483 case 'f':
1484 if (strcmp("-fno-short-wchar", argv[i]) == 0)
1485 opts.noshortwchar = 1;
1486 else if (!strcmp("-fasynchronous-unwind-tables", argv[i]))
1487 opts.unwind_tables = 1;
1488 else if (!strcmp("-fno-asynchronous-unwind-tables", argv[i]))
1489 opts.unwind_tables = 0;
1490 break;
1491 case 'l':
1492 strarray_add(opts.files, strmake("-l%s", option_arg));
1493 break;
1494 case 'L':
1495 strarray_add(opts.lib_dirs, option_arg);
1496 break;
1497 case 'M': /* map file generation */
1498 linking = 0;
1499 break;
1500 case 'm':
1501 if (strcmp("-mno-cygwin", argv[i]) == 0)
1502 opts.use_msvcrt = 1;
1503 else if (strcmp("-mwindows", argv[i]) == 0)
1504 opts.gui_app = 1;
1505 else if (strcmp("-mconsole", argv[i]) == 0)
1506 opts.gui_app = 0;
1507 else if (strcmp("-municode", argv[i]) == 0)
1508 opts.unicode_app = 1;
1509 else if (strcmp("-m16", argv[i]) == 0)
1510 opts.win16_app = 1;
1511 else if (strcmp("-m32", argv[i]) == 0)
1513 if (opts.target_cpu == CPU_x86_64)
1514 opts.target_cpu = CPU_x86;
1515 else if (opts.target_cpu == CPU_ARM64)
1516 opts.target_cpu = CPU_ARM;
1517 opts.force_pointer_size = 4;
1518 raw_linker_arg = 1;
1520 else if (strcmp("-m64", argv[i]) == 0)
1522 if (opts.target_cpu == CPU_x86)
1523 opts.target_cpu = CPU_x86_64;
1524 else if (opts.target_cpu == CPU_ARM)
1525 opts.target_cpu = CPU_ARM64;
1526 opts.force_pointer_size = 8;
1527 raw_linker_arg = 1;
1529 else if (!strcmp("-marm", argv[i] ) || !strcmp("-mthumb", argv[i] ))
1531 strarray_add(opts.winebuild_args, argv[i]);
1532 raw_linker_arg = 1;
1534 else if (strncmp("-mcpu=", argv[i], 6) == 0)
1535 strarray_add(opts.winebuild_args, argv[i]);
1536 break;
1537 case 'n':
1538 if (strcmp("-nostdinc", argv[i]) == 0)
1539 opts.nostdinc = 1;
1540 else if (strcmp("-nodefaultlibs", argv[i]) == 0)
1541 opts.nodefaultlibs = 1;
1542 else if (strcmp("-nostdlib", argv[i]) == 0)
1543 opts.nostdlib = 1;
1544 else if (strcmp("-nostartfiles", argv[i]) == 0)
1545 opts.nostartfiles = 1;
1546 break;
1547 case 'o':
1548 opts.output_name = option_arg;
1549 break;
1550 case 's':
1551 if (strcmp("-static", argv[i]) == 0)
1552 linking = -1;
1553 else if(strcmp("-save-temps", argv[i]) == 0)
1554 keep_generated = 1;
1555 else if(strcmp("-shared", argv[i]) == 0)
1557 opts.shared = 1;
1558 raw_compiler_arg = raw_linker_arg = 0;
1560 else if (strcmp("-s", argv[i]) == 0 && opts.target_platform == PLATFORM_APPLE)
1562 /* On Mac, change -s into -Wl,-x. ld's -s switch
1563 * is deprecated, and it doesn't work on Tiger with
1564 * MH_BUNDLEs anyway
1566 opts.strip = 1;
1567 raw_linker_arg = 0;
1569 break;
1570 case 'v':
1571 if (argv[i][2] == 0) verbose++;
1572 break;
1573 case 'W':
1574 if (strncmp("-Wl,", argv[i], 4) == 0)
1576 unsigned int j;
1577 strarray* Wl = strarray_fromstring(argv[i] + 4, ",");
1578 for (j = 0; j < Wl->size; j++)
1580 if (!strcmp(Wl->base[j], "--image-base") && j < Wl->size - 1)
1582 opts.image_base = strdup( Wl->base[++j] );
1583 continue;
1585 if (!strcmp(Wl->base[j], "--section-alignment") && j < Wl->size - 1)
1587 opts.section_align = strdup( Wl->base[++j] );
1588 continue;
1590 if (!strcmp(Wl->base[j], "--large-address-aware"))
1592 opts.large_address_aware = 1;
1593 continue;
1595 if (!strcmp(Wl->base[j], "-static")) linking = -1;
1596 strarray_add(opts.linker_args, strmake("-Wl,%s",Wl->base[j]));
1598 strarray_free(Wl);
1599 raw_compiler_arg = raw_linker_arg = 0;
1601 else if (strncmp("-Wb,", argv[i], 4) == 0)
1603 strarray* Wb = strarray_fromstring(argv[i] + 4, ",");
1604 strarray_addall(opts.winebuild_args, Wb);
1605 strarray_free(Wb);
1606 /* don't pass it to the compiler, it generates errors */
1607 raw_compiler_arg = raw_linker_arg = 0;
1609 break;
1610 case 'x':
1611 lang = strmake("-x%s", option_arg);
1612 strarray_add(opts.files, lang);
1613 /* we'll pass these flags ourselves, explicitly */
1614 raw_compiler_arg = raw_linker_arg = 0;
1615 break;
1616 case '-':
1617 if (strcmp("-static", argv[i]+1) == 0)
1618 linking = -1;
1619 else if (!strncmp("--sysroot", argv[i], 9) && opts.wine_objdir)
1621 if (argv[i][9] == '=') opts.wine_objdir = argv[i] + 10;
1622 else opts.wine_objdir = argv[++i];
1623 raw_compiler_arg = raw_linker_arg = 0;
1625 else if (!strncmp("--lib-suffix", argv[i], 12) && opts.wine_objdir)
1627 if (argv[i][12] == '=') opts.lib_suffix = argv[i] + 13;
1628 else opts.lib_suffix = argv[++i];
1629 raw_compiler_arg = raw_linker_arg = 0;
1631 break;
1634 /* put the arg into the appropriate bucket */
1635 if (raw_linker_arg)
1637 strarray_add(opts.linker_args, argv[i]);
1638 if (next_is_arg && (i + 1 < argc))
1639 strarray_add(opts.linker_args, argv[i + 1]);
1641 if (raw_compiler_arg)
1643 strarray_add(opts.compiler_args, argv[i]);
1644 if (next_is_arg && (i + 1 < argc))
1645 strarray_add(opts.compiler_args, argv[i + 1]);
1648 /* skip the next token if it's an argument */
1649 if (next_is_arg) i++;
1651 else
1653 strarray_add(opts.files, argv[i]);
1657 if (opts.processor == proc_cpp) linking = 0;
1658 if (linking == -1) error("Static linking is not supported\n");
1660 if (opts.files->size == 0) forward(argc, argv, &opts);
1661 else if (linking) build(&opts);
1662 else compile(&opts, lang);
1664 return 0;