winegcc: Transparently compile resource files for the Windows build.
[wine/multimedia.git] / tools / winegcc / winegcc.c
blobb0853c1dae0b9c42f52d8e34c6e05fee4eab09b3
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 }
165 static const struct
167 const char *name;
168 enum target_platform platform;
169 } platform_names[] =
171 { "macos", PLATFORM_APPLE },
172 { "darwin", PLATFORM_APPLE },
173 { "solaris", PLATFORM_SOLARIS },
174 { "mingw32", PLATFORM_WINDOWS },
175 { "windows", PLATFORM_WINDOWS },
176 { "winnt", PLATFORM_WINDOWS }
179 struct options
181 enum processor processor;
182 enum target_cpu target_cpu;
183 enum target_platform target_platform;
184 const char *target;
185 int shared;
186 int use_msvcrt;
187 int nostdinc;
188 int nostdlib;
189 int nostartfiles;
190 int nodefaultlibs;
191 int noshortwchar;
192 int gui_app;
193 int unicode_app;
194 int compile_only;
195 int force_pointer_size;
196 const char* wine_objdir;
197 const char* output_name;
198 const char* image_base;
199 const char* section_align;
200 strarray* prefix;
201 strarray* lib_dirs;
202 strarray* linker_args;
203 strarray* compiler_args;
204 strarray* winebuild_args;
205 strarray* files;
208 #ifdef __i386__
209 static const enum target_cpu build_cpu = CPU_x86;
210 #elif defined(__x86_64__)
211 static const enum target_cpu build_cpu = CPU_x86_64;
212 #elif defined(__sparc__)
213 static const enum target_cpu build_cpu = CPU_SPARC;
214 #elif defined(__ALPHA__)
215 static const enum target_cpu build_cpu = CPU_ALPHA;
216 #elif defined(__powerpc__)
217 static const enum target_cpu build_cpu = CPU_POWERPC;
218 #else
219 #error Unsupported CPU
220 #endif
222 #ifdef __APPLE__
223 static enum target_platform build_platform = PLATFORM_APPLE;
224 #elif defined(__sun)
225 static enum target_platform build_platform = PLATFORM_SOLARIS;
226 #elif defined(_WINDOWS)
227 static enum target_platform build_platform = PLATFORM_WINDOWS;
228 #else
229 static enum target_platform build_platform = PLATFORM_UNSPECIFIED;
230 #endif
232 static void clean_temp_files(void)
234 unsigned int i;
236 if (keep_generated) return;
238 for (i = 0; i < tmp_files->size; i++)
239 unlink(tmp_files->base[i]);
242 /* clean things up when aborting on a signal */
243 static void exit_on_signal( int sig )
245 exit(1); /* this will call the atexit functions */
248 static char* get_temp_file(const char* prefix, const char* suffix)
250 int fd;
251 char* tmp = strmake("%s-XXXXXX%s", prefix, suffix);
253 #ifdef HAVE_SIGPROCMASK
254 sigset_t old_set;
255 /* block signals while manipulating the temp files list */
256 sigprocmask( SIG_BLOCK, &signal_mask, &old_set );
257 #endif
258 fd = mkstemps( tmp, strlen(suffix) );
259 if (fd == -1)
261 /* could not create it in current directory, try in /tmp */
262 free(tmp);
263 tmp = strmake("/tmp/%s-XXXXXX%s", prefix, suffix);
264 fd = mkstemps( tmp, strlen(suffix) );
265 if (fd == -1) error( "could not create temp file\n" );
267 close( fd );
268 strarray_add(tmp_files, tmp);
269 #ifdef HAVE_SIGPROCMASK
270 sigprocmask( SIG_SETMASK, &old_set, NULL );
271 #endif
272 return tmp;
275 static const strarray* get_translator(struct options *opts)
277 const char *str = NULL;
278 strarray *ret;
280 switch(opts->processor)
282 case proc_cpp:
283 if (opts->target) str = strmake( "%s-cpp", opts->target );
284 else str = CPP;
285 break;
286 case proc_cc:
287 case proc_as:
288 if (opts->target) str = strmake( "%s-gcc", opts->target );
289 else str = CC;
290 break;
291 case proc_cxx:
292 if (opts->target) str = strmake( "%s-g++", opts->target );
293 else str = CXX;
294 break;
295 default:
296 assert(0);
298 ret = strarray_fromstring( str, " " );
299 if (opts->force_pointer_size)
300 strarray_add( ret, strmake("-m%u", 8 * opts->force_pointer_size ));
301 return ret;
304 static void compile(struct options* opts, const char* lang)
306 strarray* comp_args = strarray_alloc();
307 unsigned int j;
308 int gcc_defs = 0;
310 strarray_addall(comp_args, get_translator(opts));
311 switch(opts->processor)
313 case proc_cpp: gcc_defs = 1; break;
314 case proc_as: gcc_defs = 0; break;
315 /* Note: if the C compiler is gcc we assume the C++ compiler is too */
316 /* mixing different C and C++ compilers isn't supported in configure anyway */
317 case proc_cc:
318 case proc_cxx:
319 gcc_defs = strendswith(comp_args->base[0], "gcc") || strendswith(comp_args->base[0], "g++");
320 break;
323 if (opts->target_platform == PLATFORM_WINDOWS) goto no_compat_defines;
325 if (opts->processor != proc_cpp)
327 if (gcc_defs && !opts->wine_objdir && !opts->noshortwchar)
329 strarray_add(comp_args, "-fshort-wchar");
330 strarray_add(comp_args, "-DWINE_UNICODE_NATIVE");
332 strarray_addall(comp_args, strarray_fromstring(DLLFLAGS, " "));
335 if (opts->target_cpu == CPU_x86_64)
337 strarray_add(comp_args, "-DWIN64");
338 strarray_add(comp_args, "-D_WIN64");
339 strarray_add(comp_args, "-D__WIN64");
340 strarray_add(comp_args, "-D__WIN64__");
343 strarray_add(comp_args, "-DWIN32");
344 strarray_add(comp_args, "-D_WIN32");
345 strarray_add(comp_args, "-D__WIN32");
346 strarray_add(comp_args, "-D__WIN32__");
347 strarray_add(comp_args, "-D__WINNT");
348 strarray_add(comp_args, "-D__WINNT__");
350 if (gcc_defs)
352 if (opts->target_cpu == CPU_x86_64)
354 strarray_add(comp_args, "-D__stdcall=__attribute__((ms_abi))");
355 strarray_add(comp_args, "-D__cdecl=__attribute__((ms_abi))");
356 strarray_add(comp_args, "-D_stdcall=__attribute__((ms_abi))");
357 strarray_add(comp_args, "-D_cdecl=__attribute__((ms_abi))");
358 strarray_add(comp_args, "-D__fastcall=__attribute__((ms_abi))");
359 strarray_add(comp_args, "-D_fastcall=__attribute__((ms_abi))");
361 else if (opts->target_platform == PLATFORM_APPLE)
363 /* Mac OS X uses a 16-byte aligned stack and not a 4-byte one */
364 strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
365 strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
366 strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))");
367 strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))");
369 else
371 strarray_add(comp_args, "-D__stdcall=__attribute__((__stdcall__))");
372 strarray_add(comp_args, "-D__cdecl=__attribute__((__cdecl__))");
373 strarray_add(comp_args, "-D_stdcall=__attribute__((__stdcall__))");
374 strarray_add(comp_args, "-D_cdecl=__attribute__((__cdecl__))");
377 strarray_add(comp_args, "-D__fastcall=__attribute__((__fastcall__))");
378 strarray_add(comp_args, "-D_fastcall=__attribute__((__fastcall__))");
379 strarray_add(comp_args, "-D__declspec(x)=__declspec_##x");
380 strarray_add(comp_args, "-D__declspec_align(x)=__attribute__((aligned(x)))");
381 strarray_add(comp_args, "-D__declspec_allocate(x)=__attribute__((section(x)))");
382 strarray_add(comp_args, "-D__declspec_deprecated=__attribute__((deprecated))");
383 strarray_add(comp_args, "-D__declspec_dllimport=__attribute__((dllimport))");
384 strarray_add(comp_args, "-D__declspec_dllexport=__attribute__((dllexport))");
385 strarray_add(comp_args, "-D__declspec_naked=__attribute__((naked))");
386 strarray_add(comp_args, "-D__declspec_noinline=__attribute__((noinline))");
387 strarray_add(comp_args, "-D__declspec_noreturn=__attribute__((noreturn))");
388 strarray_add(comp_args, "-D__declspec_nothrow=__attribute__((nothrow))");
389 strarray_add(comp_args, "-D__declspec_novtable=__attribute__(())"); /* ignore it */
390 strarray_add(comp_args, "-D__declspec_selectany=__attribute__((weak))");
391 strarray_add(comp_args, "-D__declspec_thread=__thread");
394 strarray_add(comp_args, "-D__int8=char");
395 strarray_add(comp_args, "-D__int16=short");
396 strarray_add(comp_args, "-D__int32=int");
397 if (opts->target_cpu == CPU_x86_64)
398 strarray_add(comp_args, "-D__int64=long");
399 else
400 strarray_add(comp_args, "-D__int64=long long");
402 no_compat_defines:
403 strarray_add(comp_args, "-D__WINE__");
405 /* options we handle explicitly */
406 if (opts->compile_only)
407 strarray_add(comp_args, "-c");
408 if (opts->output_name)
410 strarray_add(comp_args, "-o");
411 strarray_add(comp_args, opts->output_name);
414 /* the rest of the pass-through parameters */
415 for ( j = 0 ; j < opts->compiler_args->size ; j++ )
416 strarray_add(comp_args, opts->compiler_args->base[j]);
418 /* the language option, if any */
419 if (lang && strcmp(lang, "-xnone"))
420 strarray_add(comp_args, lang);
422 /* last, but not least, the files */
423 for ( j = 0; j < opts->files->size; j++ )
425 if (opts->files->base[j][0] != '-')
426 strarray_add(comp_args, opts->files->base[j]);
429 /* standard includes come last in the include search path */
430 if (!opts->wine_objdir && !opts->nostdinc)
432 if (opts->use_msvcrt)
434 if (gcc_defs) strarray_add(comp_args, "-isystem" INCLUDEDIR "/msvcrt");
435 else strarray_add(comp_args, "-I" INCLUDEDIR "/msvcrt");
436 strarray_add(comp_args, "-D__MSVCRT__");
438 strarray_add(comp_args, gcc_defs ? "-isystem" INCLUDEDIR "/windows" : "-I" INCLUDEDIR "/windows" );
440 else if (opts->wine_objdir)
441 strarray_add(comp_args, strmake("-I%s/include", opts->wine_objdir) );
443 spawn(opts->prefix, comp_args, 0);
444 strarray_free(comp_args);
447 static const char* compile_to_object(struct options* opts, const char* file, const char* lang)
449 struct options copts;
450 char* base_name;
452 /* make a copy so we don't change any of the initial stuff */
453 /* a shallow copy is exactly what we want in this case */
454 base_name = get_basename(file);
455 copts = *opts;
456 copts.output_name = get_temp_file(base_name, ".o");
457 copts.compile_only = 1;
458 copts.files = strarray_alloc();
459 strarray_add(copts.files, file);
460 compile(&copts, lang);
461 strarray_free(copts.files);
462 free(base_name);
464 return copts.output_name;
467 /* return the initial set of options needed to run winebuild */
468 static strarray *get_winebuild_args(struct options *opts)
470 const char* winebuild = getenv("WINEBUILD");
471 strarray *spec_args = strarray_alloc();
473 if (!winebuild) winebuild = "winebuild";
474 strarray_add( spec_args, winebuild );
475 if (verbose) strarray_add( spec_args, "-v" );
476 if (keep_generated) strarray_add( spec_args, "--save-temps" );
477 if (opts->target)
479 strarray_add( spec_args, "--target" );
480 strarray_add( spec_args, opts->target );
482 return spec_args;
485 static const char* compile_resources_to_object(struct options* opts, const strarray *resources,
486 const char *res_o_name)
488 strarray *winebuild_args = get_winebuild_args( opts );
490 strarray_add( winebuild_args, "--resources" );
491 strarray_add( winebuild_args, "-o" );
492 strarray_add( winebuild_args, res_o_name );
493 strarray_addall( winebuild_args, resources );
495 spawn( opts->prefix, winebuild_args, 0 );
496 strarray_free( winebuild_args );
497 return res_o_name;
500 /* check if there is a static lib associated to a given dll */
501 static char *find_static_lib( const char *dll )
503 char *lib = strmake("%s.a", dll);
504 if (get_file_type(lib) == file_arh) return lib;
505 free( lib );
506 return NULL;
509 /* add specified library to the list of files */
510 static void add_library( struct options *opts, strarray *lib_dirs, strarray *files, const char *library )
512 char *static_lib, *fullname = 0;
514 switch(get_lib_type(opts->target_platform, lib_dirs, library, &fullname))
516 case file_arh:
517 strarray_add(files, strmake("-a%s", fullname));
518 break;
519 case file_dll:
520 strarray_add(files, strmake("-d%s", fullname));
521 if ((static_lib = find_static_lib(fullname)))
523 strarray_add(files, strmake("-a%s",static_lib));
524 free(static_lib);
526 break;
527 case file_so:
528 default:
529 /* keep it anyway, the linker may know what to do with it */
530 strarray_add(files, strmake("-l%s", library));
531 break;
533 free(fullname);
536 static void build(struct options* opts)
538 static const char *stdlibpath[] = { DLLDIR, LIBDIR, "/usr/lib", "/usr/local/lib", "/lib" };
539 strarray *lib_dirs, *files;
540 strarray *spec_args, *link_args;
541 char *output_file;
542 const char *spec_o_name;
543 const char *output_name, *spec_file, *lang;
544 int generate_app_loader = 1;
545 unsigned int j;
547 /* NOTE: for the files array we'll use the following convention:
548 * -axxx: xxx is an archive (.a)
549 * -dxxx: xxx is a DLL (.def)
550 * -lxxx: xxx is an unsorted library
551 * -oxxx: xxx is an object (.o)
552 * -rxxx: xxx is a resource (.res)
553 * -sxxx: xxx is a shared lib (.so)
554 * -xlll: lll is the language (c, c++, etc.)
557 output_file = strdup( opts->output_name ? opts->output_name : "a.out" );
559 /* 'winegcc -o app xxx.exe.so' only creates the load script */
560 if (opts->files->size == 1 && strendswith(opts->files->base[0], ".exe.so"))
562 create_file(output_file, 0755, app_loader_template, opts->files->base[0]);
563 return;
566 /* generate app loader only for .exe */
567 if (opts->shared || strendswith(output_file, ".so"))
568 generate_app_loader = 0;
570 /* normalize the filename a bit: strip .so, ensure it has proper ext */
571 if (strendswith(output_file, ".so"))
572 output_file[strlen(output_file) - 3] = 0;
573 if ((output_name = strrchr(output_file, '/'))) output_name++;
574 else output_name = output_file;
575 if (!strchr(output_name, '.'))
576 output_file = strmake("%s.%s", output_file, opts->shared ? "dll" : "exe");
578 /* get the filename from the path */
579 if ((output_name = strrchr(output_file, '/'))) output_name++;
580 else output_name = output_file;
582 /* prepare the linking path */
583 if (!opts->wine_objdir)
585 lib_dirs = strarray_dup(opts->lib_dirs);
586 for ( j = 0; j < sizeof(stdlibpath)/sizeof(stdlibpath[0]); j++ )
587 strarray_add(lib_dirs, stdlibpath[j]);
589 else
591 lib_dirs = strarray_alloc();
592 strarray_add(lib_dirs, strmake("%s/dlls", opts->wine_objdir));
593 strarray_add(lib_dirs, strmake("%s/libs/wine", opts->wine_objdir));
594 strarray_addall(lib_dirs, opts->lib_dirs);
597 /* mark the files with their appropriate type */
598 spec_file = lang = 0;
599 files = strarray_alloc();
600 link_args = strarray_alloc();
601 for ( j = 0; j < opts->files->size; j++ )
603 const char* file = opts->files->base[j];
604 if (file[0] != '-')
606 switch(get_file_type(file))
608 case file_def:
609 case file_spec:
610 if (spec_file)
611 error("Only one spec file can be specified\n");
612 spec_file = file;
613 break;
614 case file_rc:
615 /* FIXME: invoke wrc to build it */
616 error("Can't compile .rc file at the moment: %s\n", file);
617 break;
618 case file_res:
619 strarray_add(files, strmake("-r%s", file));
620 break;
621 case file_obj:
622 strarray_add(files, strmake("-o%s", file));
623 break;
624 case file_arh:
625 strarray_add(files, strmake("-a%s", file));
626 break;
627 case file_so:
628 strarray_add(files, strmake("-s%s", file));
629 break;
630 case file_na:
631 error("File does not exist: %s\n", file);
632 break;
633 default:
634 file = compile_to_object(opts, file, lang);
635 strarray_add(files, strmake("-o%s", file));
636 break;
639 else if (file[1] == 'l')
640 add_library(opts, lib_dirs, files, file + 2 );
641 else if (file[1] == 'x')
642 lang = file;
644 if (opts->shared && !spec_file)
645 error("A spec file is currently needed in shared mode\n");
647 /* building for Windows is completely different */
649 if (opts->target_platform == PLATFORM_WINDOWS)
651 strarray *resources = strarray_alloc();
652 char *res_o_name = NULL;
654 if (opts->shared)
656 /* run winebuild to generate the .def file */
657 char *spec_def_name = get_temp_file(output_name, ".spec.def");
658 spec_args = get_winebuild_args( opts );
659 strarray_add(spec_args, "--def");
660 strarray_add(spec_args, "-o");
661 strarray_add(spec_args, spec_def_name);
662 if (spec_file)
664 strarray_add(spec_args, "--export");
665 strarray_add(spec_args, spec_file);
667 spawn(opts->prefix, spec_args, 0);
668 strarray_free(spec_args);
670 if (opts->target) strarray_add(link_args, strmake("%s-dllwrap", opts->target));
671 else strarray_add(link_args, "dllwrap");
672 if (verbose) strarray_add(link_args, "-v");
673 strarray_add(link_args, "-k");
674 strarray_add(link_args, "--def");
675 strarray_add(link_args, spec_def_name);
677 else
679 strarray_addall(link_args, get_translator(opts));
680 strarray_add(link_args, opts->gui_app ? "-mwindows" : "-mconsole");
681 if (opts->use_msvcrt) strarray_add(link_args, "-mno-cygwin");
682 if (opts->nodefaultlibs) strarray_add(link_args, "-nodefaultlibs");
685 for ( j = 0 ; j < opts->linker_args->size ; j++ )
686 strarray_add(link_args, opts->linker_args->base[j]);
688 strarray_add(link_args, "-o");
689 strarray_add(link_args, output_file);
691 if (opts->image_base)
692 strarray_add(link_args, strmake("-Wl,--image-base,%s", opts->image_base));
694 for ( j = 0; j < lib_dirs->size; j++ )
695 strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
697 if (opts->shared && !opts->nostdlib) add_library(opts, lib_dirs, files, "wine");
699 for ( j = 0; j < files->size; j++ )
701 const char* name = files->base[j] + 2;
703 switch(files->base[j][1])
705 case 'l':
706 case 's':
707 case 'd':
708 strarray_add(link_args, strmake("-l%s", name));
709 break;
710 case 'o':
711 strarray_add(link_args, name);
712 break;
713 case 'a':
714 if (strchr(name, '/'))
716 /* turn the path back into -Ldir -lfoo options
717 * this makes sure that we use the specified libs even
718 * when mingw adds its own import libs to the link */
719 char *lib = xstrdup( name );
720 char *p = strrchr( lib, '/' );
722 *p++ = 0;
723 if (!strncmp( p, "lib", 3 ))
725 char *ext = strrchr( p, '.' );
727 if (ext) *ext = 0;
728 p += 3;
729 strarray_add(link_args, strmake("-L%s", lib ));
730 strarray_add(link_args, strmake("-l%s", p ));
731 free( lib );
732 break;
734 free( lib );
736 strarray_add(link_args, name);
737 break;
738 case 'r':
739 if (!res_o_name)
741 res_o_name = get_temp_file( output_name, ".res.o" );
742 strarray_add( link_args, res_o_name );
744 strarray_add( resources, name );
745 break;
749 if (res_o_name) compile_resources_to_object( opts, resources, res_o_name );
751 spawn(opts->prefix, link_args, 0);
752 strarray_free (resources);
753 strarray_free (link_args);
754 return;
757 /* add the default libraries, if needed */
758 if (!opts->nostdlib && opts->use_msvcrt) add_library(opts, lib_dirs, files, "msvcrt");
760 if (!opts->wine_objdir && !opts->nodefaultlibs)
762 if (opts->gui_app)
764 add_library(opts, lib_dirs, files, "shell32");
765 add_library(opts, lib_dirs, files, "comdlg32");
766 add_library(opts, lib_dirs, files, "gdi32");
768 add_library(opts, lib_dirs, files, "advapi32");
769 add_library(opts, lib_dirs, files, "user32");
770 add_library(opts, lib_dirs, files, "kernel32");
773 if (!opts->nostartfiles) add_library(opts, lib_dirs, files, "winecrt0");
774 if (!opts->nostdlib) add_library(opts, lib_dirs, files, "wine");
776 /* run winebuild to generate the .spec.o file */
777 spec_args = get_winebuild_args( opts );
778 spec_o_name = get_temp_file(output_name, ".spec.o");
779 if (opts->force_pointer_size)
780 strarray_add(spec_args, strmake("-m%u", 8 * opts->force_pointer_size ));
781 strarray_addall(spec_args, strarray_fromstring(DLLFLAGS, " "));
782 strarray_add(spec_args, opts->shared ? "--dll" : "--exe");
783 strarray_add(spec_args, "-o");
784 strarray_add(spec_args, spec_o_name);
785 if (spec_file)
787 strarray_add(spec_args, "-E");
788 strarray_add(spec_args, spec_file);
791 if (!opts->shared)
793 strarray_add(spec_args, "-F");
794 strarray_add(spec_args, output_name);
795 strarray_add(spec_args, "--subsystem");
796 strarray_add(spec_args, opts->gui_app ? "windows" : "console");
797 if (opts->unicode_app)
799 strarray_add(spec_args, "--entry");
800 strarray_add(spec_args, "__wine_spec_exe_wentry");
804 for ( j = 0; j < lib_dirs->size; j++ )
805 strarray_add(spec_args, strmake("-L%s", lib_dirs->base[j]));
807 for ( j = 0 ; j < opts->winebuild_args->size ; j++ )
808 strarray_add(spec_args, opts->winebuild_args->base[j]);
810 for ( j = 0; j < files->size; j++ )
812 const char* name = files->base[j] + 2;
813 switch(files->base[j][1])
815 case 'r':
816 strarray_add(spec_args, files->base[j]);
817 break;
818 case 'd':
819 case 'a':
820 case 'o':
821 strarray_add(spec_args, name);
822 break;
826 spawn(opts->prefix, spec_args, 0);
827 strarray_free (spec_args);
829 /* link everything together now */
830 strarray_addall(link_args, get_translator(opts));
831 strarray_addall(link_args, strarray_fromstring(LDDLLFLAGS, " "));
833 strarray_add(link_args, "-o");
834 strarray_add(link_args, strmake("%s.so", output_file));
836 for ( j = 0 ; j < opts->linker_args->size ; j++ )
837 strarray_add(link_args, opts->linker_args->base[j]);
839 switch (opts->target_platform)
841 case PLATFORM_APPLE:
842 if (opts->image_base)
844 strarray_add(link_args, "-image_base");
845 strarray_add(link_args, opts->image_base);
847 break;
848 case PLATFORM_SOLARIS:
850 char *mapfile = get_temp_file( output_name, ".map" );
851 const char *align = opts->section_align ? opts->section_align : "0x1000";
853 create_file( mapfile, 0644, "text = A%s;\ndata = A%s;\n", align, align );
854 strarray_add(link_args, strmake("-Wl,-M,%s", mapfile));
855 strarray_add(tmp_files, mapfile);
857 break;
858 default:
859 break;
862 for ( j = 0; j < lib_dirs->size; j++ )
863 strarray_add(link_args, strmake("-L%s", lib_dirs->base[j]));
865 strarray_add(link_args, spec_o_name);
867 for ( j = 0; j < files->size; j++ )
869 const char* name = files->base[j] + 2;
870 switch(files->base[j][1])
872 case 'l':
873 case 's':
874 strarray_add(link_args, strmake("-l%s", name));
875 break;
876 case 'a':
877 case 'o':
878 strarray_add(link_args, name);
879 break;
883 if (!opts->nostdlib)
885 strarray_add(link_args, "-lm");
886 strarray_add(link_args, "-lc");
889 spawn(opts->prefix, link_args, 0);
890 strarray_free (link_args);
892 /* set the base address */
893 if (opts->image_base)
895 const char *prelink = PRELINK;
896 if (prelink[0] && strcmp(prelink,"false"))
898 strarray *prelink_args = strarray_alloc();
899 strarray_add(prelink_args, prelink);
900 strarray_add(prelink_args, "--reloc-only");
901 strarray_add(prelink_args, opts->image_base);
902 strarray_add(prelink_args, strmake("%s.so", output_file));
903 spawn(opts->prefix, prelink_args, 1);
904 strarray_free(prelink_args);
908 /* create the loader script */
909 if (generate_app_loader)
910 create_file(output_file, 0755, app_loader_template, strmake("%s.so", output_name));
914 static void forward(int argc, char **argv, struct options* opts)
916 strarray* args = strarray_alloc();
917 int j;
919 strarray_addall(args, get_translator(opts));
921 for( j = 1; j < argc; j++ )
922 strarray_add(args, argv[j]);
924 spawn(opts->prefix, args, 0);
925 strarray_free (args);
929 * Linker Options
930 * object-file-name -llibrary -nostartfiles -nodefaultlibs
931 * -nostdlib -s -static -static-libgcc -shared -shared-libgcc
932 * -symbolic -Wl,option -Xlinker option -u symbol
933 * -framework name
935 static int is_linker_arg(const char* arg)
937 static const char* link_switches[] =
939 "-nostartfiles", "-nodefaultlibs", "-nostdlib", "-s",
940 "-static", "-static-libgcc", "-shared", "-shared-libgcc", "-symbolic",
941 "-framework"
943 unsigned int j;
945 switch (arg[1])
947 case 'R':
948 case 'z':
949 case 'l':
950 case 'u':
951 return 1;
952 case 'W':
953 if (strncmp("-Wl,", arg, 4) == 0) return 1;
954 break;
955 case 'X':
956 if (strcmp("-Xlinker", arg) == 0) return 1;
957 break;
958 case 'a':
959 if (strcmp("-arch", arg) == 0) return 1;
960 break;
963 for (j = 0; j < sizeof(link_switches)/sizeof(link_switches[0]); j++)
964 if (strcmp(link_switches[j], arg) == 0) return 1;
966 return 0;
970 * Target Options
971 * -b machine -V version
973 static int is_target_arg(const char* arg)
975 return arg[1] == 'b' || arg[2] == 'V';
980 * Directory Options
981 * -Bprefix -Idir -I- -Ldir -specs=file
983 static int is_directory_arg(const char* arg)
985 return arg[1] == 'B' || arg[1] == 'L' || arg[1] == 'I' || strncmp("-specs=", arg, 7) == 0;
989 * MinGW Options
990 * -mno-cygwin -mwindows -mconsole -mthreads -municode
992 static int is_mingw_arg(const char* arg)
994 static const char* mingw_switches[] =
996 "-mno-cygwin", "-mwindows", "-mconsole", "-mthreads", "-municode"
998 unsigned int j;
1000 for (j = 0; j < sizeof(mingw_switches)/sizeof(mingw_switches[0]); j++)
1001 if (strcmp(mingw_switches[j], arg) == 0) return 1;
1003 return 0;
1006 static void parse_target_option( struct options *opts, const char *target )
1008 char *p, *platform, *spec = xstrdup( target );
1009 unsigned int i;
1011 /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
1013 /* get the CPU part */
1015 if (!(p = strchr( spec, '-' ))) error( "Invalid target specification '%s'\n", target );
1016 *p++ = 0;
1017 for (i = 0; i < sizeof(cpu_names)/sizeof(cpu_names[0]); i++)
1019 if (!strcmp( cpu_names[i].name, spec ))
1021 opts->target_cpu = cpu_names[i].cpu;
1022 break;
1025 if (i == sizeof(cpu_names)/sizeof(cpu_names[0]))
1026 error( "Unrecognized CPU '%s'\n", spec );
1027 platform = p;
1028 if ((p = strrchr( p, '-' ))) platform = p + 1;
1030 /* get the OS part */
1032 opts->target_platform = PLATFORM_UNSPECIFIED; /* default value */
1033 for (i = 0; i < sizeof(platform_names)/sizeof(platform_names[0]); i++)
1035 if (!strncmp( platform_names[i].name, platform, strlen(platform_names[i].name) ))
1037 opts->target_platform = platform_names[i].platform;
1038 break;
1042 free( spec );
1043 opts->target = xstrdup( target );
1046 int main(int argc, char **argv)
1048 int i, c, next_is_arg = 0, linking = 1;
1049 int raw_compiler_arg, raw_linker_arg;
1050 const char* option_arg;
1051 struct options opts;
1052 char* lang = 0;
1053 char* str;
1055 #ifdef SIGHUP
1056 signal( SIGHUP, exit_on_signal );
1057 #endif
1058 signal( SIGTERM, exit_on_signal );
1059 signal( SIGINT, exit_on_signal );
1060 #ifdef HAVE_SIGADDSET
1061 sigemptyset( &signal_mask );
1062 sigaddset( &signal_mask, SIGHUP );
1063 sigaddset( &signal_mask, SIGTERM );
1064 sigaddset( &signal_mask, SIGINT );
1065 #endif
1067 /* setup tmp file removal at exit */
1068 tmp_files = strarray_alloc();
1069 atexit(clean_temp_files);
1071 /* initialize options */
1072 memset(&opts, 0, sizeof(opts));
1073 opts.target_cpu = build_cpu;
1074 opts.target_platform = build_platform;
1075 opts.lib_dirs = strarray_alloc();
1076 opts.files = strarray_alloc();
1077 opts.linker_args = strarray_alloc();
1078 opts.compiler_args = strarray_alloc();
1079 opts.winebuild_args = strarray_alloc();
1081 /* determine the processor type */
1082 if (strendswith(argv[0], "winecpp")) opts.processor = proc_cpp;
1083 else if (strendswith(argv[0], "++")) opts.processor = proc_cxx;
1085 /* parse options */
1086 for ( i = 1 ; i < argc ; i++ )
1088 if (argv[i][0] == '-') /* option */
1090 /* determine if tihs switch is followed by a separate argument */
1091 next_is_arg = 0;
1092 option_arg = 0;
1093 switch(argv[i][1])
1095 case 'x': case 'o': case 'D': case 'U':
1096 case 'I': case 'A': case 'l': case 'u':
1097 case 'b': case 'V': case 'G': case 'L':
1098 case 'B': case 'R': case 'z':
1099 if (argv[i][2]) option_arg = &argv[i][2];
1100 else next_is_arg = 1;
1101 break;
1102 case 'i':
1103 next_is_arg = 1;
1104 break;
1105 case 'a':
1106 if (strcmp("-aux-info", argv[i]) == 0)
1107 next_is_arg = 1;
1108 if (strcmp("-arch", argv[i]) == 0)
1109 next_is_arg = 1;
1110 break;
1111 case 'X':
1112 if (strcmp("-Xlinker", argv[i]) == 0)
1113 next_is_arg = 1;
1114 break;
1115 case 'M':
1116 c = argv[i][2];
1117 if (c == 'F' || c == 'T' || c == 'Q')
1119 if (argv[i][3]) option_arg = &argv[i][3];
1120 else next_is_arg = 1;
1122 break;
1123 case 'f':
1124 if (strcmp("-framework", argv[i]) == 0)
1125 next_is_arg = 1;
1126 break;
1128 if (next_is_arg) option_arg = argv[i+1];
1130 /* determine what options go 'as is' to the linker & the compiler */
1131 raw_compiler_arg = raw_linker_arg = 0;
1132 if (is_linker_arg(argv[i]))
1134 raw_linker_arg = 1;
1136 else
1138 if (is_directory_arg(argv[i]) || is_target_arg(argv[i]))
1139 raw_linker_arg = 1;
1140 raw_compiler_arg = !is_mingw_arg(argv[i]);
1143 /* these things we handle explicitly so we don't pass them 'as is' */
1144 if (argv[i][1] == 'l' || argv[i][1] == 'I' || argv[i][1] == 'L')
1145 raw_linker_arg = 0;
1146 if (argv[i][1] == 'c' || argv[i][1] == 'L')
1147 raw_compiler_arg = 0;
1148 if (argv[i][1] == 'o' || argv[i][1] == 'b')
1149 raw_compiler_arg = raw_linker_arg = 0;
1151 /* do a bit of semantic analysis */
1152 switch (argv[i][1])
1154 case 'B':
1155 str = strdup(option_arg);
1156 if (strendswith(str, "/tools/winebuild"))
1158 char *objdir = strdup(str);
1159 objdir[strlen(objdir) - sizeof("/tools/winebuild") + 1] = 0;
1160 opts.wine_objdir = objdir;
1161 /* don't pass it to the compiler, this generates warnings */
1162 raw_compiler_arg = raw_linker_arg = 0;
1164 if (strendswith(str, "/")) str[strlen(str) - 1] = 0;
1165 if (!opts.prefix) opts.prefix = strarray_alloc();
1166 strarray_add(opts.prefix, str);
1167 break;
1168 case 'b':
1169 parse_target_option( &opts, option_arg );
1170 break;
1171 case 'c': /* compile or assemble */
1172 if (argv[i][2] == 0) opts.compile_only = 1;
1173 /* fall through */
1174 case 'S': /* generate assembler code */
1175 case 'E': /* preprocess only */
1176 if (argv[i][2] == 0) linking = 0;
1177 break;
1178 case 'f':
1179 if (strcmp("-fno-short-wchar", argv[i]) == 0)
1180 opts.noshortwchar = 1;
1181 break;
1182 case 'l':
1183 strarray_add(opts.files, strmake("-l%s", option_arg));
1184 break;
1185 case 'L':
1186 strarray_add(opts.lib_dirs, option_arg);
1187 break;
1188 case 'M': /* map file generation */
1189 linking = 0;
1190 break;
1191 case 'm':
1192 if (strcmp("-mno-cygwin", argv[i]) == 0)
1193 opts.use_msvcrt = 1;
1194 else if (strcmp("-mwindows", argv[i]) == 0)
1195 opts.gui_app = 1;
1196 else if (strcmp("-mconsole", argv[i]) == 0)
1197 opts.gui_app = 0;
1198 else if (strcmp("-municode", argv[i]) == 0)
1199 opts.unicode_app = 1;
1200 else if (strcmp("-m32", argv[i]) == 0)
1202 opts.force_pointer_size = 4;
1203 raw_linker_arg = 1;
1205 else if (strcmp("-m64", argv[i]) == 0)
1207 opts.force_pointer_size = 8;
1208 raw_linker_arg = 1;
1210 break;
1211 case 'n':
1212 if (strcmp("-nostdinc", argv[i]) == 0)
1213 opts.nostdinc = 1;
1214 else if (strcmp("-nodefaultlibs", argv[i]) == 0)
1215 opts.nodefaultlibs = 1;
1216 else if (strcmp("-nostdlib", argv[i]) == 0)
1217 opts.nostdlib = 1;
1218 else if (strcmp("-nostartfiles", argv[i]) == 0)
1219 opts.nostartfiles = 1;
1220 break;
1221 case 'o':
1222 opts.output_name = option_arg;
1223 break;
1224 case 's':
1225 if (strcmp("-static", argv[i]) == 0)
1226 linking = -1;
1227 else if(strcmp("-save-temps", argv[i]) == 0)
1228 keep_generated = 1;
1229 else if(strcmp("-shared", argv[i]) == 0)
1231 opts.shared = 1;
1232 raw_compiler_arg = raw_linker_arg = 0;
1234 break;
1235 case 'v':
1236 if (argv[i][2] == 0) verbose++;
1237 break;
1238 case 'W':
1239 if (strncmp("-Wl,", argv[i], 4) == 0)
1241 unsigned int j;
1242 strarray* Wl = strarray_fromstring(argv[i] + 4, ",");
1243 for (j = 0; j < Wl->size; j++)
1245 if (!strcmp(Wl->base[j], "--image-base") && j < Wl->size - 1)
1247 opts.image_base = strdup( Wl->base[++j] );
1248 continue;
1250 if (!strcmp(Wl->base[j], "--section-alignment") && j < Wl->size - 1)
1252 opts.section_align = strdup( Wl->base[++j] );
1253 continue;
1255 if (!strcmp(Wl->base[j], "-static")) linking = -1;
1256 strarray_add(opts.linker_args, strmake("-Wl,%s",Wl->base[j]));
1258 strarray_free(Wl);
1259 raw_compiler_arg = raw_linker_arg = 0;
1261 else if (strncmp("-Wb,", argv[i], 4) == 0)
1263 strarray* Wb = strarray_fromstring(argv[i] + 4, ",");
1264 strarray_addall(opts.winebuild_args, Wb);
1265 strarray_free(Wb);
1266 /* don't pass it to the compiler, it generates errors */
1267 raw_compiler_arg = raw_linker_arg = 0;
1269 break;
1270 case 'x':
1271 lang = strmake("-x%s", option_arg);
1272 strarray_add(opts.files, lang);
1273 /* we'll pass these flags ourselves, explicitly */
1274 raw_compiler_arg = raw_linker_arg = 0;
1275 break;
1276 case '-':
1277 if (strcmp("-static", argv[i]+1) == 0)
1278 linking = -1;
1279 else if (!strncmp("--sysroot", argv[i], 9) && opts.wine_objdir)
1281 if (argv[i][9] == '=') opts.wine_objdir = argv[i] + 10;
1282 else opts.wine_objdir = argv[++i];
1283 raw_compiler_arg = raw_linker_arg = 0;
1285 break;
1288 /* put the arg into the appropriate bucket */
1289 if (raw_linker_arg)
1291 strarray_add(opts.linker_args, argv[i]);
1292 if (next_is_arg && (i + 1 < argc))
1293 strarray_add(opts.linker_args, argv[i + 1]);
1295 if (raw_compiler_arg)
1297 strarray_add(opts.compiler_args, argv[i]);
1298 if (next_is_arg && (i + 1 < argc))
1299 strarray_add(opts.compiler_args, argv[i + 1]);
1302 /* skip the next token if it's an argument */
1303 if (next_is_arg) i++;
1305 else
1307 strarray_add(opts.files, argv[i]);
1311 if (opts.processor == proc_cpp) linking = 0;
1312 if (linking == -1) error("Static linking is not supported\n");
1314 if (opts.files->size == 0) forward(argc, argv, &opts);
1315 else if (linking) build(&opts);
1316 else compile(&opts, lang);
1318 return 0;