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
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:
47 * -iwithprefixbefore dir
59 * -G num (see NOTES below)
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
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
78 * -Bprefix -Idir -I- -Ldir -specs=file
81 * -b machine -V version
83 * Please note that the Target Options are relevant to everything:
84 * compiler, linker, assembler, preprocessor.
89 #include "wine/port.h"
101 static const char* app_loader_template
=
105 "# determine the application directory\n"
109 " # $0 contains a path, use it\n"
110 " appdir=`dirname \"$0\"`\n"
113 " # no directory in $0, search in PATH\n"
119 " if [ -x \"$d/$appname\" ]; then appdir=\"$d\"; break; fi\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"
130 " apppath=\"$appname\"\n"
133 "# determine the WINELOADER\n"
134 "if [ ! -x \"$WINELOADER\" ]; then WINELOADER=\"wine\"; fi\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
;
143 static sigset_t signal_mask
;
146 enum processor
{ proc_cc
, proc_cxx
, proc_cpp
, proc_as
};
159 { "amd64", CPU_x86_64
},
160 { "x86_64", CPU_x86_64
},
161 { "powerpc", CPU_POWERPC
},
163 { "armv5", CPU_ARM
},
164 { "armv6", CPU_ARM
},
165 { "armv7", CPU_ARM
},
166 { "arm64", CPU_ARM64
},
167 { "aarch64", CPU_ARM64
},
173 enum target_platform platform
;
176 { "macos", PLATFORM_APPLE
},
177 { "darwin", PLATFORM_APPLE
},
178 { "android", PLATFORM_ANDROID
},
179 { "solaris", PLATFORM_SOLARIS
},
180 { "cygwin", PLATFORM_CYGWIN
},
181 { "mingw32", PLATFORM_WINDOWS
},
182 { "windows", PLATFORM_WINDOWS
},
183 { "winnt", PLATFORM_WINDOWS
}
188 enum processor processor
;
189 enum target_cpu target_cpu
;
190 enum target_platform target_platform
;
204 int force_pointer_size
;
205 int large_address_aware
;
208 const char* wine_objdir
;
209 const char* output_name
;
210 const char* image_base
;
211 const char* section_align
;
212 const char* lib_suffix
;
213 const char* subsystem
;
216 strarray
* linker_args
;
217 strarray
* compiler_args
;
218 strarray
* winebuild_args
;
223 static const enum target_cpu build_cpu
= CPU_x86
;
224 #elif defined(__x86_64__)
225 static const enum target_cpu build_cpu
= CPU_x86_64
;
226 #elif defined(__powerpc__)
227 static const enum target_cpu build_cpu
= CPU_POWERPC
;
228 #elif defined(__arm__)
229 static const enum target_cpu build_cpu
= CPU_ARM
;
230 #elif defined(__aarch64__)
231 static const enum target_cpu build_cpu
= CPU_ARM64
;
233 #error Unsupported CPU
237 static enum target_platform build_platform
= PLATFORM_APPLE
;
238 #elif defined(__ANDROID__)
239 static enum target_platform build_platform
= PLATFORM_ANDROID
;
241 static enum target_platform build_platform
= PLATFORM_SOLARIS
;
242 #elif defined(__CYGWIN__)
243 static enum target_platform build_platform
= PLATFORM_CYGWIN
;
244 #elif defined(_WIN32)
245 static enum target_platform build_platform
= PLATFORM_WINDOWS
;
247 static enum target_platform build_platform
= PLATFORM_UNSPECIFIED
;
250 static void clean_temp_files(void)
254 if (keep_generated
) return;
256 for (i
= 0; i
< tmp_files
->size
; i
++)
257 unlink(tmp_files
->base
[i
]);
260 /* clean things up when aborting on a signal */
261 static void exit_on_signal( int sig
)
263 exit(1); /* this will call the atexit functions */
266 static char* get_temp_file(const char* prefix
, const char* suffix
)
269 char* tmp
= strmake("%s-XXXXXX%s", prefix
, suffix
);
271 #ifdef HAVE_SIGPROCMASK
273 /* block signals while manipulating the temp files list */
274 sigprocmask( SIG_BLOCK
, &signal_mask
, &old_set
);
276 fd
= mkstemps( tmp
, strlen(suffix
) );
279 /* could not create it in current directory, try in TMPDIR */
283 if (!(tmpdir
= getenv("TMPDIR"))) tmpdir
= "/tmp";
284 tmp
= strmake("%s/%s-XXXXXX%s", tmpdir
, prefix
, suffix
);
285 fd
= mkstemps( tmp
, strlen(suffix
) );
286 if (fd
== -1) error( "could not create temp file\n" );
289 strarray_add(tmp_files
, tmp
);
290 #ifdef HAVE_SIGPROCMASK
291 sigprocmask( SIG_SETMASK
, &old_set
, NULL
);
296 static char* build_tool_name(struct options
*opts
, const char* base
, const char* deflt
)
300 if (opts
->target
&& opts
->version
)
302 str
= strmake("%s-%s-%s", opts
->target
, base
, opts
->version
);
304 else if (opts
->target
)
306 str
= strmake("%s-%s", opts
->target
, base
);
308 else if (opts
->version
)
310 str
= strmake("%s-%s", base
, opts
->version
);
313 str
= xstrdup(deflt
);
317 static const strarray
* get_translator(struct options
*opts
)
322 switch(opts
->processor
)
325 str
= build_tool_name(opts
, "cpp", CPP
);
329 str
= build_tool_name(opts
, "gcc", CC
);
332 str
= build_tool_name(opts
, "g++", CXX
);
337 ret
= strarray_fromstring( str
, " " );
339 if (opts
->force_pointer_size
)
340 strarray_add( ret
, strmake("-m%u", 8 * opts
->force_pointer_size
));
344 static int try_link( const strarray
*prefix
, const strarray
*link_tool
, const char *cflags
)
346 const char *in
= get_temp_file( "try_link", ".c" );
347 const char *out
= get_temp_file( "try_link", ".out" );
348 const char *err
= get_temp_file( "try_link", ".err" );
349 strarray
*link
= strarray_dup( link_tool
);
350 int sout
= -1, serr
= -1;
353 create_file( in
, 0644, "int main(void){return 1;}\n" );
355 strarray_add( link
, "-o" );
356 strarray_add( link
, out
);
357 strarray_addall( link
, strarray_fromstring( cflags
, " " ) );
358 strarray_add( link
, in
);
360 sout
= dup( fileno(stdout
) );
361 freopen( err
, "w", stdout
);
362 serr
= dup( fileno(stderr
) );
363 freopen( err
, "w", stderr
);
364 ret
= spawn( prefix
, link
, 1 );
367 dup2( sout
, fileno(stdout
) );
372 dup2( serr
, fileno(stderr
) );
375 strarray_free( link
);
379 static const strarray
* get_lddllflags( const struct options
*opts
, const strarray
*link_tool
)
381 strarray
*flags
= strarray_alloc();
382 switch (opts
->target_platform
)
385 strarray_add( flags
, "-bundle" );
386 strarray_add( flags
, "-multiply_defined" );
387 strarray_add( flags
, "suppress" );
388 if (opts
->target_cpu
== CPU_POWERPC
)
390 strarray_add( flags
, "-read_only_relocs" );
391 strarray_add( flags
, "warning" );
395 case PLATFORM_ANDROID
:
396 case PLATFORM_SOLARIS
:
397 case PLATFORM_UNSPECIFIED
:
398 strarray_add( flags
, "-shared" );
399 strarray_add( flags
, "-Wl,-Bsymbolic" );
401 /* Try all options first - this is likely to succeed on modern compilers */
402 if (!try_link( opts
->prefix
, link_tool
, "-fPIC -shared -Wl,-Bsymbolic "
403 "-Wl,-z,defs -Wl,-init,__wine_spec_init,-fini,_wine_spec_fini" ))
405 strarray_add( flags
, "-Wl,-z,defs" );
406 strarray_add( flags
, "-Wl,-init,__wine_spec_init,-fini,__wine_spec_fini" );
408 else /* otherwise figure out which ones are allowed */
410 if (!try_link( opts
->prefix
, link_tool
, "-fPIC -shared -Wl,-Bsymbolic -Wl,-z,defs" ))
411 strarray_add( flags
, "-Wl,-z,defs" );
412 if (!try_link( opts
->prefix
, link_tool
, "-fPIC -shared -Wl,-Bsymbolic "
413 "-Wl,-init,__wine_spec_init,-fini,_wine_spec_fini" ))
414 strarray_add( flags
, "-Wl,-init,__wine_spec_init,-fini,__wine_spec_fini" );
424 /* check that file is a library for the correct platform */
425 static int check_platform( struct options
*opts
, const char *file
)
427 int ret
= 0, fd
= open( file
, O_RDONLY
);
430 unsigned char header
[16];
431 if (read( fd
, header
, sizeof(header
) ) == sizeof(header
))
433 /* FIXME: only ELF is supported, platform is not checked beyond 32/64 */
434 if (!memcmp( header
, "\177ELF", 4 ))
436 if (header
[4] == 2) /* 64-bit */
437 ret
= (opts
->target_cpu
== CPU_x86_64
|| opts
->target_cpu
== CPU_ARM64
);
439 ret
= (opts
->target_cpu
!= CPU_x86_64
&& opts
->target_cpu
!= CPU_ARM64
);
447 static char *get_lib_dir( struct options
*opts
)
449 static const char *stdlibpath
[] = { LIBDIR
, "/usr/lib", "/usr/local/lib", "/lib" };
450 static const char libwine
[] = "/libwine.so";
453 for (i
= 0; i
< sizeof(stdlibpath
)/sizeof(stdlibpath
[0]); i
++)
455 char *p
, *buffer
= xmalloc( strlen(stdlibpath
[i
]) + strlen("/arm-linux-gnueabi") + strlen(libwine
) + 1 );
456 strcpy( buffer
, stdlibpath
[i
] );
457 p
= buffer
+ strlen(buffer
);
458 while (p
> buffer
&& p
[-1] == '/') p
--;
459 strcpy( p
, libwine
);
460 if (check_platform( opts
, buffer
)) goto found
;
461 if (p
> buffer
+ 2 && (!memcmp( p
- 2, "32", 2 ) || !memcmp( p
- 2, "64", 2 ))) p
-= 2;
462 if (opts
->target_cpu
!= CPU_x86_64
&& opts
->target_cpu
!= CPU_ARM64
)
465 strcat( p
, libwine
);
466 if (check_platform( opts
, buffer
)) goto found
;
468 if (opts
->target_cpu
== CPU_x86_64
|| opts
->target_cpu
== CPU_ARM64
)
471 strcat( p
, libwine
);
472 if (check_platform( opts
, buffer
)) goto found
;
474 switch(opts
->target_cpu
)
476 case CPU_x86
: strcpy( p
, "/i386-linux-gnu" ); break;
477 case CPU_x86_64
: strcpy( p
, "/x86_64-linux-gnu" ); break;
478 case CPU_ARM
: strcpy( p
, "/arm-linux-gnueabi" ); break;
479 case CPU_ARM64
: strcpy( p
, "/aarch64-linux-gnu" ); break;
480 case CPU_POWERPC
: strcpy( p
, "/powerpc-linux-gnu" ); break;
484 strcat( p
, libwine
);
485 if (check_platform( opts
, buffer
)) goto found
;
490 buffer
[strlen(buffer
) - strlen(libwine
)] = 0;
493 return xstrdup( LIBDIR
);
496 static void compile(struct options
* opts
, const char* lang
)
498 strarray
* comp_args
= strarray_alloc();
504 strarray_addall(comp_args
, get_translator(opts
));
505 switch(opts
->processor
)
507 case proc_cpp
: gcc_defs
= 1; break;
508 case proc_as
: gcc_defs
= 0; break;
509 /* Note: if the C compiler is gcc we assume the C++ compiler is too */
510 /* mixing different C and C++ compilers isn't supported in configure anyway */
513 gcc
= strarray_fromstring(build_tool_name(opts
, "gcc", CC
), " ");
514 gpp
= strarray_fromstring(build_tool_name(opts
, "g++", CXX
), " ");
515 for ( j
= 0; !gcc_defs
&& j
< comp_args
->size
; j
++ )
517 const char *cc
= comp_args
->base
[j
];
519 for (i
= 0; !gcc_defs
&& i
< gcc
->size
; i
++)
520 gcc_defs
= gcc
->base
[i
][0] != '-' && strendswith(cc
, gcc
->base
[i
]);
521 for (i
= 0; !gcc_defs
&& i
< gpp
->size
; i
++)
522 gcc_defs
= gpp
->base
[i
][0] != '-' && strendswith(cc
, gpp
->base
[i
]);
529 if (opts
->target_platform
== PLATFORM_WINDOWS
|| opts
->target_platform
== PLATFORM_CYGWIN
)
530 goto no_compat_defines
;
532 if (opts
->processor
!= proc_cpp
)
534 if (gcc_defs
&& !opts
->wine_objdir
&& !opts
->noshortwchar
)
536 strarray_add(comp_args
, "-fshort-wchar");
537 strarray_add(comp_args
, "-DWINE_UNICODE_NATIVE");
539 strarray_add(comp_args
, "-D_REENTRANT");
540 strarray_add(comp_args
, "-fPIC");
543 if (opts
->target_cpu
== CPU_x86_64
|| opts
->target_cpu
== CPU_ARM64
)
545 strarray_add(comp_args
, "-DWIN64");
546 strarray_add(comp_args
, "-D_WIN64");
547 strarray_add(comp_args
, "-D__WIN64");
548 strarray_add(comp_args
, "-D__WIN64__");
551 strarray_add(comp_args
, "-DWIN32");
552 strarray_add(comp_args
, "-D_WIN32");
553 strarray_add(comp_args
, "-D__WIN32");
554 strarray_add(comp_args
, "-D__WIN32__");
555 strarray_add(comp_args
, "-D__WINNT");
556 strarray_add(comp_args
, "-D__WINNT__");
560 switch (opts
->target_cpu
)
563 strarray_add(comp_args
, "-D__stdcall=__attribute__((ms_abi))");
564 strarray_add(comp_args
, "-D__cdecl=__attribute__((ms_abi))");
565 strarray_add(comp_args
, "-D_stdcall=__attribute__((ms_abi))");
566 strarray_add(comp_args
, "-D_cdecl=__attribute__((ms_abi))");
567 strarray_add(comp_args
, "-D__fastcall=__attribute__((ms_abi))");
568 strarray_add(comp_args
, "-D_fastcall=__attribute__((ms_abi))");
571 strarray_add(comp_args
, "-D__stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
572 strarray_add(comp_args
, "-D__cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
573 strarray_add(comp_args
, "-D_stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
574 strarray_add(comp_args
, "-D_cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
575 strarray_add(comp_args
, "-D__fastcall=__attribute__((__fastcall__))");
576 strarray_add(comp_args
, "-D_fastcall=__attribute__((__fastcall__))");
581 strarray_add(comp_args
, "-D__stdcall=");
582 strarray_add(comp_args
, "-D__cdecl=");
583 strarray_add(comp_args
, "-D_stdcall=");
584 strarray_add(comp_args
, "-D_cdecl=");
585 strarray_add(comp_args
, "-D__fastcall=");
586 strarray_add(comp_args
, "-D_fastcall=");
589 strarray_add(comp_args
, "-D__declspec(x)=__declspec_##x");
590 strarray_add(comp_args
, "-D__declspec_align(x)=__attribute__((aligned(x)))");
591 strarray_add(comp_args
, "-D__declspec_allocate(x)=__attribute__((section(x)))");
592 strarray_add(comp_args
, "-D__declspec_deprecated=__attribute__((deprecated))");
593 strarray_add(comp_args
, "-D__declspec_dllimport=__attribute__((dllimport))");
594 strarray_add(comp_args
, "-D__declspec_dllexport=__attribute__((dllexport))");
595 strarray_add(comp_args
, "-D__declspec_naked=__attribute__((naked))");
596 strarray_add(comp_args
, "-D__declspec_noinline=__attribute__((noinline))");
597 strarray_add(comp_args
, "-D__declspec_noreturn=__attribute__((noreturn))");
598 strarray_add(comp_args
, "-D__declspec_nothrow=__attribute__((nothrow))");
599 strarray_add(comp_args
, "-D__declspec_novtable=__attribute__(())"); /* ignore it */
600 strarray_add(comp_args
, "-D__declspec_selectany=__attribute__((weak))");
601 strarray_add(comp_args
, "-D__declspec_thread=__thread");
604 strarray_add(comp_args
, "-D__int8=char");
605 strarray_add(comp_args
, "-D__int16=short");
606 strarray_add(comp_args
, "-D__int32=int");
607 if (opts
->target_cpu
== CPU_x86_64
|| opts
->target_cpu
== CPU_ARM64
)
608 strarray_add(comp_args
, "-D__int64=long");
610 strarray_add(comp_args
, "-D__int64=long long");
613 strarray_add(comp_args
, "-D__WINE__");
615 /* options we handle explicitly */
616 if (opts
->compile_only
)
617 strarray_add(comp_args
, "-c");
618 if (opts
->output_name
)
620 strarray_add(comp_args
, "-o");
621 strarray_add(comp_args
, opts
->output_name
);
624 /* the rest of the pass-through parameters */
625 for ( j
= 0 ; j
< opts
->compiler_args
->size
; j
++ )
626 strarray_add(comp_args
, opts
->compiler_args
->base
[j
]);
628 /* the language option, if any */
629 if (lang
&& strcmp(lang
, "-xnone"))
630 strarray_add(comp_args
, lang
);
632 /* last, but not least, the files */
633 for ( j
= 0; j
< opts
->files
->size
; j
++ )
635 if (opts
->files
->base
[j
][0] != '-')
636 strarray_add(comp_args
, opts
->files
->base
[j
]);
639 /* standard includes come last in the include search path */
640 if (!opts
->wine_objdir
&& !opts
->nostdinc
)
642 if (opts
->use_msvcrt
)
644 strarray_add(comp_args
, gcc_defs
? "-isystem" INCLUDEDIR
"/msvcrt" : "-I" INCLUDEDIR
"/msvcrt" );
645 strarray_add(comp_args
, "-D__MSVCRT__");
647 strarray_add(comp_args
, gcc_defs
? "-isystem" INCLUDEDIR
"/windows" : "-I" INCLUDEDIR
"/windows" );
649 else if (opts
->wine_objdir
)
650 strarray_add(comp_args
, strmake("-I%s/include", opts
->wine_objdir
) );
652 spawn(opts
->prefix
, comp_args
, 0);
653 strarray_free(comp_args
);
656 static const char* compile_to_object(struct options
* opts
, const char* file
, const char* lang
)
658 struct options copts
;
661 /* make a copy so we don't change any of the initial stuff */
662 /* a shallow copy is exactly what we want in this case */
663 base_name
= get_basename(file
);
665 copts
.output_name
= get_temp_file(base_name
, ".o");
666 copts
.compile_only
= 1;
667 copts
.files
= strarray_alloc();
668 strarray_add(copts
.files
, file
);
669 compile(&copts
, lang
);
670 strarray_free(copts
.files
);
673 return copts
.output_name
;
676 /* return the initial set of options needed to run winebuild */
677 static strarray
*get_winebuild_args(struct options
*opts
)
679 const char* winebuild
= getenv("WINEBUILD");
680 strarray
*spec_args
= strarray_alloc();
682 if (!winebuild
) winebuild
= "winebuild";
683 strarray_add( spec_args
, winebuild
);
684 if (verbose
) strarray_add( spec_args
, "-v" );
685 if (keep_generated
) strarray_add( spec_args
, "--save-temps" );
688 strarray_add( spec_args
, "--target" );
689 strarray_add( spec_args
, opts
->target
);
691 if (opts
->unwind_tables
) strarray_add( spec_args
, "-fasynchronous-unwind-tables" );
692 else strarray_add( spec_args
, "-fno-asynchronous-unwind-tables" );
696 static const char* compile_resources_to_object(struct options
* opts
, const strarray
*resources
,
697 const char *res_o_name
)
699 strarray
*winebuild_args
= get_winebuild_args( opts
);
701 strarray_add( winebuild_args
, "--resources" );
702 strarray_add( winebuild_args
, "-o" );
703 strarray_add( winebuild_args
, res_o_name
);
704 strarray_addall( winebuild_args
, resources
);
706 spawn( opts
->prefix
, winebuild_args
, 0 );
707 strarray_free( winebuild_args
);
711 /* check if there is a static lib associated to a given dll */
712 static char *find_static_lib( const char *dll
)
714 char *lib
= strmake("%s.a", dll
);
715 if (get_file_type(lib
) == file_arh
) return lib
;
720 /* add specified library to the list of files */
721 static void add_library( struct options
*opts
, strarray
*lib_dirs
, strarray
*files
, const char *library
)
723 char *static_lib
, *fullname
= 0;
725 switch(get_lib_type(opts
->target_platform
, lib_dirs
, library
, opts
->lib_suffix
, &fullname
))
728 strarray_add(files
, strmake("-a%s", fullname
));
731 strarray_add(files
, strmake("-d%s", fullname
));
732 if ((static_lib
= find_static_lib(fullname
)))
734 strarray_add(files
, strmake("-a%s",static_lib
));
740 /* keep it anyway, the linker may know what to do with it */
741 strarray_add(files
, strmake("-l%s", library
));
747 /* hack a main or WinMain function to work around Mingw's lack of Unicode support */
748 static const char *mingw_unicode_hack( struct options
*opts
)
750 char *main_stub
= get_temp_file( opts
->output_name
, ".c" );
752 create_file( main_stub
, 0644,
753 "typedef unsigned short wchar_t;\n"
754 "extern void * __stdcall LoadLibraryA(const char *);\n"
755 "extern void * __stdcall GetProcAddress(void *,const char *);\n"
756 "extern int wmain( int argc, wchar_t *argv[] );\n\n"
757 "int main( int argc, char *argv[] )\n{\n"
759 " wchar_t **wargv, **wenv;\n"
760 " void *msvcrt = LoadLibraryA( \"msvcrt.dll\" );\n"
761 " void (*__wgetmainargs)(int *argc, wchar_t** *wargv, wchar_t** *wenvp, int expand_wildcards,\n"
762 " int *new_mode) = GetProcAddress( msvcrt, \"__wgetmainargs\" );\n"
763 " __wgetmainargs( &wargc, &wargv, &wenv, 0, 0 );\n"
764 " return wmain( wargc, wargv );\n}\n" );
765 return compile_to_object( opts
, main_stub
, NULL
);
768 static void build(struct options
* opts
)
770 strarray
*lib_dirs
, *files
;
771 strarray
*spec_args
, *link_args
;
773 const char *spec_o_name
;
774 const char *output_name
, *spec_file
, *lang
;
775 const char *prelink
= NULL
;
776 int generate_app_loader
= 1;
780 /* NOTE: for the files array we'll use the following convention:
781 * -axxx: xxx is an archive (.a)
782 * -dxxx: xxx is a DLL (.def)
783 * -lxxx: xxx is an unsorted library
784 * -oxxx: xxx is an object (.o)
785 * -rxxx: xxx is a resource (.res)
786 * -sxxx: xxx is a shared lib (.so)
787 * -xlll: lll is the language (c, c++, etc.)
790 output_file
= strdup( opts
->output_name
? opts
->output_name
: "a.out" );
792 /* 'winegcc -o app xxx.exe.so' only creates the load script */
793 if (opts
->files
->size
== 1 && strendswith(opts
->files
->base
[0], ".exe.so"))
795 create_file(output_file
, 0755, app_loader_template
, opts
->files
->base
[0]);
799 /* generate app loader only for .exe */
800 if (opts
->shared
|| strendswith(output_file
, ".so"))
801 generate_app_loader
= 0;
803 if (strendswith(output_file
, ".fake")) fake_module
= 1;
805 /* normalize the filename a bit: strip .so, ensure it has proper ext */
806 if (strendswith(output_file
, ".so"))
807 output_file
[strlen(output_file
) - 3] = 0;
808 if ((output_name
= strrchr(output_file
, '/'))) output_name
++;
809 else output_name
= output_file
;
810 if (!strchr(output_name
, '.'))
811 output_file
= strmake("%s.%s", output_file
, opts
->shared
? "dll" : "exe");
813 /* get the filename from the path */
814 if ((output_name
= strrchr(output_file
, '/'))) output_name
++;
815 else output_name
= output_file
;
817 /* prepare the linking path */
818 if (!opts
->wine_objdir
)
820 char *lib_dir
= get_lib_dir( opts
);
821 lib_dirs
= strarray_dup(opts
->lib_dirs
);
822 strarray_add( lib_dirs
, strmake( "%s/wine", lib_dir
));
823 strarray_add( lib_dirs
, lib_dir
);
827 lib_dirs
= strarray_alloc();
828 strarray_add(lib_dirs
, strmake("%s/dlls", opts
->wine_objdir
));
829 strarray_add(lib_dirs
, strmake("%s/libs/wine", opts
->wine_objdir
));
830 strarray_addall(lib_dirs
, opts
->lib_dirs
);
833 /* mark the files with their appropriate type */
834 spec_file
= lang
= 0;
835 files
= strarray_alloc();
836 link_args
= strarray_alloc();
837 for ( j
= 0; j
< opts
->files
->size
; j
++ )
839 const char* file
= opts
->files
->base
[j
];
842 switch(get_file_type(file
))
847 error("Only one spec file can be specified\n");
851 /* FIXME: invoke wrc to build it */
852 error("Can't compile .rc file at the moment: %s\n", file
);
855 strarray_add(files
, strmake("-r%s", file
));
858 strarray_add(files
, strmake("-o%s", file
));
861 strarray_add(files
, strmake("-a%s", file
));
864 strarray_add(files
, strmake("-s%s", file
));
867 error("File does not exist: %s\n", file
);
870 file
= compile_to_object(opts
, file
, lang
);
871 strarray_add(files
, strmake("-o%s", file
));
875 else if (file
[1] == 'l')
876 add_library(opts
, lib_dirs
, files
, file
+ 2 );
877 else if (file
[1] == 'x')
881 /* building for Windows is completely different */
883 if (opts
->target_platform
== PLATFORM_WINDOWS
|| opts
->target_platform
== PLATFORM_CYGWIN
)
885 strarray
*resources
= strarray_alloc();
886 char *res_o_name
= NULL
;
889 error( "Building 16-bit code is not supported for Windows\n" );
891 strarray_addall(link_args
, get_translator(opts
));
895 /* run winebuild to generate the .def file */
896 char *spec_def_name
= get_temp_file(output_name
, ".spec.def");
897 spec_args
= get_winebuild_args( opts
);
898 strarray_add(spec_args
, "--def");
899 strarray_add(spec_args
, "-o");
900 strarray_add(spec_args
, spec_def_name
);
903 strarray_add(spec_args
, "--export");
904 strarray_add(spec_args
, spec_file
);
906 spawn(opts
->prefix
, spec_args
, 0);
907 strarray_free(spec_args
);
909 strarray_add(link_args
, "-shared");
910 if (verbose
) strarray_add(link_args
, "-v");
911 strarray_add(link_args
, "-Wl,--kill-at");
912 strarray_add(link_args
, spec_def_name
);
916 strarray_add(link_args
, opts
->gui_app
? "-mwindows" : "-mconsole");
919 if (opts
->nodefaultlibs
) strarray_add(link_args
, "-nodefaultlibs");
920 if (opts
->nostartfiles
) strarray_add(link_args
, "-nostartfiles" );
924 strarray_add(link_args
, strmake("-Wl,--subsystem,%s", opts
->subsystem
));
925 if (!strcmp( opts
->subsystem
, "native" ))
927 const char *entry
= opts
->target_cpu
== CPU_x86
? "_DriverEntry@8" : "DriverEntry";
928 strarray_add(link_args
, strmake( "-Wl,--entry,%s", entry
));
932 for ( j
= 0 ; j
< opts
->linker_args
->size
; j
++ )
933 strarray_add(link_args
, opts
->linker_args
->base
[j
]);
935 strarray_add(link_args
, "-o");
936 strarray_add(link_args
, output_file
);
938 if (opts
->image_base
)
939 strarray_add(link_args
, strmake("-Wl,--image-base,%s", opts
->image_base
));
941 if (opts
->large_address_aware
&& opts
->target_cpu
== CPU_x86
)
942 strarray_add( link_args
, "-Wl,--large-address-aware" );
944 if (opts
->unicode_app
&& !opts
->shared
)
945 strarray_add(link_args
, mingw_unicode_hack(opts
));
947 for ( j
= 0; j
< lib_dirs
->size
; j
++ )
948 strarray_add(link_args
, strmake("-L%s", lib_dirs
->base
[j
]));
950 if (!opts
->nodefaultlibs
)
952 add_library(opts
, lib_dirs
, files
, "winecrt0");
953 add_library(opts
, lib_dirs
, files
, "kernel32");
954 add_library(opts
, lib_dirs
, files
, "ntdll");
956 if (!opts
->shared
&& opts
->use_msvcrt
&& opts
->target_platform
== PLATFORM_CYGWIN
)
957 add_library(opts
, lib_dirs
, files
, "msvcrt");
959 for ( j
= 0; j
< files
->size
; j
++ )
961 const char* name
= files
->base
[j
] + 2;
963 switch(files
->base
[j
][1])
967 strarray_add(link_args
, strmake("-l%s", name
));
971 strarray_add(link_args
, name
);
974 if (!opts
->lib_suffix
&& strchr(name
, '/'))
976 /* turn the path back into -Ldir -lfoo options
977 * this makes sure that we use the specified libs even
978 * when mingw adds its own import libs to the link */
979 char *lib
= xstrdup( name
);
980 char *p
= strrchr( lib
, '/' );
983 if (!strncmp( p
, "lib", 3 ))
985 char *ext
= strrchr( p
, '.' );
989 strarray_add(link_args
, strmake("-L%s", lib
));
990 strarray_add(link_args
, strmake("-l%s", p
));
996 strarray_add(link_args
, name
);
1001 res_o_name
= get_temp_file( output_name
, ".res.o" );
1002 strarray_add( link_args
, res_o_name
);
1004 strarray_add( resources
, name
);
1009 if (res_o_name
) compile_resources_to_object( opts
, resources
, res_o_name
);
1011 spawn(opts
->prefix
, link_args
, 0);
1012 strarray_free (resources
);
1013 strarray_free (link_args
);
1014 strarray_free (lib_dirs
);
1015 strarray_free (files
);
1019 /* add the default libraries, if needed */
1020 if (!opts
->nostdlib
&& opts
->use_msvcrt
) add_library(opts
, lib_dirs
, files
, "msvcrt");
1022 if (!opts
->wine_objdir
&& !opts
->nodefaultlibs
)
1026 add_library(opts
, lib_dirs
, files
, "shell32");
1027 add_library(opts
, lib_dirs
, files
, "comdlg32");
1028 add_library(opts
, lib_dirs
, files
, "gdi32");
1030 add_library(opts
, lib_dirs
, files
, "advapi32");
1031 add_library(opts
, lib_dirs
, files
, "user32");
1034 if (!opts
->nodefaultlibs
)
1036 add_library(opts
, lib_dirs
, files
, "winecrt0");
1037 if (opts
->win16_app
) add_library(opts
, lib_dirs
, files
, "kernel");
1038 add_library(opts
, lib_dirs
, files
, "kernel32");
1039 add_library(opts
, lib_dirs
, files
, "ntdll");
1041 if (!opts
->nostdlib
) add_library(opts
, lib_dirs
, files
, "wine");
1043 /* run winebuild to generate the .spec.o file */
1044 spec_args
= get_winebuild_args( opts
);
1045 strarray_add( spec_args
, strmake( "--cc-cmd=%s", build_tool_name( opts
, "gcc", CC
)));
1046 strarray_add( spec_args
, strmake( "--ld-cmd=%s", build_tool_name( opts
, "ld", LD
)));
1048 spec_o_name
= get_temp_file(output_name
, ".spec.o");
1049 if (opts
->force_pointer_size
)
1050 strarray_add(spec_args
, strmake("-m%u", 8 * opts
->force_pointer_size
));
1051 strarray_add(spec_args
, "-D_REENTRANT");
1052 strarray_add(spec_args
, "-fPIC");
1053 strarray_add(spec_args
, opts
->shared
? "--dll" : "--exe");
1056 strarray_add(spec_args
, "--fake-module");
1057 strarray_add(spec_args
, "-o");
1058 strarray_add(spec_args
, output_file
);
1062 strarray_add(spec_args
, "-o");
1063 strarray_add(spec_args
, spec_o_name
);
1067 strarray_add(spec_args
, "-E");
1068 strarray_add(spec_args
, spec_file
);
1070 if (opts
->win16_app
) strarray_add(spec_args
, "-m16");
1074 strarray_add(spec_args
, "-F");
1075 strarray_add(spec_args
, output_name
);
1076 strarray_add(spec_args
, "--subsystem");
1077 strarray_add(spec_args
, opts
->gui_app
? "windows" : "console");
1078 if (opts
->unicode_app
)
1080 strarray_add(spec_args
, "--entry");
1081 strarray_add(spec_args
, "__wine_spec_exe_wentry");
1083 if (opts
->large_address_aware
) strarray_add( spec_args
, "--large-address-aware" );
1086 if (opts
->subsystem
)
1088 strarray_add(spec_args
, "--subsystem");
1089 strarray_add(spec_args
, opts
->subsystem
);
1092 for ( j
= 0; j
< lib_dirs
->size
; j
++ )
1093 strarray_add(spec_args
, strmake("-L%s", lib_dirs
->base
[j
]));
1095 for ( j
= 0 ; j
< opts
->winebuild_args
->size
; j
++ )
1096 strarray_add(spec_args
, opts
->winebuild_args
->base
[j
]);
1098 /* add resource files */
1099 for ( j
= 0; j
< files
->size
; j
++ )
1100 if (files
->base
[j
][1] == 'r') strarray_add(spec_args
, files
->base
[j
]);
1102 /* add other files */
1103 strarray_add(spec_args
, "--");
1104 for ( j
= 0; j
< files
->size
; j
++ )
1106 switch(files
->base
[j
][1])
1111 strarray_add(spec_args
, files
->base
[j
] + 2);
1116 spawn(opts
->prefix
, spec_args
, 0);
1117 strarray_free (spec_args
);
1118 if (fake_module
) return; /* nothing else to do */
1120 /* link everything together now */
1121 strarray_addall(link_args
, get_translator(opts
));
1122 strarray_addall(link_args
, get_lddllflags(opts
, link_args
));
1124 strarray_add(link_args
, "-o");
1125 strarray_add(link_args
, strmake("%s.so", output_file
));
1127 for ( j
= 0 ; j
< opts
->linker_args
->size
; j
++ )
1128 strarray_add(link_args
, opts
->linker_args
->base
[j
]);
1130 switch (opts
->target_platform
)
1132 case PLATFORM_APPLE
:
1133 if (opts
->image_base
)
1135 strarray_add(link_args
, "-image_base");
1136 strarray_add(link_args
, opts
->image_base
);
1139 strarray_add(link_args
, "-Wl,-x");
1141 case PLATFORM_SOLARIS
:
1143 char *mapfile
= get_temp_file( output_name
, ".map" );
1144 const char *align
= opts
->section_align
? opts
->section_align
: "0x1000";
1146 create_file( mapfile
, 0644, "text = A%s;\ndata = A%s;\n", align
, align
);
1147 strarray_add(link_args
, strmake("-Wl,-M,%s", mapfile
));
1148 strarray_add(tmp_files
, mapfile
);
1151 case PLATFORM_ANDROID
:
1152 /* the Android loader requires a soname for all libraries */
1153 strarray_add( link_args
, strmake( "-Wl,-soname,%s.so", output_name
));
1156 if (opts
->image_base
)
1158 if (!try_link(opts
->prefix
, link_args
, strmake("-Wl,-Ttext-segment=%s", opts
->image_base
)))
1159 strarray_add(link_args
, strmake("-Wl,-Ttext-segment=%s", opts
->image_base
));
1163 if (!try_link(opts
->prefix
, link_args
, "-Wl,-z,max-page-size=0x1000"))
1164 strarray_add(link_args
, "-Wl,-z,max-page-size=0x1000");
1168 for ( j
= 0; j
< lib_dirs
->size
; j
++ )
1169 strarray_add(link_args
, strmake("-L%s", lib_dirs
->base
[j
]));
1171 strarray_add(link_args
, spec_o_name
);
1173 for ( j
= 0; j
< files
->size
; j
++ )
1175 const char* name
= files
->base
[j
] + 2;
1176 switch(files
->base
[j
][1])
1179 strarray_add(link_args
, strmake("-l%s", name
));
1184 strarray_add(link_args
, name
);
1189 if (!opts
->nostdlib
)
1191 strarray_add(link_args
, "-lm");
1192 strarray_add(link_args
, "-lc");
1195 spawn(opts
->prefix
, link_args
, 0);
1196 strarray_free (link_args
);
1198 /* set the base address with prelink if linker support is not present */
1199 if (prelink
&& !opts
->target
)
1201 if (prelink
[0] && strcmp(prelink
,"false"))
1203 strarray
*prelink_args
= strarray_alloc();
1204 strarray_add(prelink_args
, prelink
);
1205 strarray_add(prelink_args
, "--reloc-only");
1206 strarray_add(prelink_args
, opts
->image_base
);
1207 strarray_add(prelink_args
, strmake("%s.so", output_file
));
1208 spawn(opts
->prefix
, prelink_args
, 1);
1209 strarray_free(prelink_args
);
1213 /* create the loader script */
1214 if (generate_app_loader
)
1215 create_file(output_file
, 0755, app_loader_template
, strmake("%s.so", output_name
));
1219 static void forward(int argc
, char **argv
, struct options
* opts
)
1221 strarray
* args
= strarray_alloc();
1224 strarray_addall(args
, get_translator(opts
));
1226 for( j
= 1; j
< argc
; j
++ )
1227 strarray_add(args
, argv
[j
]);
1229 spawn(opts
->prefix
, args
, 0);
1230 strarray_free (args
);
1233 static int is_linker_arg(const char* arg
)
1235 static const char* link_switches
[] =
1237 "-nostdlib", "-s", "-static", "-static-libgcc", "-shared", "-shared-libgcc", "-symbolic",
1238 "-framework", "--coverage", "-fprofile-generate", "-fprofile-use"
1250 if (strncmp("-Wl,", arg
, 4) == 0) return 1;
1253 if (strcmp("-Xlinker", arg
) == 0) return 1;
1256 if (strcmp("-arch", arg
) == 0) return 1;
1260 for (j
= 0; j
< sizeof(link_switches
)/sizeof(link_switches
[0]); j
++)
1261 if (strcmp(link_switches
[j
], arg
) == 0) return 1;
1268 * -b machine -V version
1270 static int is_target_arg(const char* arg
)
1272 return arg
[1] == 'b' || arg
[1] == 'V';
1278 * -Bprefix -Idir -I- -Ldir -specs=file
1280 static int is_directory_arg(const char* arg
)
1282 return arg
[1] == 'B' || arg
[1] == 'L' || arg
[1] == 'I' || strncmp("-specs=", arg
, 7) == 0;
1287 * -mno-cygwin -mwindows -mconsole -mthreads -municode
1289 static int is_mingw_arg(const char* arg
)
1291 static const char* mingw_switches
[] =
1293 "-mno-cygwin", "-mwindows", "-mconsole", "-mthreads", "-municode"
1297 for (j
= 0; j
< sizeof(mingw_switches
)/sizeof(mingw_switches
[0]); j
++)
1298 if (strcmp(mingw_switches
[j
], arg
) == 0) return 1;
1303 static void parse_target_option( struct options
*opts
, const char *target
)
1305 char *p
, *platform
, *spec
= xstrdup( target
);
1308 /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
1310 /* get the CPU part */
1312 if ((p
= strchr( spec
, '-' )))
1315 for (i
= 0; i
< sizeof(cpu_names
)/sizeof(cpu_names
[0]); i
++)
1317 if (!strcmp( cpu_names
[i
].name
, spec
))
1319 opts
->target_cpu
= cpu_names
[i
].cpu
;
1323 if (i
== sizeof(cpu_names
)/sizeof(cpu_names
[0]))
1324 error( "Unrecognized CPU '%s'\n", spec
);
1326 if ((p
= strrchr( p
, '-' ))) platform
= p
+ 1;
1328 else if (!strcmp( spec
, "mingw32" ))
1330 opts
->target_cpu
= CPU_x86
;
1334 error( "Invalid target specification '%s'\n", target
);
1336 /* get the OS part */
1338 opts
->target_platform
= PLATFORM_UNSPECIFIED
; /* default value */
1339 for (i
= 0; i
< sizeof(platform_names
)/sizeof(platform_names
[0]); i
++)
1341 if (!strncmp( platform_names
[i
].name
, platform
, strlen(platform_names
[i
].name
) ))
1343 opts
->target_platform
= platform_names
[i
].platform
;
1349 opts
->target
= xstrdup( target
);
1352 int main(int argc
, char **argv
)
1354 int i
, c
, next_is_arg
= 0, linking
= 1;
1355 int raw_compiler_arg
, raw_linker_arg
;
1356 const char* option_arg
;
1357 struct options opts
;
1362 signal( SIGHUP
, exit_on_signal
);
1364 signal( SIGTERM
, exit_on_signal
);
1365 signal( SIGINT
, exit_on_signal
);
1366 #ifdef HAVE_SIGADDSET
1367 sigemptyset( &signal_mask
);
1368 sigaddset( &signal_mask
, SIGHUP
);
1369 sigaddset( &signal_mask
, SIGTERM
);
1370 sigaddset( &signal_mask
, SIGINT
);
1373 /* setup tmp file removal at exit */
1374 tmp_files
= strarray_alloc();
1375 atexit(clean_temp_files
);
1377 /* initialize options */
1378 memset(&opts
, 0, sizeof(opts
));
1379 opts
.target_cpu
= build_cpu
;
1380 opts
.target_platform
= build_platform
;
1381 opts
.lib_dirs
= strarray_alloc();
1382 opts
.files
= strarray_alloc();
1383 opts
.linker_args
= strarray_alloc();
1384 opts
.compiler_args
= strarray_alloc();
1385 opts
.winebuild_args
= strarray_alloc();
1387 /* determine the processor type */
1388 if (strendswith(argv
[0], "winecpp")) opts
.processor
= proc_cpp
;
1389 else if (strendswith(argv
[0], "++")) opts
.processor
= proc_cxx
;
1392 for ( i
= 1 ; i
< argc
; i
++ )
1394 if (argv
[i
][0] == '-') /* option */
1396 /* determine if this switch is followed by a separate argument */
1401 case 'x': case 'o': case 'D': case 'U':
1402 case 'I': case 'A': case 'l': case 'u':
1403 case 'b': case 'V': case 'G': case 'L':
1404 case 'B': case 'R': case 'z':
1405 if (argv
[i
][2]) option_arg
= &argv
[i
][2];
1406 else next_is_arg
= 1;
1412 if (strcmp("-aux-info", argv
[i
]) == 0)
1414 if (strcmp("-arch", argv
[i
]) == 0)
1418 if (strcmp("-Xlinker", argv
[i
]) == 0)
1423 if (c
== 'F' || c
== 'T' || c
== 'Q')
1425 if (argv
[i
][3]) option_arg
= &argv
[i
][3];
1426 else next_is_arg
= 1;
1430 if (strcmp("-framework", argv
[i
]) == 0)
1434 if (strcmp("--param", argv
[i
]) == 0)
1440 if (i
+ 1 >= argc
) error("option -%c requires an argument\n", argv
[i
][1]);
1441 option_arg
= argv
[i
+1];
1444 /* determine what options go 'as is' to the linker & the compiler */
1445 raw_compiler_arg
= raw_linker_arg
= 0;
1446 if (is_linker_arg(argv
[i
]))
1452 if (is_directory_arg(argv
[i
]) || is_target_arg(argv
[i
]))
1454 raw_compiler_arg
= !is_mingw_arg(argv
[i
]);
1457 /* these things we handle explicitly so we don't pass them 'as is' */
1458 if (argv
[i
][1] == 'l' || argv
[i
][1] == 'I' || argv
[i
][1] == 'L')
1460 if (argv
[i
][1] == 'c' || argv
[i
][1] == 'L')
1461 raw_compiler_arg
= 0;
1462 if (argv
[i
][1] == 'o' || argv
[i
][1] == 'b' || argv
[i
][1] == 'V')
1463 raw_compiler_arg
= raw_linker_arg
= 0;
1465 /* do a bit of semantic analysis */
1469 str
= strdup(option_arg
);
1470 if (strendswith(str
, "/")) str
[strlen(str
) - 1] = 0;
1471 if (strendswith(str
, "/tools/winebuild"))
1473 char *objdir
= strdup(str
);
1474 objdir
[strlen(objdir
) - sizeof("/tools/winebuild") + 1] = 0;
1475 opts
.wine_objdir
= objdir
;
1476 /* don't pass it to the compiler, this generates warnings */
1477 raw_compiler_arg
= raw_linker_arg
= 0;
1479 else if (!strcmp(str
, "tools/winebuild"))
1481 opts
.wine_objdir
= ".";
1482 raw_compiler_arg
= raw_linker_arg
= 0;
1484 if (!opts
.prefix
) opts
.prefix
= strarray_alloc();
1485 strarray_add(opts
.prefix
, str
);
1488 parse_target_option( &opts
, option_arg
);
1491 opts
.version
= xstrdup( option_arg
);
1493 case 'c': /* compile or assemble */
1494 if (argv
[i
][2] == 0) opts
.compile_only
= 1;
1496 case 'S': /* generate assembler code */
1497 case 'E': /* preprocess only */
1498 if (argv
[i
][2] == 0) linking
= 0;
1501 if (strcmp("-fno-short-wchar", argv
[i
]) == 0)
1502 opts
.noshortwchar
= 1;
1503 else if (!strcmp("-fasynchronous-unwind-tables", argv
[i
]))
1504 opts
.unwind_tables
= 1;
1505 else if (!strcmp("-fno-asynchronous-unwind-tables", argv
[i
]))
1506 opts
.unwind_tables
= 0;
1509 strarray_add(opts
.files
, strmake("-l%s", option_arg
));
1512 strarray_add(opts
.lib_dirs
, option_arg
);
1514 case 'M': /* map file generation */
1518 if (strcmp("-mno-cygwin", argv
[i
]) == 0)
1519 opts
.use_msvcrt
= 1;
1520 else if (strcmp("-mwindows", argv
[i
]) == 0)
1522 else if (strcmp("-mconsole", argv
[i
]) == 0)
1524 else if (strcmp("-municode", argv
[i
]) == 0)
1525 opts
.unicode_app
= 1;
1526 else if (strcmp("-m16", argv
[i
]) == 0)
1528 else if (strcmp("-m32", argv
[i
]) == 0)
1530 if (opts
.target_cpu
== CPU_x86_64
)
1531 opts
.target_cpu
= CPU_x86
;
1532 else if (opts
.target_cpu
== CPU_ARM64
)
1533 opts
.target_cpu
= CPU_ARM
;
1534 opts
.force_pointer_size
= 4;
1537 else if (strcmp("-m64", argv
[i
]) == 0)
1539 if (opts
.target_cpu
== CPU_x86
)
1540 opts
.target_cpu
= CPU_x86_64
;
1541 else if (opts
.target_cpu
== CPU_ARM
)
1542 opts
.target_cpu
= CPU_ARM64
;
1543 opts
.force_pointer_size
= 8;
1546 else if (!strcmp("-marm", argv
[i
] ) || !strcmp("-mthumb", argv
[i
] ))
1548 strarray_add(opts
.winebuild_args
, argv
[i
]);
1551 else if (!strncmp("-mcpu=", argv
[i
], 6) ||
1552 !strncmp("-march=", argv
[i
], 7) ||
1553 !strncmp("-mfloat-abi=", argv
[i
], 12))
1554 strarray_add(opts
.winebuild_args
, argv
[i
]);
1557 if (strcmp("-nostdinc", argv
[i
]) == 0)
1559 else if (strcmp("-nodefaultlibs", argv
[i
]) == 0)
1560 opts
.nodefaultlibs
= 1;
1561 else if (strcmp("-nostdlib", argv
[i
]) == 0)
1563 else if (strcmp("-nostartfiles", argv
[i
]) == 0)
1564 opts
.nostartfiles
= 1;
1567 opts
.output_name
= option_arg
;
1570 if (strcmp("-static", argv
[i
]) == 0)
1572 else if(strcmp("-save-temps", argv
[i
]) == 0)
1574 else if(strcmp("-shared", argv
[i
]) == 0)
1577 raw_compiler_arg
= raw_linker_arg
= 0;
1579 else if (strcmp("-s", argv
[i
]) == 0 && opts
.target_platform
== PLATFORM_APPLE
)
1581 /* On Mac, change -s into -Wl,-x. ld's -s switch
1582 * is deprecated, and it doesn't work on Tiger with
1590 if (argv
[i
][2] == 0) verbose
++;
1593 if (strncmp("-Wl,", argv
[i
], 4) == 0)
1596 strarray
* Wl
= strarray_fromstring(argv
[i
] + 4, ",");
1597 for (j
= 0; j
< Wl
->size
; j
++)
1599 if (!strcmp(Wl
->base
[j
], "--image-base") && j
< Wl
->size
- 1)
1601 opts
.image_base
= strdup( Wl
->base
[++j
] );
1604 if (!strcmp(Wl
->base
[j
], "--section-alignment") && j
< Wl
->size
- 1)
1606 opts
.section_align
= strdup( Wl
->base
[++j
] );
1609 if (!strcmp(Wl
->base
[j
], "--large-address-aware"))
1611 opts
.large_address_aware
= 1;
1614 if (!strcmp(Wl
->base
[j
], "--subsystem") && j
< Wl
->size
- 1)
1616 opts
.subsystem
= strdup( Wl
->base
[++j
] );
1619 if (!strcmp(Wl
->base
[j
], "-static")) linking
= -1;
1620 strarray_add(opts
.linker_args
, strmake("-Wl,%s",Wl
->base
[j
]));
1623 raw_compiler_arg
= raw_linker_arg
= 0;
1625 else if (strncmp("-Wb,", argv
[i
], 4) == 0)
1627 strarray
* Wb
= strarray_fromstring(argv
[i
] + 4, ",");
1628 strarray_addall(opts
.winebuild_args
, Wb
);
1630 /* don't pass it to the compiler, it generates errors */
1631 raw_compiler_arg
= raw_linker_arg
= 0;
1635 lang
= strmake("-x%s", option_arg
);
1636 strarray_add(opts
.files
, lang
);
1637 /* we'll pass these flags ourselves, explicitly */
1638 raw_compiler_arg
= raw_linker_arg
= 0;
1641 if (strcmp("-static", argv
[i
]+1) == 0)
1643 else if (!strncmp("--sysroot", argv
[i
], 9) && opts
.wine_objdir
)
1645 if (argv
[i
][9] == '=') opts
.wine_objdir
= argv
[i
] + 10;
1646 else opts
.wine_objdir
= argv
[++i
];
1647 raw_compiler_arg
= raw_linker_arg
= 0;
1649 else if (!strncmp("--lib-suffix", argv
[i
], 12) && opts
.wine_objdir
)
1651 if (argv
[i
][12] == '=') opts
.lib_suffix
= argv
[i
] + 13;
1652 else opts
.lib_suffix
= argv
[++i
];
1653 raw_compiler_arg
= raw_linker_arg
= 0;
1658 /* put the arg into the appropriate bucket */
1661 strarray_add(opts
.linker_args
, argv
[i
]);
1662 if (next_is_arg
&& (i
+ 1 < argc
))
1663 strarray_add(opts
.linker_args
, argv
[i
+ 1]);
1665 if (raw_compiler_arg
)
1667 strarray_add(opts
.compiler_args
, argv
[i
]);
1668 if (next_is_arg
&& (i
+ 1 < argc
))
1669 strarray_add(opts
.compiler_args
, argv
[i
+ 1]);
1672 /* skip the next token if it's an argument */
1673 if (next_is_arg
) i
++;
1677 strarray_add(opts
.files
, argv
[i
]);
1681 if (opts
.processor
== proc_cpp
) linking
= 0;
1682 if (linking
== -1) error("Static linking is not supported\n");
1684 if (opts
.files
->size
== 0) forward(argc
, argv
, &opts
);
1685 else if (linking
) build(&opts
);
1686 else compile(&opts
, lang
);