static control: Separate WM_NCCREATE and WM_SETTEXT.
[wine/multimedia.git] / tools / winebuild / main.c
blob98da64376fd19600f22325b2f39cd93d0f2424e1
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 "windef.h"
40 #include "winbase.h"
41 #include "build.h"
43 int UsePIC = 0;
44 int nb_lib_paths = 0;
45 int nb_errors = 0;
46 int display_warnings = 0;
47 int kill_at = 0;
48 int verbose = 0;
49 int save_temps = 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(__sparc__)
56 enum target_cpu target_cpu = CPU_SPARC;
57 #elif defined(__ALPHA__)
58 enum target_cpu target_cpu = CPU_ALPHA;
59 #elif defined(__powerpc__)
60 enum target_cpu target_cpu = CPU_POWERPC;
61 #else
62 #error Unsupported CPU
63 #endif
65 #ifdef __APPLE__
66 enum target_platform target_platform = PLATFORM_APPLE;
67 #elif defined(__svr4__)
68 enum target_platform target_platform = PLATFORM_SVR4;
69 #elif defined(_WINDOWS)
70 enum target_platform target_platform = PLATFORM_WINDOWS;
71 #else
72 enum target_platform target_platform = PLATFORM_UNSPECIFIED;
73 #endif
75 char **lib_path = NULL;
77 char *input_file_name = NULL;
78 char *spec_file_name = NULL;
79 const char *output_file_name = NULL;
80 static const char *output_file_source_name;
82 char *as_command = NULL;
83 char *ld_command = NULL;
84 char *nm_command = NULL;
86 static FILE *output_file;
87 static int nb_res_files;
88 static char **res_files;
90 /* execution mode */
91 enum exec_mode_values
93 MODE_NONE,
94 MODE_DLL,
95 MODE_EXE,
96 MODE_DEF,
97 MODE_RELAY16,
98 MODE_RELAY32
101 static enum exec_mode_values exec_mode = MODE_NONE;
103 static const struct
105 const char *name;
106 enum target_cpu cpu;
107 } cpu_names[] =
109 { "i386", CPU_x86 },
110 { "i486", CPU_x86 },
111 { "i586", CPU_x86 },
112 { "i686", CPU_x86 },
113 { "i786", CPU_x86 },
114 { "x86_64", CPU_x86_64 },
115 { "sparc", CPU_SPARC },
116 { "alpha", CPU_ALPHA },
117 { "powerpc", CPU_POWERPC }
120 static const struct
122 const char *name;
123 enum target_platform platform;
124 } platform_names[] =
126 { "macos", PLATFORM_APPLE },
127 { "darwin", PLATFORM_APPLE },
128 { "sunos", PLATFORM_SVR4 },
129 { "windows", PLATFORM_WINDOWS },
130 { "winnt", PLATFORM_WINDOWS }
133 /* set the dll file name from the input file name */
134 static void set_dll_file_name( const char *name, DLLSPEC *spec )
136 char *p;
138 if (spec->file_name) return;
140 if ((p = strrchr( name, '\\' ))) name = p + 1;
141 if ((p = strrchr( name, '/' ))) name = p + 1;
142 spec->file_name = xmalloc( strlen(name) + 5 );
143 strcpy( spec->file_name, name );
144 if ((p = strrchr( spec->file_name, '.' )))
146 if (!strcmp( p, ".spec" ) || !strcmp( p, ".def" )) *p = 0;
150 /* set the dll subsystem */
151 static void set_subsystem( const char *subsystem, DLLSPEC *spec )
153 char *major, *minor, *str = xstrdup( subsystem );
155 if ((major = strchr( str, ':' ))) *major++ = 0;
156 if (!strcmp( str, "native" )) spec->subsystem = IMAGE_SUBSYSTEM_NATIVE;
157 else if (!strcmp( str, "windows" )) spec->subsystem = IMAGE_SUBSYSTEM_WINDOWS_GUI;
158 else if (!strcmp( str, "console" )) spec->subsystem = IMAGE_SUBSYSTEM_WINDOWS_CUI;
159 else fatal_error( "Invalid subsystem name '%s'\n", subsystem );
160 if (major)
162 if ((minor = strchr( major, '.' )))
164 *minor++ = 0;
165 spec->subsystem_minor = atoi( minor );
167 spec->subsystem_major = atoi( major );
169 free( str );
172 /* set the target CPU and platform */
173 static void set_target( const char *target )
175 unsigned int i;
176 char *p, *platform, *spec = xstrdup( target );
178 /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
180 /* get the CPU part */
182 if (!(p = strchr( spec, '-' ))) fatal_error( "Invalid target specification '%s'\n", target );
183 *p++ = 0;
184 for (i = 0; i < sizeof(cpu_names)/sizeof(cpu_names[0]); i++)
186 if (!strcmp( cpu_names[i].name, spec )) break;
188 if (i < sizeof(cpu_names)/sizeof(cpu_names[0])) target_cpu = cpu_names[i].cpu;
189 else fatal_error( "Unrecognized CPU '%s'\n", spec );
191 platform = p;
192 if ((p = strrchr( p, '-' ))) platform = p + 1;
194 /* get the OS part */
196 target_platform = PLATFORM_UNSPECIFIED; /* default value */
197 for (i = 0; i < sizeof(platform_names)/sizeof(platform_names[0]); i++)
199 if (!strncmp( platform_names[i].name, platform, strlen(platform_names[i].name) ))
201 target_platform = platform_names[i].platform;
202 break;
206 free( spec );
208 if (!as_command)
210 as_command = xmalloc( strlen(target) + sizeof("-as") );
211 strcpy( as_command, target );
212 strcat( as_command, "-as" );
214 if (!ld_command)
216 ld_command = xmalloc( strlen(target) + sizeof("-ld") );
217 strcpy( ld_command, target );
218 strcat( ld_command, "-ld" );
220 if (!nm_command)
222 nm_command = xmalloc( strlen(target) + sizeof("-nm") );
223 strcpy( nm_command, target );
224 strcat( nm_command, "-nm" );
228 /* cleanup on program exit */
229 static void cleanup(void)
231 if (output_file_name) unlink( output_file_name );
234 /* clean things up when aborting on a signal */
235 static void exit_on_signal( int sig )
237 exit(1); /* this will call atexit functions */
240 /*******************************************************************
241 * command-line option handling
243 static const char usage_str[] =
244 "Usage: winebuild [OPTIONS] [FILES]\n\n"
245 "Options:\n"
246 " --as-cmd=AS Command to use for assembling (default: as)\n"
247 " -d, --delay-lib=LIB Import the specified library in delayed mode\n"
248 " -D SYM Ignored for C flags compatibility\n"
249 " -E, --export=FILE Export the symbols defined in the .spec or .def file\n"
250 " -e, --entry=FUNC Set the DLL entry point function (default: DllMain)\n"
251 " -f FLAGS Compiler flags (only -fPIC is supported)\n"
252 " -F, --filename=DLLFILE Set the DLL filename (default: from input file name)\n"
253 " -h, --help Display this help message\n"
254 " -H, --heap=SIZE Set the heap size for a Win16 dll\n"
255 " -i, --ignore=SYM[,SYM] Ignore specified symbols when resolving imports\n"
256 " -I DIR Ignored for C flags compatibility\n"
257 " -k, --kill-at Kill stdcall decorations in generated .def files\n"
258 " -K, FLAGS Compiler flags (only -KPIC is supported)\n"
259 " --ld-cmd=LD Command to use for linking (default: ld)\n"
260 " -l, --library=LIB Import the specified library\n"
261 " -L, --library-path=DIR Look for imports libraries in DIR\n"
262 " -M, --main-module=MODULE Set the name of the main module for a Win16 dll\n"
263 " --nm-cmd=NM Command to use to get undefined symbols (default: nm)\n"
264 " -N, --dll-name=DLLNAME Set the DLL name (default: from input file name)\n"
265 " -o, --output=NAME Set the output file name (default: stdout)\n"
266 " -r, --res=RSRC.RES Load resources from RSRC.RES\n"
267 " --save-temps Do not delete the generated intermediate files\n"
268 " --subsystem=SUBSYS Set the subsystem (one of native, windows, console)\n"
269 " --target=TARGET Specify target CPU and platform for cross-compiling\n"
270 " -u, --undefined=SYMBOL Add an undefined reference to SYMBOL when linking\n"
271 " -v, --verbose Display the programs invoked\n"
272 " --version Print the version and exit\n"
273 " -w, --warnings Turn on warnings\n"
274 "\nMode options:\n"
275 " --dll Build a .c file from a .spec or .def file\n"
276 " --def Build a .def file from a .spec file\n"
277 " --exe Build a .c file for an executable\n"
278 " --relay16 Build the 16-bit relay assembly routines\n"
279 " --relay32 Build the 32-bit relay assembly routines\n\n"
280 "The mode options are mutually exclusive; you must specify one and only one.\n\n";
282 enum long_options_values
284 LONG_OPT_DLL = 1,
285 LONG_OPT_DEF,
286 LONG_OPT_EXE,
287 LONG_OPT_ASCMD,
288 LONG_OPT_LDCMD,
289 LONG_OPT_NMCMD,
290 LONG_OPT_RELAY16,
291 LONG_OPT_RELAY32,
292 LONG_OPT_SAVE_TEMPS,
293 LONG_OPT_SUBSYSTEM,
294 LONG_OPT_TARGET,
295 LONG_OPT_VERSION
298 static const char short_options[] = "C:D:E:F:H:I:K:L:M:N:d:e:f:hi:kl:m:o:r:u:vw";
300 static const struct option long_options[] =
302 { "dll", 0, 0, LONG_OPT_DLL },
303 { "def", 0, 0, LONG_OPT_DEF },
304 { "exe", 0, 0, LONG_OPT_EXE },
305 { "as-cmd", 1, 0, LONG_OPT_ASCMD },
306 { "ld-cmd", 1, 0, LONG_OPT_LDCMD },
307 { "nm-cmd", 1, 0, LONG_OPT_NMCMD },
308 { "relay16", 0, 0, LONG_OPT_RELAY16 },
309 { "relay32", 0, 0, LONG_OPT_RELAY32 },
310 { "save-temps",0, 0, LONG_OPT_SAVE_TEMPS },
311 { "subsystem",1, 0, LONG_OPT_SUBSYSTEM },
312 { "target", 1, 0, LONG_OPT_TARGET },
313 { "version", 0, 0, LONG_OPT_VERSION },
314 /* aliases for short options */
315 { "delay-lib", 1, 0, 'd' },
316 { "export", 1, 0, 'E' },
317 { "entry", 1, 0, 'e' },
318 { "filename", 1, 0, 'F' },
319 { "help", 0, 0, 'h' },
320 { "heap", 1, 0, 'H' },
321 { "ignore", 1, 0, 'i' },
322 { "kill-at", 0, 0, 'k' },
323 { "library", 1, 0, 'l' },
324 { "library-path", 1, 0, 'L' },
325 { "main-module", 1, 0, 'M' },
326 { "dll-name", 1, 0, 'N' },
327 { "output", 1, 0, 'o' },
328 { "res", 1, 0, 'r' },
329 { "undefined", 1, 0, 'u' },
330 { "verbose", 0, 0, 'v' },
331 { "warnings", 0, 0, 'w' },
332 { NULL, 0, 0, 0 }
335 static void usage( int exit_code )
337 fprintf( stderr, "%s", usage_str );
338 exit( exit_code );
341 static void set_exec_mode( enum exec_mode_values mode )
343 if (exec_mode != MODE_NONE) usage(1);
344 exec_mode = mode;
347 /* parse options from the argv array and remove all the recognized ones */
348 static char **parse_options( int argc, char **argv, DLLSPEC *spec )
350 char *p;
351 int optc;
353 while ((optc = getopt_long( argc, argv, short_options, long_options, NULL )) != -1)
355 switch(optc)
357 case 'D':
358 /* ignored */
359 break;
360 case 'E':
361 spec_file_name = xstrdup( optarg );
362 set_dll_file_name( optarg, spec );
363 break;
364 case 'F':
365 spec->file_name = xstrdup( optarg );
366 break;
367 case 'H':
368 if (!isdigit(optarg[0]))
369 fatal_error( "Expected number argument with -H option instead of '%s'\n", optarg );
370 spec->heap_size = atoi(optarg);
371 if (spec->heap_size > 65535)
372 fatal_error( "Invalid heap size %d, maximum is 65535\n", spec->heap_size );
373 break;
374 case 'I':
375 /* ignored */
376 break;
377 case 'K':
378 /* ignored, because cc generates correct code. */
379 break;
380 case 'L':
381 lib_path = xrealloc( lib_path, (nb_lib_paths+1) * sizeof(*lib_path) );
382 lib_path[nb_lib_paths++] = xstrdup( optarg );
383 break;
384 case 'M':
385 spec->type = SPEC_WIN16;
386 break;
387 case 'N':
388 spec->dll_name = xstrdup( optarg );
389 break;
390 case 'd':
391 add_delayed_import( optarg );
392 break;
393 case 'e':
394 spec->init_func = xstrdup( optarg );
395 if ((p = strchr( spec->init_func, '@' ))) *p = 0; /* kill stdcall decoration */
396 break;
397 case 'f':
398 if (!strcmp( optarg, "PIC") || !strcmp( optarg, "pic")) UsePIC = 1;
399 /* ignore all other flags */
400 break;
401 case 'h':
402 usage(0);
403 break;
404 case 'i':
406 char *str = xstrdup( optarg );
407 char *token = strtok( str, "," );
408 while (token)
410 add_ignore_symbol( token );
411 token = strtok( NULL, "," );
413 free( str );
415 break;
416 case 'k':
417 kill_at = 1;
418 break;
419 case 'l':
420 add_import_dll( optarg, NULL );
421 break;
422 case 'o':
424 char *ext = strrchr( optarg, '.' );
426 if (unlink( optarg ) == -1 && errno != ENOENT)
427 fatal_error( "Unable to create output file '%s'\n", optarg );
428 if (ext && !strcmp( ext, ".o" ))
430 output_file_source_name = get_temp_file_name( optarg, ".s" );
431 if (!(output_file = fopen( output_file_source_name, "w" )))
432 fatal_error( "Unable to create output file '%s'\n", optarg );
434 else
436 if (!(output_file = fopen( optarg, "w" )))
437 fatal_error( "Unable to create output file '%s'\n", optarg );
439 output_file_name = xstrdup(optarg);
440 atexit( cleanup ); /* make sure we remove the output file on exit */
442 break;
443 case 'r':
444 res_files = xrealloc( res_files, (nb_res_files+1) * sizeof(*res_files) );
445 res_files[nb_res_files++] = xstrdup( optarg );
446 break;
447 case 'u':
448 add_extra_ld_symbol( optarg );
449 break;
450 case 'v':
451 verbose++;
452 break;
453 case 'w':
454 display_warnings = 1;
455 break;
456 case LONG_OPT_DLL:
457 set_exec_mode( MODE_DLL );
458 break;
459 case LONG_OPT_DEF:
460 set_exec_mode( MODE_DEF );
461 break;
462 case LONG_OPT_EXE:
463 set_exec_mode( MODE_EXE );
464 if (!spec->subsystem) spec->subsystem = IMAGE_SUBSYSTEM_WINDOWS_GUI;
465 break;
466 case LONG_OPT_ASCMD:
467 as_command = xstrdup( optarg );
468 break;
469 case LONG_OPT_LDCMD:
470 ld_command = xstrdup( optarg );
471 break;
472 case LONG_OPT_NMCMD:
473 nm_command = xstrdup( optarg );
474 break;
475 case LONG_OPT_RELAY16:
476 set_exec_mode( MODE_RELAY16 );
477 break;
478 case LONG_OPT_RELAY32:
479 set_exec_mode( MODE_RELAY32 );
480 break;
481 case LONG_OPT_SAVE_TEMPS:
482 save_temps = 1;
483 break;
484 case LONG_OPT_SUBSYSTEM:
485 set_subsystem( optarg, spec );
486 break;
487 case LONG_OPT_TARGET:
488 set_target( optarg );
489 break;
490 case LONG_OPT_VERSION:
491 printf( "winebuild version " PACKAGE_VERSION "\n" );
492 exit(0);
493 case '?':
494 usage(1);
495 break;
499 if (spec->file_name && !strchr( spec->file_name, '.' ))
500 strcat( spec->file_name, exec_mode == MODE_EXE ? ".exe" : ".dll" );
502 return &argv[optind];
506 /* load all specified resource files */
507 static void load_resources( char *argv[], DLLSPEC *spec )
509 int i;
510 char **ptr, **last;
512 switch (spec->type)
514 case SPEC_WIN16:
515 for (i = 0; i < nb_res_files; i++) load_res16_file( res_files[i], spec );
516 break;
518 case SPEC_WIN32:
519 for (i = 0; i < nb_res_files; i++)
521 if (!load_res32_file( res_files[i], spec ))
522 fatal_error( "%s is not a valid Win32 resource file\n", res_files[i] );
525 /* load any resource file found in the remaining arguments */
526 for (ptr = last = argv; *ptr; ptr++)
528 if (!load_res32_file( *ptr, spec ))
529 *last++ = *ptr; /* not a resource file, keep it in the list */
531 *last = NULL;
532 break;
536 /* add input files that look like import libs to the import list */
537 static void load_import_libs( char *argv[] )
539 char **ptr, **last;
541 for (ptr = last = argv; *ptr; ptr++)
543 if (strendswith( *ptr, ".def" ))
544 add_import_dll( NULL, *ptr );
545 else
546 *last++ = *ptr; /* not an import dll, keep it in the list */
548 *last = NULL;
551 static int parse_input_file( DLLSPEC *spec )
553 FILE *input_file = open_input_file( NULL, spec_file_name );
554 char *extension = strrchr( spec_file_name, '.' );
555 int result;
557 if (extension && !strcmp( extension, ".def" ))
558 result = parse_def_file( input_file, spec );
559 else
560 result = parse_spec_file( input_file, spec );
561 close_input_file( input_file );
562 return result;
566 /*******************************************************************
567 * main
569 int main(int argc, char **argv)
571 DLLSPEC *spec = alloc_dll_spec();
573 #ifdef SIGHUP
574 signal( SIGHUP, exit_on_signal );
575 #endif
576 signal( SIGTERM, exit_on_signal );
577 signal( SIGINT, exit_on_signal );
579 output_file = stdout;
580 argv = parse_options( argc, argv, spec );
582 switch(exec_mode)
584 case MODE_DLL:
585 spec->characteristics |= IMAGE_FILE_DLL;
586 load_resources( argv, spec );
587 load_import_libs( argv );
588 if (!spec_file_name) fatal_error( "missing .spec file\n" );
589 if (!parse_input_file( spec )) break;
590 switch (spec->type)
592 case SPEC_WIN16:
593 if (argv[0])
594 fatal_error( "file argument '%s' not allowed in this mode\n", argv[0] );
595 BuildSpec16File( output_file, spec );
596 break;
597 case SPEC_WIN32:
598 read_undef_symbols( spec, argv );
599 BuildSpec32File( output_file, spec );
600 break;
601 default: assert(0);
603 break;
604 case MODE_EXE:
605 if (spec->type == SPEC_WIN16) fatal_error( "Cannot build 16-bit exe files\n" );
606 if (!spec->file_name) fatal_error( "executable must be named via the -F option\n" );
607 load_resources( argv, spec );
608 load_import_libs( argv );
609 if (spec_file_name && !parse_input_file( spec )) break;
610 read_undef_symbols( spec, argv );
611 BuildSpec32File( output_file, spec );
612 break;
613 case MODE_DEF:
614 if (argv[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv[0] );
615 if (spec->type == SPEC_WIN16) fatal_error( "Cannot yet build .def file for 16-bit dlls\n" );
616 if (!spec_file_name) fatal_error( "missing .spec file\n" );
617 if (!parse_input_file( spec )) break;
618 BuildDef32File( output_file, spec );
619 break;
620 case MODE_RELAY16:
621 if (argv[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv[0] );
622 BuildRelays16( output_file );
623 break;
624 case MODE_RELAY32:
625 if (argv[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv[0] );
626 BuildRelays32( output_file );
627 break;
628 default:
629 usage(1);
630 break;
632 if (nb_errors) exit(1);
633 if (output_file_name)
635 fclose( output_file );
636 if (output_file_source_name) assemble_file( output_file_source_name, output_file_name );
637 output_file_name = NULL;
639 return 0;