pop b0283e26815279d45d201d5585820bb1d1997663
[wine/hacks.git] / tools / winegcc / winegcc.c
blob396bcc80a9e94f55ba88eb2231a72232718116c1
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 { "x86_64", CPU_x86_64 },
160 { "sparc", CPU_SPARC },
161 { "alpha", CPU_ALPHA },
162 { "powerpc", CPU_POWERPC },
163 { "arm", CPU_ARM }
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 { "mingw32", PLATFORM_WINDOWS },
176 { "windows", PLATFORM_WINDOWS },
177 { "winnt", PLATFORM_WINDOWS }
180 struct options
182 enum processor processor;
183 enum target_cpu target_cpu;
184 enum target_platform target_platform;
185 const char *target;
186 int shared;
187 int use_msvcrt;
188 int nostdinc;
189 int nostdlib;
190 int nostartfiles;
191 int nodefaultlibs;
192 int noshortwchar;
193 int gui_app;
194 int unicode_app;
195 int compile_only;
196 int force_pointer_size;
197 int large_address_aware;
198 const char* wine_objdir;
199 const char* output_name;
200 const char* image_base;
201 const char* section_align;
202 const char* lib_suffix;
203 strarray* prefix;
204 strarray* lib_dirs;
205 strarray* linker_args;
206 strarray* compiler_args;
207 strarray* winebuild_args;
208 strarray* files;
211 #ifdef __i386__
212 static const enum target_cpu build_cpu = CPU_x86;
213 #elif defined(__x86_64__)
214 static const enum target_cpu build_cpu = CPU_x86_64;
215 #elif defined(__sparc__)
216 static const enum target_cpu build_cpu = CPU_SPARC;
217 #elif defined(__ALPHA__)
218 static const enum target_cpu build_cpu = CPU_ALPHA;
219 #elif defined(__powerpc__)
220 static const enum target_cpu build_cpu = CPU_POWERPC;
221 #elif defined(__arm__)
222 static const enum target_cpu build_cpu = CPU_ARM;
223 #else
224 #error Unsupported CPU
225 #endif
227 #ifdef __APPLE__
228 static enum target_platform build_platform = PLATFORM_APPLE;
229 #elif defined(__sun)
230 static enum target_platform build_platform = PLATFORM_SOLARIS;
231 #elif defined(_WIN32)
232 static enum target_platform build_platform = PLATFORM_WINDOWS;
233 #else
234 static enum target_platform build_platform = PLATFORM_UNSPECIFIED;
235 #endif
237 static void clean_temp_files(void)
239 unsigned int i;
241 if (keep_generated) return;
243 for (i = 0; i < tmp_files->size; i++)
244 unlink(tmp_files->base[i]);
247 /* clean things up when aborting on a signal */
248 static void exit_on_signal( int sig )
250 exit(1); /* this will call the atexit functions */
253 static char* get_temp_file(const char* prefix, const char* suffix)
255 int fd;
256 char* tmp = strmake("%s-XXXXXX%s", prefix, suffix);
258 #ifdef HAVE_SIGPROCMASK
259 sigset_t old_set;
260 /* block signals while manipulating the temp files list */
261 sigprocmask( SIG_BLOCK, &signal_mask, &old_set );
262 #endif
263 fd = mkstemps( tmp, strlen(suffix) );
264 if (fd == -1)
266 /* could not create it in current directory, try in /tmp */
267 free(tmp);
268 tmp = strmake("/tmp/%s-XXXXXX%s", prefix, suffix);
269 fd = mkstemps( tmp, strlen(suffix) );
270 if (fd == -1) error( "could not create temp file\n" );
272 close( fd );
273 strarray_add(tmp_files, tmp);
274 #ifdef HAVE_SIGPROCMASK
275 sigprocmask( SIG_SETMASK, &old_set, NULL );
276 #endif
277 return tmp;
280 static const strarray* get_translator(struct options *opts)
282 const char *str = NULL;
283 strarray *ret;
285 switch(opts->processor)
287 case proc_cpp:
288 if (opts->target) str = strmake( "%s-cpp", opts->target );
289 else str = CPP;
290 break;
291 case proc_cc:
292 case proc_as:
293 if (opts->target) str = strmake( "%s-gcc", opts->target );
294 else str = CC;
295 break;
296 case proc_cxx:
297 if (opts->target) str = strmake( "%s-g++", opts->target );
298 else str = CXX;
299 break;
300 default:
301 assert(0);
303 ret = strarray_fromstring( str, " " );
304 if (opts->force_pointer_size)
305 strarray_add( ret, strmake("-m%u", 8 * opts->force_pointer_size ));
306 return ret;
309 static void compile(struct options* opts, const char* lang)
311 strarray* comp_args = strarray_alloc();
312 unsigned int j;
313 int gcc_defs = 0;
315 strarray_addall(comp_args, get_translator(opts));
316 switch(opts->processor)
318 case proc_cpp: gcc_defs = 1; break;
319 case proc_as: gcc_defs = 0; break;
320 /* Note: if the C compiler is gcc we assume the C++ compiler is too */
321 /* mixing different C and C++ compilers isn't supported in configure anyway */
322 case proc_cc:
323 case proc_cxx:
324 for ( j = 0; !gcc_defs && j < comp_args->size; j++ )
326 const char *cc = comp_args->base[j];
328 gcc_defs = strendswith(cc, "gcc") || strendswith(cc, "g++");
330 break;
333 if (opts->target_platform == PLATFORM_WINDOWS) goto no_compat_defines;
335 if (opts->processor != proc_cpp)
337 if (gcc_defs && !opts->wine_objdir && !opts->noshortwchar)
339 strarray_add(comp_args, "-fshort-wchar");
340 strarray_add(comp_args, "-DWINE_UNICODE_NATIVE");
342 strarray_addall(comp_args, strarray_fromstring(DLLFLAGS, " "));
345 if (opts->target_cpu == CPU_x86_64)
347 strarray_add(comp_args, "-DWIN64");
348 strarray_add(comp_args, "-D_WIN64");
349 strarray_add(comp_args, "-D__WIN64");
350 strarray_add(comp_args, "-D__WIN64__");
353 strarray_add(comp_args, "-DWIN32");
354 strarray_add(comp_args, "-D_WIN32");
355 strarray_add(comp_args, "-D__WIN32");
356 strarray_add(comp_args, "-D__WIN32__");
357 strarray_add(comp_args, "-D__WINNT");
358 strarray_add(comp_args, "-D__WINNT__");
360 if (gcc_defs)
362 if (opts->target_cpu == CPU_x86_64)
364 strarray_add(comp_args, "-D__stdcall=__attribute__((ms_abi))");
365 strarray_add(comp_args, "-D__cdecl=__attribute__((ms_abi))");
366 strarray_add(comp_args, "-D_stdcall=__attribute__((ms_abi))");
367 strarray_add(comp_args, "-D_cdecl=__attribute__((ms_abi))");
368 strarray_add(comp_args, "-D__fastcall=__attribute__((ms_abi))");
369 strarray_add(comp_args, "-D_fastcall=__attribute__((ms_abi))");
371 else if (opts->target_platform == PLATFORM_APPLE)
373 /* Mac OS X uses a 16-byte aligned stack and not a 4-byte one */
374 strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
375 strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
376 strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
377 strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
379 else
381 strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__))");
382 strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__))");
383 strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__))");
384 strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__))");
387 strarray_add(comp_args, "-D__fastcall=__attribute__((__fastcall__))");
388 strarray_add(comp_args, "-D_fastcall=__attribute__((__fastcall__))");
389 strarray_add(comp_args, "-D__declspec(x)=__declspec_##x");
390 strarray_add(comp_args, "-D__declspec_align(x)=__attribute__((aligned(x)))");
391 strarray_add(comp_args, "-D__declspec_allocate(x)=__attribute__((section(x)))");
392 strarray_add(comp_args, "-D__declspec_deprecated=__attribute__((deprecated))");
393 strarray_add(comp_args, "-D__declspec_dllimport=__attribute__((dllimport))");
394 strarray_add(comp_args, "-D__declspec_dllexport=__attribute__((dllexport))");
395 strarray_add(comp_args, "-D__declspec_naked=__attribute__((naked))");
396 strarray_add(comp_args, "-D__declspec_noinline=__attribute__((noinline))");
397 strarray_add(comp_args, "-D__declspec_noreturn=__attribute__((noreturn))");
398 strarray_add(comp_args, "-D__declspec_nothrow=__attribute__((nothrow))");
399 strarray_add(comp_args, "-D__declspec_novtable=__attribute__(())"); /* ignore it */
400 strarray_add(comp_args, "-D__declspec_selectany=__attribute__((weak))");
401 strarray_add(comp_args, "-D__declspec_thread=__thread");
404 strarray_add(comp_args, "-D__int8=char");
405 strarray_add(comp_args, "-D__int16=short");
406 strarray_add(comp_args, "-D__int32=int");
407 if (opts->target_cpu == CPU_x86_64)
408 strarray_add(comp_args, "-D__int64=long");
409 else
410 strarray_add(comp_args, "-D__int64=long long");
412 no_compat_defines:
413 strarray_add(comp_args, "-D__WINE__");
415 /* options we handle explicitly */
416 if (opts->compile_only)
417 strarray_add(comp_args, "-c");
418 if (opts->output_name)
420 strarray_add(comp_args, "-o");
421 strarray_add(comp_args, opts->output_name);
424 /* the rest of the pass-through parameters */
425 for ( j = 0 ; j < opts->compiler_args->size ; j++ )
426 strarray_add(comp_args, opts->compiler_args->base[j]);
428 /* the language option, if any */
429 if (lang && strcmp(lang, "-xnone"))
430 strarray_add(comp_args, lang);
432 /* last, but not least, the files */
433 for ( j = 0; j < opts->files->size; j++ )
435 if (opts->files->base[j][0] != '-')
436 strarray_add(comp_args, opts->files->base[j]);
439 /* standard includes come last in the include search path */
440 if (!opts->wine_objdir && !opts->nostdinc)
442 if (opts->use_msvcrt)
444 if (gcc_defs) strarray_add(comp_args, "-isystem" INCLUDEDIR "/msvcrt");
445 else strarray_add(comp_args, "-I" INCLUDEDIR "/msvcrt");
446 strarray_add(comp_args, "-D__MSVCRT__");
448 strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/windows" : "-I" INCLUDEDIR "/windows" );
450 else if (opts->wine_objdir)
451 strarray_add(comp_args, strmake("-I%s/include", opts->wine_objdir) );
453 spawn(opts->prefix, comp_args, 0);
454 strarray_free(comp_args);
457 static const char* compile_to_object(struct options* opts, const char* file, const char* lang)
459 struct options copts;
460 char* base_name;
462 /* make a copy so we don't change any of the initial stuff */
463 /* a shallow copy is exactly what we want in this case */
464 base_name = get_basename(file);
465 copts = *opts;
466 copts.output_name = get_temp_file(base_name, ".o");
467 copts.compile_only = 1;
468 copts.files = strarray_alloc();
469 strarray_add(copts.files, file);
470 compile(&copts, lang);
471 strarray_free(copts.files);
472 free(base_name);
474 return copts.output_name;
477 /* return the initial set of options needed to run winebuild */
478 static strarray *get_winebuild_args(struct options *opts)
480 const char* winebuild = getenv("WINEBUILD");
481 strarray *spec_args = strarray_alloc();
483 if (!winebuild) winebuild = "winebuild";
484 strarray_add( spec_args, winebuild );
485 if (verbose) strarray_add( spec_args, "-v" );
486 if (keep_generated) strarray_add( spec_args, "--save-temps" );
487 if (opts->target)
489 strarray_add( spec_args, "--target" );
490 strarray_add( spec_args, opts->target );
492 return spec_args;
495 static const char* compile_resources_to_object(struct options* opts, const strarray *resources,
496 const char *res_o_name)
498 strarray *winebuild_args = get_winebuild_args( opts );
500 strarray_add( winebuild_args, "--resources" );
501 strarray_add( winebuild_args, "-o" );
502 strarray_add( winebuild_args, res_o_name );
503 strarray_addall( winebuild_args, resources );
505 spawn( opts->prefix, winebuild_args, 0 );
506 strarray_free( winebuild_args );
507 return res_o_name;
510 /* check if there is a static lib associated to a given dll */
511 static char *find_static_lib( const char *dll )
513 char *lib = strmake("%s.a", dll);
514 if (get_file_type(lib) == file_arh) return lib;
515 free( lib );
516 return NULL;
519 /* add specified library to the list of files */
520 static void add_library( struct options *opts, strarray *lib_dirs, strarray *files, const char *library )
522 char *static_lib, *fullname = 0;
524 switch(get_lib_type(opts->target_platform, lib_dirs, library, opts->lib_suffix, &fullname))
526 case file_arh:
527 strarray_add(files, strmake("-a%s", fullname));
528 break;
529 case file_dll:
530 strarray_add(files, strmake("-d%s", fullname));
531 if ((static_lib = find_static_lib(fullname)))
533 strarray_add(files, strmake("-a%s",static_lib));
534 free(static_lib);
536 break;
537 case file_so:
538 default:
539 /* keep it anyway, the linker may know what to do with it */
540 strarray_add(files, strmake("-l%s", library));
541 break;
543 free(fullname);
546 /* hack a main or WinMain function to work around Mingw's lack of Unicode support */
547 static const char *mingw_unicode_hack( struct options *opts )
549 char *main_stub = get_temp_file( opts->output_name, ".c" );
551 create_file( main_stub, 0644,
552 "#include <stdlib.h>\n"
553 "extern int wmain(int,wchar_t**);\n"
554 "int main( int argc, char *argv[] )\n{\n"
555 " return wmain( argc, __wargv );\n}\n" );
556 return compile_to_object( opts, main_stub, NULL );
559 static void build(struct options* opts)
561 static const char *stdlibpath[] = { DLLDIR, LIBDIR, "/usr/lib", "/usr/local/lib", "/lib" };
562 strarray *lib_dirs, *files;
563 strarray *spec_args, *link_args;
564 char *output_file;
565 const char *spec_o_name;
566 const char *output_name, *spec_file, *lang;
567 int generate_app_loader = 1;
568 int fake_module = 0;
569 unsigned int j;
571 /* NOTE: for the files array we'll use the following convention:
572 * -axxx: xxx is an archive (.a)
573 * -dxxx: xxx is a DLL (.def)
574 * -lxxx: xxx is an unsorted library
575 * -oxxx: xxx is an object (.o)
576 * -rxxx: xxx is a resource (.res)
577 * -sxxx: xxx is a shared lib (.so)
578 * -xlll: lll is the language (c, c++, etc.)
581 output_file = strdup( opts->output_name ? opts->output_name : "a.out" );
583 /* 'winegcc -o app xxx.exe.so' only creates the load script */
584 if (opts->files->size == 1 && strendswith(opts->files->base[0], ".exe.so"))
586 create_file(output_file, 0755, app_loader_template, opts->files->base[0]);
587 return;
590 /* generate app loader only for .exe */
591 if (opts->shared || strendswith(output_file, ".so"))
592 generate_app_loader = 0;
594 if (strendswith(output_file, ".fake")) fake_module = 1;
596 /* normalize the filename a bit: strip .so, ensure it has proper ext */
597 if (strendswith(output_file, ".so"))
598 output_file[strlen(output_file) - 3] = 0;
599 if ((output_name = strrchr(output_file, '/'))) output_name++;
600 else output_name = output_file;
601 if (!strchr(output_name, '.'))
602 output_file = strmake("%s.%s", output_file, opts->shared ? "dll" : "exe");
604 /* get the filename from the path */
605 if ((output_name = strrchr(output_file, '/'))) output_name++;
606 else output_name = output_file;
608 /* prepare the linking path */
609 if (!opts->wine_objdir)
611 lib_dirs = strarray_dup(opts->lib_dirs);
612 for ( j = 0; j < sizeof(stdlibpath)/sizeof(stdlibpath[0]); j++ )
613 strarray_add(lib_dirs, stdlibpath[j]);
615 else
617 lib_dirs = strarray_alloc();
618 strarray_add(lib_dirs, strmake("%s/dlls", opts->wine_objdir));
619 strarray_add(lib_dirs, strmake("%s/libs/wine", opts->wine_objdir));
620 strarray_addall(lib_dirs, opts->lib_dirs);
623 /* mark the files with their appropriate type */
624 spec_file = lang = 0;
625 files = strarray_alloc();
626 link_args = strarray_alloc();
627 for ( j = 0; j < opts->files->size; j++ )
629 const char* file = opts->files->base[j];
630 if (file[0] != '-')
632 switch(get_file_type(file))
634 case file_def:
635 case file_spec:
636 if (spec_file)
637 error("Only one spec file can be specified\n");
638 spec_file = file;
639 break;
640 case file_rc:
641 /* FIXME: invoke wrc to build it */
642 error("Can't compile .rc file at the moment: %s\n", file);
643 break;
644 case file_res:
645 strarray_add(files, strmake("-r%s", file));
646 break;
647 case file_obj:
648 strarray_add(files, strmake("-o%s", file));
649 break;
650 case file_arh:
651 strarray_add(files, strmake("-a%s", file));
652 break;
653 case file_so:
654 strarray_add(files, strmake("-s%s", file));
655 break;
656 case file_na:
657 error("File does not exist: %s\n", file);
658 break;
659 default:
660 file = compile_to_object(opts, file, lang);
661 strarray_add(files, strmake("-o%s", file));
662 break;
665 else if (file[1] == 'l')
666 add_library(opts, lib_dirs, files, file + 2 );
667 else if (file[1] == 'x')
668 lang = file;
670 if (opts->shared && !spec_file)
671 error("A spec file is currently needed in shared mode\n");
673 /* building for Windows is completely different */
675 if (opts->target_platform == PLATFORM_WINDOWS)
677 strarray *resources = strarray_alloc();
678 char *res_o_name = NULL;
680 if (opts->shared)
682 /* run winebuild to generate the .def file */
683 char *spec_def_name = get_temp_file(output_name, ".spec.def");
684 spec_args = get_winebuild_args( opts );
685 strarray_add(spec_args, "--def");
686 strarray_add(spec_args, "-o");
687 strarray_add(spec_args, spec_def_name);
688 if (spec_file)
690 strarray_add(spec_args, "--export");
691 strarray_add(spec_args, spec_file);
693 spawn(opts->prefix, spec_args, 0);
694 strarray_free(spec_args);
696 if (opts->target) strarray_add(link_args, strmake("%s-dllwrap", opts->target));
697 else strarray_add(link_args, "dllwrap");
698 if (verbose) strarray_add(link_args, "-v");
699 strarray_add(link_args, "-k");
700 strarray_add(link_args, "--def");
701 strarray_add(link_args, spec_def_name);
703 else
705 strarray_addall(link_args, get_translator(opts));
706 strarray_add(link_args, opts->gui_app ? "-mwindows" : "-mconsole");
707 if (opts->nodefaultlibs) strarray_add(link_args, "-nodefaultlibs");
710 for ( j = 0 ; j < opts->linker_args->size ; j++ )
711 strarray_add(link_args, opts->linker_args->base[j]);
713 strarray_add(link_args, "-o");
714 strarray_add(link_args, output_file);
716 if (opts->image_base)
717 strarray_add(link_args, strmake("-Wl,--image-base,%s", opts->image_base));
719 if (opts->large_address_aware) strarray_add( link_args, "-Wl,--large-address-aware" );
721 if (opts->unicode_app && !opts->shared)
722 strarray_add(link_args, mingw_unicode_hack(opts));
724 for ( j = 0; j < lib_dirs->size; j++ )
725 strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
727 if (!opts->nostartfiles) add_library(opts, lib_dirs, files, "winecrt0");
728 if (opts->shared && !opts->nostdlib) add_library(opts, lib_dirs, files, "wine");
730 for ( j = 0; j < files->size; j++ )
732 const char* name = files->base[j] + 2;
734 switch(files->base[j][1])
736 case 'l':
737 case 's':
738 case 'd':
739 strarray_add(link_args, strmake("-l%s", name));
740 break;
741 case 'o':
742 strarray_add(link_args, name);
743 break;
744 case 'a':
745 if (strchr(name, '/'))
747 /* turn the path back into -Ldir -lfoo options
748 * this makes sure that we use the specified libs even
749 * when mingw adds its own import libs to the link */
750 char *lib = xstrdup( name );
751 char *p = strrchr( lib, '/' );
753 *p++ = 0;
754 if (!strncmp( p, "lib", 3 ))
756 char *ext = strrchr( p, '.' );
758 if (ext) *ext = 0;
759 p += 3;
760 strarray_add(link_args, strmake("-L%s", lib ));
761 strarray_add(link_args, strmake("-l%s", p ));
762 free( lib );
763 break;
765 free( lib );
767 strarray_add(link_args, name);
768 break;
769 case 'r':
770 if (!res_o_name)
772 res_o_name = get_temp_file( output_name, ".res.o" );
773 strarray_add( link_args, res_o_name );
775 strarray_add( resources, name );
776 break;
779 if (!opts->shared && (opts->use_msvcrt || opts->unicode_app)) strarray_add(link_args, "-lmsvcrt");
781 if (res_o_name) compile_resources_to_object( opts, resources, res_o_name );
783 spawn(opts->prefix, link_args, 0);
784 strarray_free (resources);
785 strarray_free (link_args);
786 strarray_free (lib_dirs);
787 strarray_free (files);
788 return;
791 /* add the default libraries, if needed */
792 if (!opts->nostdlib && opts->use_msvcrt) add_library(opts, lib_dirs, files, "msvcrt");
794 if (!opts->wine_objdir && !opts->nodefaultlibs)
796 if (opts->gui_app)
798 add_library(opts, lib_dirs, files, "shell32");
799 add_library(opts, lib_dirs, files, "comdlg32");
800 add_library(opts, lib_dirs, files, "gdi32");
802 add_library(opts, lib_dirs, files, "advapi32");
803 add_library(opts, lib_dirs, files, "user32");
804 add_library(opts, lib_dirs, files, "kernel32");
807 if (!opts->nostartfiles) add_library(opts, lib_dirs, files, "winecrt0");
808 if (!opts->nostdlib) add_library(opts, lib_dirs, files, "wine");
810 /* run winebuild to generate the .spec.o file */
811 spec_args = get_winebuild_args( opts );
812 spec_o_name = get_temp_file(output_name, ".spec.o");
813 if (opts->force_pointer_size)
814 strarray_add(spec_args, strmake("-m%u", 8 * opts->force_pointer_size ));
815 strarray_addall(spec_args, strarray_fromstring(DLLFLAGS, " "));
816 strarray_add(spec_args, opts->shared ? "--dll" : "--exe");
817 if (fake_module)
819 strarray_add(spec_args, "--fake-module");
820 strarray_add(spec_args, "-o");
821 strarray_add(spec_args, output_file);
823 else
825 strarray_add(spec_args, "-o");
826 strarray_add(spec_args, spec_o_name);
828 if (spec_file)
830 strarray_add(spec_args, "-E");
831 strarray_add(spec_args, spec_file);
834 if (!opts->shared)
836 strarray_add(spec_args, "-F");
837 strarray_add(spec_args, output_name);
838 strarray_add(spec_args, "--subsystem");
839 strarray_add(spec_args, opts->gui_app ? "windows" : "console");
840 if (opts->unicode_app)
842 strarray_add(spec_args, "--entry");
843 strarray_add(spec_args, "__wine_spec_exe_wentry");
845 if (opts->large_address_aware) strarray_add( spec_args, "--large-address-aware" );
848 for ( j = 0; j < lib_dirs->size; j++ )
849 strarray_add(spec_args, strmake("-L%s", lib_dirs->base[j]));
851 for ( j = 0 ; j < opts->winebuild_args->size ; j++ )
852 strarray_add(spec_args, opts->winebuild_args->base[j]);
854 /* add resource files */
855 for ( j = 0; j < files->size; j++ )
856 if (files->base[j][1] == 'r') strarray_add(spec_args, files->base[j]);
858 /* add other files */
859 strarray_add(spec_args, "--");
860 for ( j = 0; j < files->size; j++ )
862 switch(files->base[j][1])
864 case 'd':
865 case 'a':
866 case 'o':
867 strarray_add(spec_args, files->base[j] + 2);
868 break;
872 spawn(opts->prefix, spec_args, 0);
873 strarray_free (spec_args);
874 if (fake_module) return; /* nothing else to do */
876 /* link everything together now */
877 strarray_addall(link_args, get_translator(opts));
878 strarray_addall(link_args, strarray_fromstring(LDDLLFLAGS, " "));
880 strarray_add(link_args, "-o");
881 strarray_add(link_args, strmake("%s.so", output_file));
883 for ( j = 0 ; j < opts->linker_args->size ; j++ )
884 strarray_add(link_args, opts->linker_args->base[j]);
886 switch (opts->target_platform)
888 case PLATFORM_APPLE:
889 if (opts->image_base)
891 strarray_add(link_args, "-image_base");
892 strarray_add(link_args, opts->image_base);
894 break;
895 case PLATFORM_SOLARIS:
897 char *mapfile = get_temp_file( output_name, ".map" );
898 const char *align = opts->section_align ? opts->section_align : "0x1000";
900 create_file( mapfile, 0644, "text = A%s;\ndata = A%s;\n", align, align );
901 strarray_add(link_args, strmake("-Wl,-M,%s", mapfile));
902 strarray_add(tmp_files, mapfile);
904 break;
905 default:
906 break;
909 for ( j = 0; j < lib_dirs->size; j++ )
910 strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
912 strarray_add(link_args, spec_o_name);
914 for ( j = 0; j < files->size; j++ )
916 const char* name = files->base[j] + 2;
917 switch(files->base[j][1])
919 case 'l':
920 case 's':
921 strarray_add(link_args, strmake("-l%s", name));
922 break;
923 case 'a':
924 case 'o':
925 strarray_add(link_args, name);
926 break;
930 if (!opts->nostdlib)
932 strarray_add(link_args, "-lm");
933 strarray_add(link_args, "-lc");
936 spawn(opts->prefix, link_args, 0);
937 strarray_free (link_args);
939 /* set the base address */
940 if (opts->image_base)
942 const char *prelink = PRELINK;
943 if (prelink[0] && strcmp(prelink,"false"))
945 strarray *prelink_args = strarray_alloc();
946 strarray_add(prelink_args, prelink);
947 strarray_add(prelink_args, "--reloc-only");
948 strarray_add(prelink_args, opts->image_base);
949 strarray_add(prelink_args, strmake("%s.so", output_file));
950 spawn(opts->prefix, prelink_args, 1);
951 strarray_free(prelink_args);
955 /* create the loader script */
956 if (generate_app_loader)
957 create_file(output_file, 0755, app_loader_template, strmake("%s.so", output_name));
961 static void forward(int argc, char **argv, struct options* opts)
963 strarray* args = strarray_alloc();
964 int j;
966 strarray_addall(args, get_translator(opts));
968 for( j = 1; j < argc; j++ )
969 strarray_add(args, argv[j]);
971 spawn(opts->prefix, args, 0);
972 strarray_free (args);
976 * Linker Options
977 * object-file-name -llibrary -nostartfiles -nodefaultlibs
978 * -nostdlib -s -static -static-libgcc -shared -shared-libgcc
979 * -symbolic -Wl,option -Xlinker option -u symbol
980 * -framework name
982 static int is_linker_arg(const char* arg)
984 static const char* link_switches[] =
986 "-nostartfiles", "-nodefaultlibs", "-nostdlib", "-s",
987 "-static", "-static-libgcc", "-shared", "-shared-libgcc", "-symbolic",
988 "-framework"
990 unsigned int j;
992 switch (arg[1])
994 case 'R':
995 case 'z':
996 case 'l':
997 case 'u':
998 return 1;
999 case 'W':
1000 if (strncmp("-Wl,", arg, 4) == 0) return 1;
1001 break;
1002 case 'X':
1003 if (strcmp("-Xlinker", arg) == 0) return 1;
1004 break;
1005 case 'a':
1006 if (strcmp("-arch", arg) == 0) return 1;
1007 break;
1010 for (j = 0; j < sizeof(link_switches)/sizeof(link_switches[0]); j++)
1011 if (strcmp(link_switches[j], arg) == 0) return 1;
1013 return 0;
1017 * Target Options
1018 * -b machine -V version
1020 static int is_target_arg(const char* arg)
1022 return arg[1] == 'b' || arg[2] == 'V';
1027 * Directory Options
1028 * -Bprefix -Idir -I- -Ldir -specs=file
1030 static int is_directory_arg(const char* arg)
1032 return arg[1] == 'B' || arg[1] == 'L' || arg[1] == 'I' || strncmp("-specs=", arg, 7) == 0;
1036 * MinGW Options
1037 * -mno-cygwin -mwindows -mconsole -mthreads -municode
1039 static int is_mingw_arg(const char* arg)
1041 static const char* mingw_switches[] =
1043 "-mno-cygwin", "-mwindows", "-mconsole", "-mthreads", "-municode"
1045 unsigned int j;
1047 for (j = 0; j < sizeof(mingw_switches)/sizeof(mingw_switches[0]); j++)
1048 if (strcmp(mingw_switches[j], arg) == 0) return 1;
1050 return 0;
1053 static void parse_target_option( struct options *opts, const char *target )
1055 char *p, *platform, *spec = xstrdup( target );
1056 unsigned int i;
1058 /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
1060 /* get the CPU part */
1062 if (!(p = strchr( spec, '-' ))) error( "Invalid target specification '%s'\n", target );
1063 *p++ = 0;
1064 for (i = 0; i < sizeof(cpu_names)/sizeof(cpu_names[0]); i++)
1066 if (!strcmp( cpu_names[i].name, spec ))
1068 opts->target_cpu = cpu_names[i].cpu;
1069 break;
1072 if (i == sizeof(cpu_names)/sizeof(cpu_names[0]))
1073 error( "Unrecognized CPU '%s'\n", spec );
1074 platform = p;
1075 if ((p = strrchr( p, '-' ))) platform = p + 1;
1077 /* get the OS part */
1079 opts->target_platform = PLATFORM_UNSPECIFIED; /* default value */
1080 for (i = 0; i < sizeof(platform_names)/sizeof(platform_names[0]); i++)
1082 if (!strncmp( platform_names[i].name, platform, strlen(platform_names[i].name) ))
1084 opts->target_platform = platform_names[i].platform;
1085 break;
1089 free( spec );
1090 opts->target = xstrdup( target );
1093 int main(int argc, char **argv)
1095 int i, c, next_is_arg = 0, linking = 1;
1096 int raw_compiler_arg, raw_linker_arg;
1097 const char* option_arg;
1098 struct options opts;
1099 char* lang = 0;
1100 char* str;
1102 #ifdef SIGHUP
1103 signal( SIGHUP, exit_on_signal );
1104 #endif
1105 signal( SIGTERM, exit_on_signal );
1106 signal( SIGINT, exit_on_signal );
1107 #ifdef HAVE_SIGADDSET
1108 sigemptyset( &signal_mask );
1109 sigaddset( &signal_mask, SIGHUP );
1110 sigaddset( &signal_mask, SIGTERM );
1111 sigaddset( &signal_mask, SIGINT );
1112 #endif
1114 /* setup tmp file removal at exit */
1115 tmp_files = strarray_alloc();
1116 atexit(clean_temp_files);
1118 /* initialize options */
1119 memset(&opts, 0, sizeof(opts));
1120 opts.target_cpu = build_cpu;
1121 opts.target_platform = build_platform;
1122 opts.lib_dirs = strarray_alloc();
1123 opts.files = strarray_alloc();
1124 opts.linker_args = strarray_alloc();
1125 opts.compiler_args = strarray_alloc();
1126 opts.winebuild_args = strarray_alloc();
1128 /* determine the processor type */
1129 if (strendswith(argv[0], "winecpp")) opts.processor = proc_cpp;
1130 else if (strendswith(argv[0], "++")) opts.processor = proc_cxx;
1132 /* parse options */
1133 for ( i = 1 ; i < argc ; i++ )
1135 if (argv[i][0] == '-') /* option */
1137 /* determine if tihs switch is followed by a separate argument */
1138 next_is_arg = 0;
1139 option_arg = 0;
1140 switch(argv[i][1])
1142 case 'x': case 'o': case 'D': case 'U':
1143 case 'I': case 'A': case 'l': case 'u':
1144 case 'b': case 'V': case 'G': case 'L':
1145 case 'B': case 'R': case 'z':
1146 if (argv[i][2]) option_arg = &argv[i][2];
1147 else next_is_arg = 1;
1148 break;
1149 case 'i':
1150 next_is_arg = 1;
1151 break;
1152 case 'a':
1153 if (strcmp("-aux-info", argv[i]) == 0)
1154 next_is_arg = 1;
1155 if (strcmp("-arch", argv[i]) == 0)
1156 next_is_arg = 1;
1157 break;
1158 case 'X':
1159 if (strcmp("-Xlinker", argv[i]) == 0)
1160 next_is_arg = 1;
1161 break;
1162 case 'M':
1163 c = argv[i][2];
1164 if (c == 'F' || c == 'T' || c == 'Q')
1166 if (argv[i][3]) option_arg = &argv[i][3];
1167 else next_is_arg = 1;
1169 break;
1170 case 'f':
1171 if (strcmp("-framework", argv[i]) == 0)
1172 next_is_arg = 1;
1173 break;
1175 if (next_is_arg) option_arg = argv[i+1];
1177 /* determine what options go 'as is' to the linker & the compiler */
1178 raw_compiler_arg = raw_linker_arg = 0;
1179 if (is_linker_arg(argv[i]))
1181 raw_linker_arg = 1;
1183 else
1185 if (is_directory_arg(argv[i]) || is_target_arg(argv[i]))
1186 raw_linker_arg = 1;
1187 raw_compiler_arg = !is_mingw_arg(argv[i]);
1190 /* these things we handle explicitly so we don't pass them 'as is' */
1191 if (argv[i][1] == 'l' || argv[i][1] == 'I' || argv[i][1] == 'L')
1192 raw_linker_arg = 0;
1193 if (argv[i][1] == 'c' || argv[i][1] == 'L')
1194 raw_compiler_arg = 0;
1195 if (argv[i][1] == 'o' || argv[i][1] == 'b')
1196 raw_compiler_arg = raw_linker_arg = 0;
1198 /* do a bit of semantic analysis */
1199 switch (argv[i][1])
1201 case 'B':
1202 str = strdup(option_arg);
1203 if (strendswith(str, "/tools/winebuild"))
1205 char *objdir = strdup(str);
1206 objdir[strlen(objdir) - sizeof("/tools/winebuild") + 1] = 0;
1207 opts.wine_objdir = objdir;
1208 /* don't pass it to the compiler, this generates warnings */
1209 raw_compiler_arg = raw_linker_arg = 0;
1211 if (strendswith(str, "/")) str[strlen(str) - 1] = 0;
1212 if (!opts.prefix) opts.prefix = strarray_alloc();
1213 strarray_add(opts.prefix, str);
1214 break;
1215 case 'b':
1216 parse_target_option( &opts, option_arg );
1217 break;
1218 case 'c': /* compile or assemble */
1219 if (argv[i][2] == 0) opts.compile_only = 1;
1220 /* fall through */
1221 case 'S': /* generate assembler code */
1222 case 'E': /* preprocess only */
1223 if (argv[i][2] == 0) linking = 0;
1224 break;
1225 case 'f':
1226 if (strcmp("-fno-short-wchar", argv[i]) == 0)
1227 opts.noshortwchar = 1;
1228 break;
1229 case 'l':
1230 strarray_add(opts.files, strmake("-l%s", option_arg));
1231 break;
1232 case 'L':
1233 strarray_add(opts.lib_dirs, option_arg);
1234 break;
1235 case 'M': /* map file generation */
1236 linking = 0;
1237 break;
1238 case 'm':
1239 if (strcmp("-mno-cygwin", argv[i]) == 0)
1240 opts.use_msvcrt = 1;
1241 else if (strcmp("-mwindows", argv[i]) == 0)
1242 opts.gui_app = 1;
1243 else if (strcmp("-mconsole", argv[i]) == 0)
1244 opts.gui_app = 0;
1245 else if (strcmp("-municode", argv[i]) == 0)
1246 opts.unicode_app = 1;
1247 else if (strcmp("-m32", argv[i]) == 0)
1249 opts.force_pointer_size = 4;
1250 raw_linker_arg = 1;
1252 else if (strcmp("-m64", argv[i]) == 0)
1254 opts.force_pointer_size = 8;
1255 raw_linker_arg = 1;
1257 break;
1258 case 'n':
1259 if (strcmp("-nostdinc", argv[i]) == 0)
1260 opts.nostdinc = 1;
1261 else if (strcmp("-nodefaultlibs", argv[i]) == 0)
1262 opts.nodefaultlibs = 1;
1263 else if (strcmp("-nostdlib", argv[i]) == 0)
1264 opts.nostdlib = 1;
1265 else if (strcmp("-nostartfiles", argv[i]) == 0)
1266 opts.nostartfiles = 1;
1267 break;
1268 case 'o':
1269 opts.output_name = option_arg;
1270 break;
1271 case 's':
1272 if (strcmp("-static", argv[i]) == 0)
1273 linking = -1;
1274 else if(strcmp("-save-temps", argv[i]) == 0)
1275 keep_generated = 1;
1276 else if(strcmp("-shared", argv[i]) == 0)
1278 opts.shared = 1;
1279 raw_compiler_arg = raw_linker_arg = 0;
1281 break;
1282 case 'v':
1283 if (argv[i][2] == 0) verbose++;
1284 break;
1285 case 'W':
1286 if (strncmp("-Wl,", argv[i], 4) == 0)
1288 unsigned int j;
1289 strarray* Wl = strarray_fromstring(argv[i] + 4, ",");
1290 for (j = 0; j < Wl->size; j++)
1292 if (!strcmp(Wl->base[j], "--image-base") && j < Wl->size - 1)
1294 opts.image_base = strdup( Wl->base[++j] );
1295 continue;
1297 if (!strcmp(Wl->base[j], "--section-alignment") && j < Wl->size - 1)
1299 opts.section_align = strdup( Wl->base[++j] );
1300 continue;
1302 if (!strcmp(Wl->base[j], "--large-address-aware"))
1304 opts.large_address_aware = 1;
1305 continue;
1307 if (!strcmp(Wl->base[j], "-static")) linking = -1;
1308 strarray_add(opts.linker_args, strmake("-Wl,%s",Wl->base[j]));
1310 strarray_free(Wl);
1311 raw_compiler_arg = raw_linker_arg = 0;
1313 else if (strncmp("-Wb,", argv[i], 4) == 0)
1315 strarray* Wb = strarray_fromstring(argv[i] + 4, ",");
1316 strarray_addall(opts.winebuild_args, Wb);
1317 strarray_free(Wb);
1318 /* don't pass it to the compiler, it generates errors */
1319 raw_compiler_arg = raw_linker_arg = 0;
1321 break;
1322 case 'x':
1323 lang = strmake("-x%s", option_arg);
1324 strarray_add(opts.files, lang);
1325 /* we'll pass these flags ourselves, explicitly */
1326 raw_compiler_arg = raw_linker_arg = 0;
1327 break;
1328 case '-':
1329 if (strcmp("-static", argv[i]+1) == 0)
1330 linking = -1;
1331 else if (!strncmp("--sysroot", argv[i], 9) && opts.wine_objdir)
1333 if (argv[i][9] == '=') opts.wine_objdir = argv[i] + 10;
1334 else opts.wine_objdir = argv[++i];
1335 raw_compiler_arg = raw_linker_arg = 0;
1337 else if (!strncmp("--lib-suffix", argv[i], 12) && opts.wine_objdir)
1339 if (argv[i][12] == '=') opts.lib_suffix = argv[i] + 13;
1340 else opts.lib_suffix = argv[++i];
1341 raw_compiler_arg = raw_linker_arg = 0;
1343 break;
1346 /* put the arg into the appropriate bucket */
1347 if (raw_linker_arg)
1349 strarray_add(opts.linker_args, argv[i]);
1350 if (next_is_arg && (i + 1 < argc))
1351 strarray_add(opts.linker_args, argv[i + 1]);
1353 if (raw_compiler_arg)
1355 strarray_add(opts.compiler_args, argv[i]);
1356 if (next_is_arg && (i + 1 < argc))
1357 strarray_add(opts.compiler_args, argv[i + 1]);
1360 /* skip the next token if it's an argument */
1361 if (next_is_arg) i++;
1363 else
1365 strarray_add(opts.files, argv[i]);
1369 if (opts.processor == proc_cpp) linking = 0;
1370 if (linking == -1) error("Static linking is not supported\n");
1372 if (opts.files->size == 0) forward(argc, argv, &opts);
1373 else if (linking) build(&opts);
1374 else compile(&opts, lang);
1376 return 0;