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 { "x86_64", CPU_x86_64
},
160 { "sparc", CPU_SPARC
},
161 { "alpha", CPU_ALPHA
},
162 { "powerpc", CPU_POWERPC
}
168 enum target_platform platform
;
171 { "macos", PLATFORM_APPLE
},
172 { "darwin", PLATFORM_APPLE
},
173 { "solaris", PLATFORM_SOLARIS
},
174 { "mingw32", PLATFORM_WINDOWS
},
175 { "windows", PLATFORM_WINDOWS
},
176 { "winnt", PLATFORM_WINDOWS
}
181 enum processor processor
;
182 enum target_cpu target_cpu
;
183 enum target_platform target_platform
;
195 int force_pointer_size
;
196 int large_address_aware
;
197 const char* wine_objdir
;
198 const char* output_name
;
199 const char* image_base
;
200 const char* section_align
;
203 strarray
* linker_args
;
204 strarray
* compiler_args
;
205 strarray
* winebuild_args
;
210 static const enum target_cpu build_cpu
= CPU_x86
;
211 #elif defined(__x86_64__)
212 static const enum target_cpu build_cpu
= CPU_x86_64
;
213 #elif defined(__sparc__)
214 static const enum target_cpu build_cpu
= CPU_SPARC
;
215 #elif defined(__ALPHA__)
216 static const enum target_cpu build_cpu
= CPU_ALPHA
;
217 #elif defined(__powerpc__)
218 static const enum target_cpu build_cpu
= CPU_POWERPC
;
220 #error Unsupported CPU
224 static enum target_platform build_platform
= PLATFORM_APPLE
;
226 static enum target_platform build_platform
= PLATFORM_SOLARIS
;
227 #elif defined(_WINDOWS)
228 static enum target_platform build_platform
= PLATFORM_WINDOWS
;
230 static enum target_platform build_platform
= PLATFORM_UNSPECIFIED
;
233 static void clean_temp_files(void)
237 if (keep_generated
) return;
239 for (i
= 0; i
< tmp_files
->size
; i
++)
240 unlink(tmp_files
->base
[i
]);
243 /* clean things up when aborting on a signal */
244 static void exit_on_signal( int sig
)
246 exit(1); /* this will call the atexit functions */
249 static char* get_temp_file(const char* prefix
, const char* suffix
)
252 char* tmp
= strmake("%s-XXXXXX%s", prefix
, suffix
);
254 #ifdef HAVE_SIGPROCMASK
256 /* block signals while manipulating the temp files list */
257 sigprocmask( SIG_BLOCK
, &signal_mask
, &old_set
);
259 fd
= mkstemps( tmp
, strlen(suffix
) );
262 /* could not create it in current directory, try in /tmp */
264 tmp
= strmake("/tmp/%s-XXXXXX%s", prefix
, suffix
);
265 fd
= mkstemps( tmp
, strlen(suffix
) );
266 if (fd
== -1) error( "could not create temp file\n" );
269 strarray_add(tmp_files
, tmp
);
270 #ifdef HAVE_SIGPROCMASK
271 sigprocmask( SIG_SETMASK
, &old_set
, NULL
);
276 static const strarray
* get_translator(struct options
*opts
)
278 const char *str
= NULL
;
281 switch(opts
->processor
)
284 if (opts
->target
) str
= strmake( "%s-cpp", opts
->target
);
289 if (opts
->target
) str
= strmake( "%s-gcc", opts
->target
);
293 if (opts
->target
) str
= strmake( "%s-g++", opts
->target
);
299 ret
= strarray_fromstring( str
, " " );
300 if (opts
->force_pointer_size
)
301 strarray_add( ret
, strmake("-m%u", 8 * opts
->force_pointer_size
));
305 static void compile(struct options
* opts
, const char* lang
)
307 strarray
* comp_args
= strarray_alloc();
311 strarray_addall(comp_args
, get_translator(opts
));
312 switch(opts
->processor
)
314 case proc_cpp
: gcc_defs
= 1; break;
315 case proc_as
: gcc_defs
= 0; break;
316 /* Note: if the C compiler is gcc we assume the C++ compiler is too */
317 /* mixing different C and C++ compilers isn't supported in configure anyway */
320 gcc_defs
= strendswith(comp_args
->base
[0], "gcc") || strendswith(comp_args
->base
[0], "g++");
324 if (opts
->target_platform
== PLATFORM_WINDOWS
) goto no_compat_defines
;
326 if (opts
->processor
!= proc_cpp
)
328 if (gcc_defs
&& !opts
->wine_objdir
&& !opts
->noshortwchar
)
330 strarray_add(comp_args
, "-fshort-wchar");
331 strarray_add(comp_args
, "-DWINE_UNICODE_NATIVE");
333 strarray_addall(comp_args
, strarray_fromstring(DLLFLAGS
, " "));
336 if (opts
->target_cpu
== CPU_x86_64
)
338 strarray_add(comp_args
, "-DWIN64");
339 strarray_add(comp_args
, "-D_WIN64");
340 strarray_add(comp_args
, "-D__WIN64");
341 strarray_add(comp_args
, "-D__WIN64__");
344 strarray_add(comp_args
, "-DWIN32");
345 strarray_add(comp_args
, "-D_WIN32");
346 strarray_add(comp_args
, "-D__WIN32");
347 strarray_add(comp_args
, "-D__WIN32__");
348 strarray_add(comp_args
, "-D__WINNT");
349 strarray_add(comp_args
, "-D__WINNT__");
353 if (opts
->target_cpu
== CPU_x86_64
)
355 strarray_add(comp_args
, "-D__stdcall=__attribute__((ms_abi))");
356 strarray_add(comp_args
, "-D__cdecl=__attribute__((ms_abi))");
357 strarray_add(comp_args
, "-D_stdcall=__attribute__((ms_abi))");
358 strarray_add(comp_args
, "-D_cdecl=__attribute__((ms_abi))");
359 strarray_add(comp_args
, "-D__fastcall=__attribute__((ms_abi))");
360 strarray_add(comp_args
, "-D_fastcall=__attribute__((ms_abi))");
362 else if (opts
->target_platform
== PLATFORM_APPLE
)
364 /* Mac OS X uses a 16-byte aligned stack and not a 4-byte one */
365 strarray_add(comp_args
, "-D__stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
366 strarray_add(comp_args
, "-D__cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
367 strarray_add(comp_args
, "-D_stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
368 strarray_add(comp_args
, "-D_cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
372 strarray_add(comp_args
, "-D__stdcall=__attribute__((__stdcall__))");
373 strarray_add(comp_args
, "-D__cdecl=__attribute__((__cdecl__))");
374 strarray_add(comp_args
, "-D_stdcall=__attribute__((__stdcall__))");
375 strarray_add(comp_args
, "-D_cdecl=__attribute__((__cdecl__))");
378 strarray_add(comp_args
, "-D__fastcall=__attribute__((__fastcall__))");
379 strarray_add(comp_args
, "-D_fastcall=__attribute__((__fastcall__))");
380 strarray_add(comp_args
, "-D__declspec(x)=__declspec_##x");
381 strarray_add(comp_args
, "-D__declspec_align(x)=__attribute__((aligned(x)))");
382 strarray_add(comp_args
, "-D__declspec_allocate(x)=__attribute__((section(x)))");
383 strarray_add(comp_args
, "-D__declspec_deprecated=__attribute__((deprecated))");
384 strarray_add(comp_args
, "-D__declspec_dllimport=__attribute__((dllimport))");
385 strarray_add(comp_args
, "-D__declspec_dllexport=__attribute__((dllexport))");
386 strarray_add(comp_args
, "-D__declspec_naked=__attribute__((naked))");
387 strarray_add(comp_args
, "-D__declspec_noinline=__attribute__((noinline))");
388 strarray_add(comp_args
, "-D__declspec_noreturn=__attribute__((noreturn))");
389 strarray_add(comp_args
, "-D__declspec_nothrow=__attribute__((nothrow))");
390 strarray_add(comp_args
, "-D__declspec_novtable=__attribute__(())"); /* ignore it */
391 strarray_add(comp_args
, "-D__declspec_selectany=__attribute__((weak))");
392 strarray_add(comp_args
, "-D__declspec_thread=__thread");
395 strarray_add(comp_args
, "-D__int8=char");
396 strarray_add(comp_args
, "-D__int16=short");
397 strarray_add(comp_args
, "-D__int32=int");
398 if (opts
->target_cpu
== CPU_x86_64
)
399 strarray_add(comp_args
, "-D__int64=long");
401 strarray_add(comp_args
, "-D__int64=long long");
404 strarray_add(comp_args
, "-D__WINE__");
406 /* options we handle explicitly */
407 if (opts
->compile_only
)
408 strarray_add(comp_args
, "-c");
409 if (opts
->output_name
)
411 strarray_add(comp_args
, "-o");
412 strarray_add(comp_args
, opts
->output_name
);
415 /* the rest of the pass-through parameters */
416 for ( j
= 0 ; j
< opts
->compiler_args
->size
; j
++ )
417 strarray_add(comp_args
, opts
->compiler_args
->base
[j
]);
419 /* the language option, if any */
420 if (lang
&& strcmp(lang
, "-xnone"))
421 strarray_add(comp_args
, lang
);
423 /* last, but not least, the files */
424 for ( j
= 0; j
< opts
->files
->size
; j
++ )
426 if (opts
->files
->base
[j
][0] != '-')
427 strarray_add(comp_args
, opts
->files
->base
[j
]);
430 /* standard includes come last in the include search path */
431 if (!opts
->wine_objdir
&& !opts
->nostdinc
)
433 if (opts
->use_msvcrt
)
435 if (gcc_defs
) strarray_add(comp_args
, "-isystem" INCLUDEDIR
"/msvcrt");
436 else strarray_add(comp_args
, "-I" INCLUDEDIR
"/msvcrt");
437 strarray_add(comp_args
, "-D__MSVCRT__");
439 strarray_add(comp_args
, gcc_defs
? "-isystem" INCLUDEDIR
"/windows" : "-I" INCLUDEDIR
"/windows" );
441 else if (opts
->wine_objdir
)
442 strarray_add(comp_args
, strmake("-I%s/include", opts
->wine_objdir
) );
444 spawn(opts
->prefix
, comp_args
, 0);
445 strarray_free(comp_args
);
448 static const char* compile_to_object(struct options
* opts
, const char* file
, const char* lang
)
450 struct options copts
;
453 /* make a copy so we don't change any of the initial stuff */
454 /* a shallow copy is exactly what we want in this case */
455 base_name
= get_basename(file
);
457 copts
.output_name
= get_temp_file(base_name
, ".o");
458 copts
.compile_only
= 1;
459 copts
.files
= strarray_alloc();
460 strarray_add(copts
.files
, file
);
461 compile(&copts
, lang
);
462 strarray_free(copts
.files
);
465 return copts
.output_name
;
468 /* return the initial set of options needed to run winebuild */
469 static strarray
*get_winebuild_args(struct options
*opts
)
471 const char* winebuild
= getenv("WINEBUILD");
472 strarray
*spec_args
= strarray_alloc();
474 if (!winebuild
) winebuild
= "winebuild";
475 strarray_add( spec_args
, winebuild
);
476 if (verbose
) strarray_add( spec_args
, "-v" );
477 if (keep_generated
) strarray_add( spec_args
, "--save-temps" );
480 strarray_add( spec_args
, "--target" );
481 strarray_add( spec_args
, opts
->target
);
486 static const char* compile_resources_to_object(struct options
* opts
, const strarray
*resources
,
487 const char *res_o_name
)
489 strarray
*winebuild_args
= get_winebuild_args( opts
);
491 strarray_add( winebuild_args
, "--resources" );
492 strarray_add( winebuild_args
, "-o" );
493 strarray_add( winebuild_args
, res_o_name
);
494 strarray_addall( winebuild_args
, resources
);
496 spawn( opts
->prefix
, winebuild_args
, 0 );
497 strarray_free( winebuild_args
);
501 /* check if there is a static lib associated to a given dll */
502 static char *find_static_lib( const char *dll
)
504 char *lib
= strmake("%s.a", dll
);
505 if (get_file_type(lib
) == file_arh
) return lib
;
510 /* add specified library to the list of files */
511 static void add_library( struct options
*opts
, strarray
*lib_dirs
, strarray
*files
, const char *library
)
513 char *static_lib
, *fullname
= 0;
515 switch(get_lib_type(opts
->target_platform
, lib_dirs
, library
, &fullname
))
518 strarray_add(files
, strmake("-a%s", fullname
));
521 strarray_add(files
, strmake("-d%s", fullname
));
522 if ((static_lib
= find_static_lib(fullname
)))
524 strarray_add(files
, strmake("-a%s",static_lib
));
530 /* keep it anyway, the linker may know what to do with it */
531 strarray_add(files
, strmake("-l%s", library
));
537 /* hack a main or WinMain function to work around Mingw's lack of Unicode support */
538 static const char *mingw_unicode_hack( struct options
*opts
)
540 char *main_stub
= get_temp_file( opts
->output_name
, ".c" );
542 create_file( main_stub
, 0644,
543 "#include <stdlib.h>\n"
544 "extern int wmain(int,wchar_t**);\n"
545 "int main( int argc, char *argv[] )\n{\n"
546 " return wmain( argc, __wargv );\n}\n" );
547 return compile_to_object( opts
, main_stub
, NULL
);
550 static void build(struct options
* opts
)
552 static const char *stdlibpath
[] = { DLLDIR
, LIBDIR
, "/usr/lib", "/usr/local/lib", "/lib" };
553 strarray
*lib_dirs
, *files
;
554 strarray
*spec_args
, *link_args
;
556 const char *spec_o_name
;
557 const char *output_name
, *spec_file
, *lang
;
558 int generate_app_loader
= 1;
561 /* NOTE: for the files array we'll use the following convention:
562 * -axxx: xxx is an archive (.a)
563 * -dxxx: xxx is a DLL (.def)
564 * -lxxx: xxx is an unsorted library
565 * -oxxx: xxx is an object (.o)
566 * -rxxx: xxx is a resource (.res)
567 * -sxxx: xxx is a shared lib (.so)
568 * -xlll: lll is the language (c, c++, etc.)
571 output_file
= strdup( opts
->output_name
? opts
->output_name
: "a.out" );
573 /* 'winegcc -o app xxx.exe.so' only creates the load script */
574 if (opts
->files
->size
== 1 && strendswith(opts
->files
->base
[0], ".exe.so"))
576 create_file(output_file
, 0755, app_loader_template
, opts
->files
->base
[0]);
580 /* generate app loader only for .exe */
581 if (opts
->shared
|| strendswith(output_file
, ".so"))
582 generate_app_loader
= 0;
584 /* normalize the filename a bit: strip .so, ensure it has proper ext */
585 if (strendswith(output_file
, ".so"))
586 output_file
[strlen(output_file
) - 3] = 0;
587 if ((output_name
= strrchr(output_file
, '/'))) output_name
++;
588 else output_name
= output_file
;
589 if (!strchr(output_name
, '.'))
590 output_file
= strmake("%s.%s", output_file
, opts
->shared
? "dll" : "exe");
592 /* get the filename from the path */
593 if ((output_name
= strrchr(output_file
, '/'))) output_name
++;
594 else output_name
= output_file
;
596 /* prepare the linking path */
597 if (!opts
->wine_objdir
)
599 lib_dirs
= strarray_dup(opts
->lib_dirs
);
600 for ( j
= 0; j
< sizeof(stdlibpath
)/sizeof(stdlibpath
[0]); j
++ )
601 strarray_add(lib_dirs
, stdlibpath
[j
]);
605 lib_dirs
= strarray_alloc();
606 strarray_add(lib_dirs
, strmake("%s/dlls", opts
->wine_objdir
));
607 strarray_add(lib_dirs
, strmake("%s/libs/wine", opts
->wine_objdir
));
608 strarray_addall(lib_dirs
, opts
->lib_dirs
);
611 /* mark the files with their appropriate type */
612 spec_file
= lang
= 0;
613 files
= strarray_alloc();
614 link_args
= strarray_alloc();
615 for ( j
= 0; j
< opts
->files
->size
; j
++ )
617 const char* file
= opts
->files
->base
[j
];
620 switch(get_file_type(file
))
625 error("Only one spec file can be specified\n");
629 /* FIXME: invoke wrc to build it */
630 error("Can't compile .rc file at the moment: %s\n", file
);
633 strarray_add(files
, strmake("-r%s", file
));
636 strarray_add(files
, strmake("-o%s", file
));
639 strarray_add(files
, strmake("-a%s", file
));
642 strarray_add(files
, strmake("-s%s", file
));
645 error("File does not exist: %s\n", file
);
648 file
= compile_to_object(opts
, file
, lang
);
649 strarray_add(files
, strmake("-o%s", file
));
653 else if (file
[1] == 'l')
654 add_library(opts
, lib_dirs
, files
, file
+ 2 );
655 else if (file
[1] == 'x')
658 if (opts
->shared
&& !spec_file
)
659 error("A spec file is currently needed in shared mode\n");
661 /* building for Windows is completely different */
663 if (opts
->target_platform
== PLATFORM_WINDOWS
)
665 strarray
*resources
= strarray_alloc();
666 char *res_o_name
= NULL
;
670 /* run winebuild to generate the .def file */
671 char *spec_def_name
= get_temp_file(output_name
, ".spec.def");
672 spec_args
= get_winebuild_args( opts
);
673 strarray_add(spec_args
, "--def");
674 strarray_add(spec_args
, "-o");
675 strarray_add(spec_args
, spec_def_name
);
678 strarray_add(spec_args
, "--export");
679 strarray_add(spec_args
, spec_file
);
681 spawn(opts
->prefix
, spec_args
, 0);
682 strarray_free(spec_args
);
684 if (opts
->target
) strarray_add(link_args
, strmake("%s-dllwrap", opts
->target
));
685 else strarray_add(link_args
, "dllwrap");
686 if (verbose
) strarray_add(link_args
, "-v");
687 strarray_add(link_args
, "-k");
688 strarray_add(link_args
, "--def");
689 strarray_add(link_args
, spec_def_name
);
693 strarray_addall(link_args
, get_translator(opts
));
694 strarray_add(link_args
, opts
->gui_app
? "-mwindows" : "-mconsole");
695 if (opts
->use_msvcrt
) strarray_add(link_args
, "-mno-cygwin");
696 if (opts
->nodefaultlibs
) strarray_add(link_args
, "-nodefaultlibs");
699 for ( j
= 0 ; j
< opts
->linker_args
->size
; j
++ )
700 strarray_add(link_args
, opts
->linker_args
->base
[j
]);
702 strarray_add(link_args
, "-o");
703 strarray_add(link_args
, output_file
);
705 if (opts
->image_base
)
706 strarray_add(link_args
, strmake("-Wl,--image-base,%s", opts
->image_base
));
708 if (opts
->large_address_aware
) strarray_add( link_args
, "-Wl,--large-address-aware" );
710 if (opts
->unicode_app
&& !opts
->shared
)
711 strarray_add(link_args
, mingw_unicode_hack(opts
));
713 for ( j
= 0; j
< lib_dirs
->size
; j
++ )
714 strarray_add(link_args
, strmake("-L%s", lib_dirs
->base
[j
]));
716 if (!opts
->nostartfiles
) add_library(opts
, lib_dirs
, files
, "winecrt0");
717 if (opts
->shared
&& !opts
->nostdlib
) add_library(opts
, lib_dirs
, files
, "wine");
719 for ( j
= 0; j
< files
->size
; j
++ )
721 const char* name
= files
->base
[j
] + 2;
723 switch(files
->base
[j
][1])
728 strarray_add(link_args
, strmake("-l%s", name
));
731 strarray_add(link_args
, name
);
734 if (strchr(name
, '/'))
736 /* turn the path back into -Ldir -lfoo options
737 * this makes sure that we use the specified libs even
738 * when mingw adds its own import libs to the link */
739 char *lib
= xstrdup( name
);
740 char *p
= strrchr( lib
, '/' );
743 if (!strncmp( p
, "lib", 3 ))
745 char *ext
= strrchr( p
, '.' );
749 strarray_add(link_args
, strmake("-L%s", lib
));
750 strarray_add(link_args
, strmake("-l%s", p
));
756 strarray_add(link_args
, name
);
761 res_o_name
= get_temp_file( output_name
, ".res.o" );
762 strarray_add( link_args
, res_o_name
);
764 strarray_add( resources
, name
);
769 if (res_o_name
) compile_resources_to_object( opts
, resources
, res_o_name
);
771 spawn(opts
->prefix
, link_args
, 0);
772 strarray_free (resources
);
773 strarray_free (link_args
);
774 strarray_free (lib_dirs
);
775 strarray_free (files
);
779 /* add the default libraries, if needed */
780 if (!opts
->nostdlib
&& opts
->use_msvcrt
) add_library(opts
, lib_dirs
, files
, "msvcrt");
782 if (!opts
->wine_objdir
&& !opts
->nodefaultlibs
)
786 add_library(opts
, lib_dirs
, files
, "shell32");
787 add_library(opts
, lib_dirs
, files
, "comdlg32");
788 add_library(opts
, lib_dirs
, files
, "gdi32");
790 add_library(opts
, lib_dirs
, files
, "advapi32");
791 add_library(opts
, lib_dirs
, files
, "user32");
792 add_library(opts
, lib_dirs
, files
, "kernel32");
795 if (!opts
->nostartfiles
) add_library(opts
, lib_dirs
, files
, "winecrt0");
796 if (!opts
->nostdlib
) add_library(opts
, lib_dirs
, files
, "wine");
798 /* run winebuild to generate the .spec.o file */
799 spec_args
= get_winebuild_args( opts
);
800 spec_o_name
= get_temp_file(output_name
, ".spec.o");
801 if (opts
->force_pointer_size
)
802 strarray_add(spec_args
, strmake("-m%u", 8 * opts
->force_pointer_size
));
803 strarray_addall(spec_args
, strarray_fromstring(DLLFLAGS
, " "));
804 strarray_add(spec_args
, opts
->shared
? "--dll" : "--exe");
805 strarray_add(spec_args
, "-o");
806 strarray_add(spec_args
, spec_o_name
);
809 strarray_add(spec_args
, "-E");
810 strarray_add(spec_args
, spec_file
);
815 strarray_add(spec_args
, "-F");
816 strarray_add(spec_args
, output_name
);
817 strarray_add(spec_args
, "--subsystem");
818 strarray_add(spec_args
, opts
->gui_app
? "windows" : "console");
819 if (opts
->unicode_app
)
821 strarray_add(spec_args
, "--entry");
822 strarray_add(spec_args
, "__wine_spec_exe_wentry");
824 if (opts
->large_address_aware
) strarray_add( spec_args
, "--large-address-aware" );
827 for ( j
= 0; j
< lib_dirs
->size
; j
++ )
828 strarray_add(spec_args
, strmake("-L%s", lib_dirs
->base
[j
]));
830 for ( j
= 0 ; j
< opts
->winebuild_args
->size
; j
++ )
831 strarray_add(spec_args
, opts
->winebuild_args
->base
[j
]);
833 /* add resource files */
834 for ( j
= 0; j
< files
->size
; j
++ )
835 if (files
->base
[j
][1] == 'r') strarray_add(spec_args
, files
->base
[j
]);
837 /* add other files */
838 strarray_add(spec_args
, "--");
839 for ( j
= 0; j
< files
->size
; j
++ )
841 switch(files
->base
[j
][1])
846 strarray_add(spec_args
, files
->base
[j
] + 2);
851 spawn(opts
->prefix
, spec_args
, 0);
852 strarray_free (spec_args
);
854 /* link everything together now */
855 strarray_addall(link_args
, get_translator(opts
));
856 strarray_addall(link_args
, strarray_fromstring(LDDLLFLAGS
, " "));
858 strarray_add(link_args
, "-o");
859 strarray_add(link_args
, strmake("%s.so", output_file
));
861 for ( j
= 0 ; j
< opts
->linker_args
->size
; j
++ )
862 strarray_add(link_args
, opts
->linker_args
->base
[j
]);
864 switch (opts
->target_platform
)
867 if (opts
->image_base
)
869 strarray_add(link_args
, "-image_base");
870 strarray_add(link_args
, opts
->image_base
);
873 case PLATFORM_SOLARIS
:
875 char *mapfile
= get_temp_file( output_name
, ".map" );
876 const char *align
= opts
->section_align
? opts
->section_align
: "0x1000";
878 create_file( mapfile
, 0644, "text = A%s;\ndata = A%s;\n", align
, align
);
879 strarray_add(link_args
, strmake("-Wl,-M,%s", mapfile
));
880 strarray_add(tmp_files
, mapfile
);
887 for ( j
= 0; j
< lib_dirs
->size
; j
++ )
888 strarray_add(link_args
, strmake("-L%s", lib_dirs
->base
[j
]));
890 strarray_add(link_args
, spec_o_name
);
892 for ( j
= 0; j
< files
->size
; j
++ )
894 const char* name
= files
->base
[j
] + 2;
895 switch(files
->base
[j
][1])
899 strarray_add(link_args
, strmake("-l%s", name
));
903 strarray_add(link_args
, name
);
910 strarray_add(link_args
, "-lm");
911 strarray_add(link_args
, "-lc");
914 spawn(opts
->prefix
, link_args
, 0);
915 strarray_free (link_args
);
917 /* set the base address */
918 if (opts
->image_base
)
920 const char *prelink
= PRELINK
;
921 if (prelink
[0] && strcmp(prelink
,"false"))
923 strarray
*prelink_args
= strarray_alloc();
924 strarray_add(prelink_args
, prelink
);
925 strarray_add(prelink_args
, "--reloc-only");
926 strarray_add(prelink_args
, opts
->image_base
);
927 strarray_add(prelink_args
, strmake("%s.so", output_file
));
928 spawn(opts
->prefix
, prelink_args
, 1);
929 strarray_free(prelink_args
);
933 /* create the loader script */
934 if (generate_app_loader
)
935 create_file(output_file
, 0755, app_loader_template
, strmake("%s.so", output_name
));
939 static void forward(int argc
, char **argv
, struct options
* opts
)
941 strarray
* args
= strarray_alloc();
944 strarray_addall(args
, get_translator(opts
));
946 for( j
= 1; j
< argc
; j
++ )
947 strarray_add(args
, argv
[j
]);
949 spawn(opts
->prefix
, args
, 0);
950 strarray_free (args
);
955 * object-file-name -llibrary -nostartfiles -nodefaultlibs
956 * -nostdlib -s -static -static-libgcc -shared -shared-libgcc
957 * -symbolic -Wl,option -Xlinker option -u symbol
960 static int is_linker_arg(const char* arg
)
962 static const char* link_switches
[] =
964 "-nostartfiles", "-nodefaultlibs", "-nostdlib", "-s",
965 "-static", "-static-libgcc", "-shared", "-shared-libgcc", "-symbolic",
978 if (strncmp("-Wl,", arg
, 4) == 0) return 1;
981 if (strcmp("-Xlinker", arg
) == 0) return 1;
984 if (strcmp("-arch", arg
) == 0) return 1;
988 for (j
= 0; j
< sizeof(link_switches
)/sizeof(link_switches
[0]); j
++)
989 if (strcmp(link_switches
[j
], arg
) == 0) return 1;
996 * -b machine -V version
998 static int is_target_arg(const char* arg
)
1000 return arg
[1] == 'b' || arg
[2] == 'V';
1006 * -Bprefix -Idir -I- -Ldir -specs=file
1008 static int is_directory_arg(const char* arg
)
1010 return arg
[1] == 'B' || arg
[1] == 'L' || arg
[1] == 'I' || strncmp("-specs=", arg
, 7) == 0;
1015 * -mno-cygwin -mwindows -mconsole -mthreads -municode
1017 static int is_mingw_arg(const char* arg
)
1019 static const char* mingw_switches
[] =
1021 "-mno-cygwin", "-mwindows", "-mconsole", "-mthreads", "-municode"
1025 for (j
= 0; j
< sizeof(mingw_switches
)/sizeof(mingw_switches
[0]); j
++)
1026 if (strcmp(mingw_switches
[j
], arg
) == 0) return 1;
1031 static void parse_target_option( struct options
*opts
, const char *target
)
1033 char *p
, *platform
, *spec
= xstrdup( target
);
1036 /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
1038 /* get the CPU part */
1040 if (!(p
= strchr( spec
, '-' ))) error( "Invalid target specification '%s'\n", target
);
1042 for (i
= 0; i
< sizeof(cpu_names
)/sizeof(cpu_names
[0]); i
++)
1044 if (!strcmp( cpu_names
[i
].name
, spec
))
1046 opts
->target_cpu
= cpu_names
[i
].cpu
;
1050 if (i
== sizeof(cpu_names
)/sizeof(cpu_names
[0]))
1051 error( "Unrecognized CPU '%s'\n", spec
);
1053 if ((p
= strrchr( p
, '-' ))) platform
= p
+ 1;
1055 /* get the OS part */
1057 opts
->target_platform
= PLATFORM_UNSPECIFIED
; /* default value */
1058 for (i
= 0; i
< sizeof(platform_names
)/sizeof(platform_names
[0]); i
++)
1060 if (!strncmp( platform_names
[i
].name
, platform
, strlen(platform_names
[i
].name
) ))
1062 opts
->target_platform
= platform_names
[i
].platform
;
1068 opts
->target
= xstrdup( target
);
1071 int main(int argc
, char **argv
)
1073 int i
, c
, next_is_arg
= 0, linking
= 1;
1074 int raw_compiler_arg
, raw_linker_arg
;
1075 const char* option_arg
;
1076 struct options opts
;
1081 signal( SIGHUP
, exit_on_signal
);
1083 signal( SIGTERM
, exit_on_signal
);
1084 signal( SIGINT
, exit_on_signal
);
1085 #ifdef HAVE_SIGADDSET
1086 sigemptyset( &signal_mask
);
1087 sigaddset( &signal_mask
, SIGHUP
);
1088 sigaddset( &signal_mask
, SIGTERM
);
1089 sigaddset( &signal_mask
, SIGINT
);
1092 /* setup tmp file removal at exit */
1093 tmp_files
= strarray_alloc();
1094 atexit(clean_temp_files
);
1096 /* initialize options */
1097 memset(&opts
, 0, sizeof(opts
));
1098 opts
.target_cpu
= build_cpu
;
1099 opts
.target_platform
= build_platform
;
1100 opts
.lib_dirs
= strarray_alloc();
1101 opts
.files
= strarray_alloc();
1102 opts
.linker_args
= strarray_alloc();
1103 opts
.compiler_args
= strarray_alloc();
1104 opts
.winebuild_args
= strarray_alloc();
1106 /* determine the processor type */
1107 if (strendswith(argv
[0], "winecpp")) opts
.processor
= proc_cpp
;
1108 else if (strendswith(argv
[0], "++")) opts
.processor
= proc_cxx
;
1111 for ( i
= 1 ; i
< argc
; i
++ )
1113 if (argv
[i
][0] == '-') /* option */
1115 /* determine if tihs switch is followed by a separate argument */
1120 case 'x': case 'o': case 'D': case 'U':
1121 case 'I': case 'A': case 'l': case 'u':
1122 case 'b': case 'V': case 'G': case 'L':
1123 case 'B': case 'R': case 'z':
1124 if (argv
[i
][2]) option_arg
= &argv
[i
][2];
1125 else next_is_arg
= 1;
1131 if (strcmp("-aux-info", argv
[i
]) == 0)
1133 if (strcmp("-arch", argv
[i
]) == 0)
1137 if (strcmp("-Xlinker", argv
[i
]) == 0)
1142 if (c
== 'F' || c
== 'T' || c
== 'Q')
1144 if (argv
[i
][3]) option_arg
= &argv
[i
][3];
1145 else next_is_arg
= 1;
1149 if (strcmp("-framework", argv
[i
]) == 0)
1153 if (next_is_arg
) option_arg
= argv
[i
+1];
1155 /* determine what options go 'as is' to the linker & the compiler */
1156 raw_compiler_arg
= raw_linker_arg
= 0;
1157 if (is_linker_arg(argv
[i
]))
1163 if (is_directory_arg(argv
[i
]) || is_target_arg(argv
[i
]))
1165 raw_compiler_arg
= !is_mingw_arg(argv
[i
]);
1168 /* these things we handle explicitly so we don't pass them 'as is' */
1169 if (argv
[i
][1] == 'l' || argv
[i
][1] == 'I' || argv
[i
][1] == 'L')
1171 if (argv
[i
][1] == 'c' || argv
[i
][1] == 'L')
1172 raw_compiler_arg
= 0;
1173 if (argv
[i
][1] == 'o' || argv
[i
][1] == 'b')
1174 raw_compiler_arg
= raw_linker_arg
= 0;
1176 /* do a bit of semantic analysis */
1180 str
= strdup(option_arg
);
1181 if (strendswith(str
, "/tools/winebuild"))
1183 char *objdir
= strdup(str
);
1184 objdir
[strlen(objdir
) - sizeof("/tools/winebuild") + 1] = 0;
1185 opts
.wine_objdir
= objdir
;
1186 /* don't pass it to the compiler, this generates warnings */
1187 raw_compiler_arg
= raw_linker_arg
= 0;
1189 if (strendswith(str
, "/")) str
[strlen(str
) - 1] = 0;
1190 if (!opts
.prefix
) opts
.prefix
= strarray_alloc();
1191 strarray_add(opts
.prefix
, str
);
1194 parse_target_option( &opts
, option_arg
);
1196 case 'c': /* compile or assemble */
1197 if (argv
[i
][2] == 0) opts
.compile_only
= 1;
1199 case 'S': /* generate assembler code */
1200 case 'E': /* preprocess only */
1201 if (argv
[i
][2] == 0) linking
= 0;
1204 if (strcmp("-fno-short-wchar", argv
[i
]) == 0)
1205 opts
.noshortwchar
= 1;
1208 strarray_add(opts
.files
, strmake("-l%s", option_arg
));
1211 strarray_add(opts
.lib_dirs
, option_arg
);
1213 case 'M': /* map file generation */
1217 if (strcmp("-mno-cygwin", argv
[i
]) == 0)
1218 opts
.use_msvcrt
= 1;
1219 else if (strcmp("-mwindows", argv
[i
]) == 0)
1221 else if (strcmp("-mconsole", argv
[i
]) == 0)
1223 else if (strcmp("-municode", argv
[i
]) == 0)
1224 opts
.unicode_app
= 1;
1225 else if (strcmp("-m32", argv
[i
]) == 0)
1227 opts
.force_pointer_size
= 4;
1230 else if (strcmp("-m64", argv
[i
]) == 0)
1232 opts
.force_pointer_size
= 8;
1237 if (strcmp("-nostdinc", argv
[i
]) == 0)
1239 else if (strcmp("-nodefaultlibs", argv
[i
]) == 0)
1240 opts
.nodefaultlibs
= 1;
1241 else if (strcmp("-nostdlib", argv
[i
]) == 0)
1243 else if (strcmp("-nostartfiles", argv
[i
]) == 0)
1244 opts
.nostartfiles
= 1;
1247 opts
.output_name
= option_arg
;
1250 if (strcmp("-static", argv
[i
]) == 0)
1252 else if(strcmp("-save-temps", argv
[i
]) == 0)
1254 else if(strcmp("-shared", argv
[i
]) == 0)
1257 raw_compiler_arg
= raw_linker_arg
= 0;
1261 if (argv
[i
][2] == 0) verbose
++;
1264 if (strncmp("-Wl,", argv
[i
], 4) == 0)
1267 strarray
* Wl
= strarray_fromstring(argv
[i
] + 4, ",");
1268 for (j
= 0; j
< Wl
->size
; j
++)
1270 if (!strcmp(Wl
->base
[j
], "--image-base") && j
< Wl
->size
- 1)
1272 opts
.image_base
= strdup( Wl
->base
[++j
] );
1275 if (!strcmp(Wl
->base
[j
], "--section-alignment") && j
< Wl
->size
- 1)
1277 opts
.section_align
= strdup( Wl
->base
[++j
] );
1280 if (!strcmp(Wl
->base
[j
], "--large-address-aware"))
1282 opts
.large_address_aware
= 1;
1285 if (!strcmp(Wl
->base
[j
], "-static")) linking
= -1;
1286 strarray_add(opts
.linker_args
, strmake("-Wl,%s",Wl
->base
[j
]));
1289 raw_compiler_arg
= raw_linker_arg
= 0;
1291 else if (strncmp("-Wb,", argv
[i
], 4) == 0)
1293 strarray
* Wb
= strarray_fromstring(argv
[i
] + 4, ",");
1294 strarray_addall(opts
.winebuild_args
, Wb
);
1296 /* don't pass it to the compiler, it generates errors */
1297 raw_compiler_arg
= raw_linker_arg
= 0;
1301 lang
= strmake("-x%s", option_arg
);
1302 strarray_add(opts
.files
, lang
);
1303 /* we'll pass these flags ourselves, explicitly */
1304 raw_compiler_arg
= raw_linker_arg
= 0;
1307 if (strcmp("-static", argv
[i
]+1) == 0)
1309 else if (!strncmp("--sysroot", argv
[i
], 9) && opts
.wine_objdir
)
1311 if (argv
[i
][9] == '=') opts
.wine_objdir
= argv
[i
] + 10;
1312 else opts
.wine_objdir
= argv
[++i
];
1313 raw_compiler_arg
= raw_linker_arg
= 0;
1318 /* put the arg into the appropriate bucket */
1321 strarray_add(opts
.linker_args
, argv
[i
]);
1322 if (next_is_arg
&& (i
+ 1 < argc
))
1323 strarray_add(opts
.linker_args
, argv
[i
+ 1]);
1325 if (raw_compiler_arg
)
1327 strarray_add(opts
.compiler_args
, argv
[i
]);
1328 if (next_is_arg
&& (i
+ 1 < argc
))
1329 strarray_add(opts
.compiler_args
, argv
[i
+ 1]);
1332 /* skip the next token if it's an argument */
1333 if (next_is_arg
) i
++;
1337 strarray_add(opts
.files
, argv
[i
]);
1341 if (opts
.processor
== proc_cpp
) linking
= 0;
1342 if (linking
== -1) error("Static linking is not supported\n");
1344 if (opts
.files
->size
== 0) forward(argc
, argv
, &opts
);
1345 else if (linking
) build(&opts
);
1346 else compile(&opts
, lang
);