d3d9: TRACE fixes.
[wine.git] / tools / winebuild / main.c
blobd1717c03d5b0f5f246b24361827400503ee71bf6
1 /*
2 * Main function
4 * Copyright 1993 Robert J. Amstadt
5 * Copyright 1995 Martin von Loewis
6 * Copyright 1995, 1996, 1997 Alexandre Julliard
7 * Copyright 1997 Eric Youngdale
8 * Copyright 1999 Ulrich Weigand
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "config.h"
26 #include "wine/port.h"
28 #include <assert.h>
29 #include <stdio.h>
30 #include <signal.h>
31 #include <errno.h>
32 #include <string.h>
33 #include <stdarg.h>
34 #include <ctype.h>
35 #ifdef HAVE_GETOPT_H
36 # include <getopt.h>
37 #endif
39 #include "build.h"
41 int UsePIC = 0;
42 int nb_lib_paths = 0;
43 int nb_errors = 0;
44 int display_warnings = 0;
45 int kill_at = 0;
46 int verbose = 0;
47 int link_ext_symbols = 0;
48 int force_pointer_size = 0;
49 int unwind_tables = 0;
51 #ifdef __i386__
52 enum target_cpu target_cpu = CPU_x86;
53 #elif defined(__x86_64__)
54 enum target_cpu target_cpu = CPU_x86_64;
55 #elif defined(__powerpc__)
56 enum target_cpu target_cpu = CPU_POWERPC;
57 #elif defined(__arm__)
58 enum target_cpu target_cpu = CPU_ARM;
59 #elif defined(__aarch64__)
60 enum target_cpu target_cpu = CPU_ARM64;
61 #else
62 #error Unsupported CPU
63 #endif
65 #ifdef __APPLE__
66 enum target_platform target_platform = PLATFORM_APPLE;
67 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
68 enum target_platform target_platform = PLATFORM_FREEBSD;
69 #elif defined(__sun)
70 enum target_platform target_platform = PLATFORM_SOLARIS;
71 #elif defined(_WIN32)
72 enum target_platform target_platform = PLATFORM_WINDOWS;
73 #else
74 enum target_platform target_platform = PLATFORM_UNSPECIFIED;
75 #endif
77 char *target_alias = NULL;
78 char **lib_path = NULL;
80 char *input_file_name = NULL;
81 char *spec_file_name = NULL;
82 FILE *output_file = NULL;
83 const char *output_file_name = NULL;
84 static const char *output_file_source_name;
85 static int fake_module;
87 struct strarray *as_command = NULL;
88 struct strarray *cc_command = NULL;
89 struct strarray *ld_command = NULL;
90 struct strarray *nm_command = NULL;
91 char *cpu_option = NULL;
93 #ifdef __thumb__
94 int thumb_mode = 1;
95 #else
96 int thumb_mode = 0;
97 #endif
99 static int nb_res_files;
100 static char **res_files;
102 /* execution mode */
103 enum exec_mode_values
105 MODE_NONE,
106 MODE_DLL,
107 MODE_EXE,
108 MODE_DEF,
109 MODE_IMPLIB,
110 MODE_RESOURCES
113 static enum exec_mode_values exec_mode = MODE_NONE;
115 static const struct
117 const char *name;
118 enum target_platform platform;
119 } platform_names[] =
121 { "macos", PLATFORM_APPLE },
122 { "darwin", PLATFORM_APPLE },
123 { "freebsd", PLATFORM_FREEBSD },
124 { "solaris", PLATFORM_SOLARIS },
125 { "mingw32", PLATFORM_WINDOWS },
126 { "windows", PLATFORM_WINDOWS },
127 { "winnt", PLATFORM_WINDOWS }
130 /* set the dll file name from the input file name */
131 static void set_dll_file_name( const char *name, DLLSPEC *spec )
133 char *p;
135 if (spec->file_name) return;
137 if ((p = strrchr( name, '\\' ))) name = p + 1;
138 if ((p = strrchr( name, '/' ))) name = p + 1;
139 spec->file_name = xmalloc( strlen(name) + 5 );
140 strcpy( spec->file_name, name );
141 if ((p = strrchr( spec->file_name, '.' )))
143 if (!strcmp( p, ".spec" ) || !strcmp( p, ".def" )) *p = 0;
147 /* set the dll name from the file name */
148 static void init_dll_name( DLLSPEC *spec )
150 if (!spec->file_name && output_file_name)
152 char *p;
153 spec->file_name = xstrdup( output_file_name );
154 if ((p = strrchr( spec->file_name, '.' ))) *p = 0;
156 if (!spec->dll_name && spec->file_name) /* set default name from file name */
158 char *p;
159 spec->dll_name = xstrdup( spec->file_name );
160 if ((p = strrchr( spec->dll_name, '.' ))) *p = 0;
164 /* set the dll subsystem */
165 static void set_subsystem( const char *subsystem, DLLSPEC *spec )
167 char *major, *minor, *str = xstrdup( subsystem );
169 if ((major = strchr( str, ':' ))) *major++ = 0;
170 if (!strcmp( str, "native" )) spec->subsystem = IMAGE_SUBSYSTEM_NATIVE;
171 else if (!strcmp( str, "windows" )) spec->subsystem = IMAGE_SUBSYSTEM_WINDOWS_GUI;
172 else if (!strcmp( str, "console" )) spec->subsystem = IMAGE_SUBSYSTEM_WINDOWS_CUI;
173 else if (!strcmp( str, "wince" )) spec->subsystem = IMAGE_SUBSYSTEM_WINDOWS_CE_GUI;
174 else if (!strcmp( str, "win16" )) spec->type = SPEC_WIN16;
175 else fatal_error( "Invalid subsystem name '%s'\n", subsystem );
176 if (major)
178 if ((minor = strchr( major, '.' )))
180 *minor++ = 0;
181 spec->subsystem_minor = atoi( minor );
183 spec->subsystem_major = atoi( major );
185 free( str );
188 /* set the target CPU and platform */
189 static void set_target( const char *target )
191 unsigned int i;
192 char *p, *platform, *spec = xstrdup( target );
194 /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
196 target_alias = xstrdup( target );
198 /* get the CPU part */
200 if ((p = strchr( spec, '-' )))
202 int cpu;
204 *p++ = 0;
205 cpu = get_cpu_from_name( spec );
206 if (cpu == -1) fatal_error( "Unrecognized CPU '%s'\n", spec );
207 target_cpu = cpu;
208 platform = p;
209 if ((p = strrchr( p, '-' ))) platform = p + 1;
211 else if (!strcmp( spec, "mingw32" ))
213 target_cpu = CPU_x86;
214 platform = spec;
216 else
217 fatal_error( "Invalid target specification '%s'\n", target );
219 /* get the OS part */
221 target_platform = PLATFORM_UNSPECIFIED; /* default value */
222 for (i = 0; i < sizeof(platform_names)/sizeof(platform_names[0]); i++)
224 if (!strncmp( platform_names[i].name, platform, strlen(platform_names[i].name) ))
226 target_platform = platform_names[i].platform;
227 break;
231 free( spec );
234 /* cleanup on program exit */
235 static void cleanup(void)
237 if (output_file_name) unlink( output_file_name );
240 /* clean things up when aborting on a signal */
241 static void exit_on_signal( int sig )
243 exit(1); /* this will call atexit functions */
246 /*******************************************************************
247 * command-line option handling
249 static const char usage_str[] =
250 "Usage: winebuild [OPTIONS] [FILES]\n\n"
251 "Options:\n"
252 " --as-cmd=AS Command to use for assembling (default: as)\n"
253 " -b, --target=TARGET Specify target CPU and platform for cross-compiling\n"
254 " --cc-cmd=CC C compiler to use for assembling (default: fall back to --as-cmd)\n"
255 " -d, --delay-lib=LIB Import the specified library in delayed mode\n"
256 " -D SYM Ignored for C flags compatibility\n"
257 " -e, --entry=FUNC Set the DLL entry point function (default: DllMain)\n"
258 " -E, --export=FILE Export the symbols defined in the .spec or .def file\n"
259 " --external-symbols Allow linking to external symbols\n"
260 " -f FLAGS Compiler flags (-fPIC and -fasynchronous-unwind-tables are supported)\n"
261 " -F, --filename=DLLFILE Set the DLL filename (default: from input file name)\n"
262 " --fake-module Create a fake binary module\n"
263 " -h, --help Display this help message\n"
264 " -H, --heap=SIZE Set the heap size for a Win16 dll\n"
265 " -I DIR Ignored for C flags compatibility\n"
266 " -k, --kill-at Kill stdcall decorations in generated .def files\n"
267 " -K, FLAGS Compiler flags (only -KPIC is supported)\n"
268 " --large-address-aware Support an address space larger than 2Gb\n"
269 " --ld-cmd=LD Command to use for linking (default: ld)\n"
270 " -l, --library=LIB Import the specified library\n"
271 " -L, --library-path=DIR Look for imports libraries in DIR\n"
272 " -m16, -m32, -m64 Force building 16-bit, 32-bit resp. 64-bit code\n"
273 " -M, --main-module=MODULE Set the name of the main module for a Win16 dll\n"
274 " --nm-cmd=NM Command to use to get undefined symbols (default: nm)\n"
275 " --nxcompat=y|n Set the NX compatibility flag (default: yes)\n"
276 " -N, --dll-name=DLLNAME Set the DLL name (default: from input file name)\n"
277 " -o, --output=NAME Set the output file name (default: stdout)\n"
278 " -r, --res=RSRC.RES Load resources from RSRC.RES\n"
279 " --save-temps Do not delete the generated intermediate files\n"
280 " --subsystem=SUBSYS Set the subsystem (one of native, windows, console, wince)\n"
281 " -u, --undefined=SYMBOL Add an undefined reference to SYMBOL when linking\n"
282 " -v, --verbose Display the programs invoked\n"
283 " --version Print the version and exit\n"
284 " -w, --warnings Turn on warnings\n"
285 "\nMode options:\n"
286 " --dll Build a .c file from a .spec or .def file\n"
287 " --def Build a .def file from a .spec file\n"
288 " --exe Build a .c file for an executable\n"
289 " --implib Build an import library\n"
290 " --resources Build a .o file for the resource files\n\n"
291 "The mode options are mutually exclusive; you must specify one and only one.\n\n";
293 enum long_options_values
295 LONG_OPT_DLL = 1,
296 LONG_OPT_DEF,
297 LONG_OPT_EXE,
298 LONG_OPT_IMPLIB,
299 LONG_OPT_ASCMD,
300 LONG_OPT_CCCMD,
301 LONG_OPT_EXTERNAL_SYMS,
302 LONG_OPT_FAKE_MODULE,
303 LONG_OPT_LARGE_ADDRESS_AWARE,
304 LONG_OPT_LDCMD,
305 LONG_OPT_NMCMD,
306 LONG_OPT_NXCOMPAT,
307 LONG_OPT_RESOURCES,
308 LONG_OPT_SAVE_TEMPS,
309 LONG_OPT_SUBSYSTEM,
310 LONG_OPT_VERSION
313 static const char short_options[] = "C:D:E:F:H:I:K:L:M:N:b:d:e:f:hkl:m:o:r:u:vw";
315 static const struct option long_options[] =
317 { "dll", 0, 0, LONG_OPT_DLL },
318 { "def", 0, 0, LONG_OPT_DEF },
319 { "exe", 0, 0, LONG_OPT_EXE },
320 { "implib", 0, 0, LONG_OPT_IMPLIB },
321 { "as-cmd", 1, 0, LONG_OPT_ASCMD },
322 { "cc-cmd", 1, 0, LONG_OPT_CCCMD },
323 { "external-symbols", 0, 0, LONG_OPT_EXTERNAL_SYMS },
324 { "fake-module", 0, 0, LONG_OPT_FAKE_MODULE },
325 { "large-address-aware", 0, 0, LONG_OPT_LARGE_ADDRESS_AWARE },
326 { "ld-cmd", 1, 0, LONG_OPT_LDCMD },
327 { "nm-cmd", 1, 0, LONG_OPT_NMCMD },
328 { "nxcompat", 1, 0, LONG_OPT_NXCOMPAT },
329 { "resources", 0, 0, LONG_OPT_RESOURCES },
330 { "save-temps", 0, 0, LONG_OPT_SAVE_TEMPS },
331 { "subsystem", 1, 0, LONG_OPT_SUBSYSTEM },
332 { "version", 0, 0, LONG_OPT_VERSION },
333 /* aliases for short options */
334 { "target", 1, 0, 'b' },
335 { "delay-lib", 1, 0, 'd' },
336 { "export", 1, 0, 'E' },
337 { "entry", 1, 0, 'e' },
338 { "filename", 1, 0, 'F' },
339 { "help", 0, 0, 'h' },
340 { "heap", 1, 0, 'H' },
341 { "kill-at", 0, 0, 'k' },
342 { "library", 1, 0, 'l' },
343 { "library-path", 1, 0, 'L' },
344 { "main-module", 1, 0, 'M' },
345 { "dll-name", 1, 0, 'N' },
346 { "output", 1, 0, 'o' },
347 { "res", 1, 0, 'r' },
348 { "undefined", 1, 0, 'u' },
349 { "verbose", 0, 0, 'v' },
350 { "warnings", 0, 0, 'w' },
351 { NULL, 0, 0, 0 }
354 static void usage( int exit_code )
356 fprintf( stderr, "%s", usage_str );
357 exit( exit_code );
360 static void set_exec_mode( enum exec_mode_values mode )
362 if (exec_mode != MODE_NONE) usage(1);
363 exec_mode = mode;
366 /* parse options from the argv array and remove all the recognized ones */
367 static char **parse_options( int argc, char **argv, DLLSPEC *spec )
369 char *p;
370 int optc;
371 int save_temps = 0;
373 while ((optc = getopt_long( argc, argv, short_options, long_options, NULL )) != -1)
375 switch(optc)
377 case 'D':
378 /* ignored */
379 break;
380 case 'E':
381 spec_file_name = xstrdup( optarg );
382 set_dll_file_name( optarg, spec );
383 break;
384 case 'F':
385 spec->file_name = xstrdup( optarg );
386 break;
387 case 'H':
388 if (!isdigit(optarg[0]))
389 fatal_error( "Expected number argument with -H option instead of '%s'\n", optarg );
390 spec->heap_size = atoi(optarg);
391 if (spec->heap_size > 65535)
392 fatal_error( "Invalid heap size %d, maximum is 65535\n", spec->heap_size );
393 break;
394 case 'I':
395 /* ignored */
396 break;
397 case 'K':
398 /* ignored, because cc generates correct code. */
399 break;
400 case 'L':
401 lib_path = xrealloc( lib_path, (nb_lib_paths+1) * sizeof(*lib_path) );
402 lib_path[nb_lib_paths++] = xstrdup( optarg );
403 break;
404 case 'm':
405 if (!strcmp( optarg, "16" )) spec->type = SPEC_WIN16;
406 else if (!strcmp( optarg, "32" )) force_pointer_size = 4;
407 else if (!strcmp( optarg, "64" )) force_pointer_size = 8;
408 else if (!strcmp( optarg, "arm" )) thumb_mode = 0;
409 else if (!strcmp( optarg, "thumb" )) thumb_mode = 1;
410 else if (!strncmp( optarg, "cpu=", 4 )) cpu_option = xstrdup( optarg + 4 );
411 else fatal_error( "Unknown -m option '%s'\n", optarg );
412 break;
413 case 'M':
414 spec->main_module = xstrdup( optarg );
415 break;
416 case 'N':
417 spec->dll_name = xstrdup( optarg );
418 break;
419 case 'b':
420 set_target( optarg );
421 break;
422 case 'd':
423 add_delayed_import( optarg );
424 break;
425 case 'e':
426 spec->init_func = xstrdup( optarg );
427 if ((p = strchr( spec->init_func, '@' ))) *p = 0; /* kill stdcall decoration */
428 break;
429 case 'f':
430 if (!strcmp( optarg, "PIC") || !strcmp( optarg, "pic")) UsePIC = 1;
431 else if (!strcmp( optarg, "asynchronous-unwind-tables")) unwind_tables = 1;
432 else if (!strcmp( optarg, "no-asynchronous-unwind-tables")) unwind_tables = 0;
433 /* ignore all other flags */
434 break;
435 case 'h':
436 usage(0);
437 break;
438 case 'k':
439 kill_at = 1;
440 break;
441 case 'l':
442 add_import_dll( optarg, NULL );
443 break;
444 case 'o':
446 char *ext = strrchr( optarg, '.' );
448 if (unlink( optarg ) == -1 && errno != ENOENT)
449 fatal_error( "Unable to create output file '%s'\n", optarg );
450 if (ext && !strcmp( ext, ".o" ))
452 output_file_source_name = get_temp_file_name( optarg, ".s" );
453 if (!(output_file = fopen( output_file_source_name, "w" )))
454 fatal_error( "Unable to create output file '%s'\n", optarg );
456 else
458 if (!(output_file = fopen( optarg, "w" )))
459 fatal_error( "Unable to create output file '%s'\n", optarg );
461 output_file_name = xstrdup(optarg);
462 atexit( cleanup ); /* make sure we remove the output file on exit */
464 break;
465 case 'r':
466 res_files = xrealloc( res_files, (nb_res_files+1) * sizeof(*res_files) );
467 res_files[nb_res_files++] = xstrdup( optarg );
468 break;
469 case 'u':
470 add_extra_ld_symbol( optarg );
471 break;
472 case 'v':
473 verbose++;
474 break;
475 case 'w':
476 display_warnings = 1;
477 break;
478 case LONG_OPT_DLL:
479 set_exec_mode( MODE_DLL );
480 break;
481 case LONG_OPT_DEF:
482 set_exec_mode( MODE_DEF );
483 break;
484 case LONG_OPT_EXE:
485 set_exec_mode( MODE_EXE );
486 if (!spec->subsystem) spec->subsystem = IMAGE_SUBSYSTEM_WINDOWS_GUI;
487 break;
488 case LONG_OPT_IMPLIB:
489 set_exec_mode( MODE_IMPLIB );
490 break;
491 case LONG_OPT_ASCMD:
492 as_command = strarray_fromstring( optarg, " " );
493 break;
494 case LONG_OPT_CCCMD:
495 cc_command = strarray_fromstring( optarg, " " );
496 break;
497 case LONG_OPT_FAKE_MODULE:
498 fake_module = 1;
499 break;
500 case LONG_OPT_EXTERNAL_SYMS:
501 link_ext_symbols = 1;
502 break;
503 case LONG_OPT_LARGE_ADDRESS_AWARE:
504 spec->characteristics |= IMAGE_FILE_LARGE_ADDRESS_AWARE;
505 break;
506 case LONG_OPT_LDCMD:
507 ld_command = strarray_fromstring( optarg, " " );
508 break;
509 case LONG_OPT_NMCMD:
510 nm_command = strarray_fromstring( optarg, " " );
511 break;
512 case LONG_OPT_NXCOMPAT:
513 if (optarg[0] == 'n' || optarg[0] == 'N')
514 spec->dll_characteristics &= ~IMAGE_DLLCHARACTERISTICS_NX_COMPAT;
515 break;
516 case LONG_OPT_RESOURCES:
517 set_exec_mode( MODE_RESOURCES );
518 break;
519 case LONG_OPT_SAVE_TEMPS:
520 save_temps = 1;
521 break;
522 case LONG_OPT_SUBSYSTEM:
523 set_subsystem( optarg, spec );
524 break;
525 case LONG_OPT_VERSION:
526 printf( "winebuild version " PACKAGE_VERSION "\n" );
527 exit(0);
528 case '?':
529 usage(1);
530 break;
534 if (!save_temps) atexit( cleanup_tmp_files );
536 if (spec->file_name && !strchr( spec->file_name, '.' ))
537 strcat( spec->file_name, exec_mode == MODE_EXE ? ".exe" : ".dll" );
538 init_dll_name( spec );
540 switch (target_cpu)
542 case CPU_x86:
543 if (force_pointer_size == 8) target_cpu = CPU_x86_64;
544 break;
545 case CPU_x86_64:
546 if (force_pointer_size == 4) target_cpu = CPU_x86;
547 break;
548 default:
549 if (force_pointer_size == 8)
550 fatal_error( "Cannot build 64-bit code for this CPU\n" );
551 break;
554 return &argv[optind];
558 /* load all specified resource files */
559 static void load_resources( char *argv[], DLLSPEC *spec )
561 int i;
562 char **ptr, **last;
564 switch (spec->type)
566 case SPEC_WIN16:
567 for (i = 0; i < nb_res_files; i++) load_res16_file( res_files[i], spec );
568 break;
570 case SPEC_WIN32:
571 for (i = 0; i < nb_res_files; i++)
573 if (!load_res32_file( res_files[i], spec ))
574 fatal_error( "%s is not a valid Win32 resource file\n", res_files[i] );
577 /* load any resource file found in the remaining arguments */
578 for (ptr = last = argv; *ptr; ptr++)
580 if (!load_res32_file( *ptr, spec ))
581 *last++ = *ptr; /* not a resource file, keep it in the list */
583 *last = NULL;
584 break;
588 /* add input files that look like import libs to the import list */
589 static void load_import_libs( char *argv[] )
591 char **ptr, **last;
593 for (ptr = last = argv; *ptr; ptr++)
595 if (strendswith( *ptr, ".def" ))
596 add_import_dll( NULL, *ptr );
597 else
598 *last++ = *ptr; /* not an import dll, keep it in the list */
600 *last = NULL;
603 static int parse_input_file( DLLSPEC *spec )
605 FILE *input_file = open_input_file( NULL, spec_file_name );
606 char *extension = strrchr( spec_file_name, '.' );
607 int result;
609 spec->src_name = xstrdup( input_file_name );
610 if (extension && !strcmp( extension, ".def" ))
611 result = parse_def_file( input_file, spec );
612 else
613 result = parse_spec_file( input_file, spec );
614 close_input_file( input_file );
615 return result;
619 /*******************************************************************
620 * main
622 int main(int argc, char **argv)
624 DLLSPEC *spec = alloc_dll_spec();
626 #ifdef SIGHUP
627 signal( SIGHUP, exit_on_signal );
628 #endif
629 signal( SIGTERM, exit_on_signal );
630 signal( SIGINT, exit_on_signal );
632 output_file = stdout;
633 argv = parse_options( argc, argv, spec );
635 switch(exec_mode)
637 case MODE_DLL:
638 if (spec->subsystem != IMAGE_SUBSYSTEM_NATIVE)
639 spec->characteristics |= IMAGE_FILE_DLL;
640 /* fall through */
641 case MODE_EXE:
642 load_resources( argv, spec );
643 load_import_libs( argv );
644 if (spec_file_name && !parse_input_file( spec )) break;
645 if (fake_module)
647 if (spec->type == SPEC_WIN16) output_fake_module16( spec );
648 else output_fake_module( spec );
649 break;
651 read_undef_symbols( spec, argv );
652 switch (spec->type)
654 case SPEC_WIN16:
655 output_spec16_file( spec );
656 break;
657 case SPEC_WIN32:
658 BuildSpec32File( spec );
659 break;
660 default: assert(0);
662 break;
663 case MODE_DEF:
664 if (argv[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv[0] );
665 if (!spec_file_name) fatal_error( "missing .spec file\n" );
666 if (!parse_input_file( spec )) break;
667 output_def_file( spec, 1 );
668 break;
669 case MODE_IMPLIB:
670 if (!spec_file_name) fatal_error( "missing .spec file\n" );
671 if (!parse_input_file( spec )) break;
672 output_import_lib( spec, argv );
673 break;
674 case MODE_RESOURCES:
675 load_resources( argv, spec );
676 output_res_o_file( spec );
677 break;
678 default:
679 usage(1);
680 break;
682 if (nb_errors) exit(1);
683 if (output_file_name)
685 if (fclose( output_file ) < 0) fatal_perror( "fclose" );
686 if (output_file_source_name) assemble_file( output_file_source_name, output_file_name );
687 output_file_name = NULL;
689 return 0;