Added a --undefined option to allow forcing some symbols to be
[wine/wine-kai.git] / tools / winebuild / main.c
blob60242150bdd11e8d8fd4ebeb8cb897824251dcd8
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_debug_channels = 0;
45 int nb_lib_paths = 0;
46 int nb_errors = 0;
47 int display_warnings = 0;
48 int kill_at = 0;
50 #ifdef __i386__
51 enum target_cpu target_cpu = CPU_x86;
52 #elif defined(__sparc__)
53 enum target_cpu target_cpu = CPU_SPARC;
54 #elif defined(__ALPHA__)
55 enum target_cpu target_cpu = CPU_ALPHA;
56 #elif defined(__powerpc__)
57 enum target_cpu target_cpu = CPU_POWERPC;
58 #else
59 #error Unsupported CPU
60 #endif
62 #ifdef __APPLE__
63 enum target_platform target_platform = PLATFORM_APPLE;
64 #elif defined(__svr4__)
65 enum target_platform target_platform = PLATFORM_SVR4;
66 #elif defined(_WINDOWS)
67 enum target_platform target_platform = PLATFORM_WINDOWS;
68 #else
69 enum target_platform target_platform = PLATFORM_UNSPECIFIED;
70 #endif
72 char **debug_channels = NULL;
73 char **lib_path = NULL;
75 char *input_file_name = NULL;
76 char *spec_file_name = NULL;
77 const char *output_file_name = NULL;
79 char *ld_command = NULL;
80 char *nm_command = NULL;
82 static FILE *output_file;
83 static const char *current_src_dir;
84 static int nb_res_files;
85 static char **res_files;
87 /* execution mode */
88 enum exec_mode_values
90 MODE_NONE,
91 MODE_DLL,
92 MODE_EXE,
93 MODE_DEF,
94 MODE_DEBUG,
95 MODE_RELAY16,
96 MODE_RELAY32
99 static enum exec_mode_values exec_mode = MODE_NONE;
101 static const struct
103 const char *name;
104 enum target_cpu cpu;
105 } cpu_names[] =
107 { "i386", CPU_x86 },
108 { "i486", CPU_x86 },
109 { "i586", CPU_x86 },
110 { "i686", CPU_x86 },
111 { "i786", CPU_x86 },
112 { "sparc", CPU_SPARC },
113 { "alpha", CPU_ALPHA },
114 { "powerpc", CPU_POWERPC }
117 static const struct
119 const char *name;
120 enum target_platform platform;
121 } platform_names[] =
123 { "macos", PLATFORM_APPLE },
124 { "darwin", PLATFORM_APPLE },
125 { "sunos", PLATFORM_SVR4 },
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 subsystem */
148 static void set_subsystem( const char *subsystem, DLLSPEC *spec )
150 char *major, *minor, *str = xstrdup( subsystem );
152 if ((major = strchr( str, ':' ))) *major++ = 0;
153 if (!strcmp( str, "native" )) spec->subsystem = IMAGE_SUBSYSTEM_NATIVE;
154 else if (!strcmp( str, "windows" )) spec->subsystem = IMAGE_SUBSYSTEM_WINDOWS_GUI;
155 else if (!strcmp( str, "console" )) spec->subsystem = IMAGE_SUBSYSTEM_WINDOWS_CUI;
156 else fatal_error( "Invalid subsystem name '%s'\n", subsystem );
157 if (major)
159 if ((minor = strchr( major, '.' )))
161 *minor++ = 0;
162 spec->subsystem_minor = atoi( minor );
164 spec->subsystem_major = atoi( major );
166 free( str );
169 /* set the target CPU and platform */
170 static void set_target( const char *target )
172 unsigned int i;
173 char *p, *platform, *spec = xstrdup( target );
175 /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
177 /* get the CPU part */
179 if (!(p = strchr( spec, '-' ))) fatal_error( "Invalid target specification '%s'\n", target );
180 *p++ = 0;
181 for (i = 0; i < sizeof(cpu_names)/sizeof(cpu_names[0]); i++)
183 if (!strcmp( cpu_names[i].name, spec )) break;
185 if (i < sizeof(cpu_names)/sizeof(cpu_names[0])) target_cpu = cpu_names[i].cpu;
186 else fatal_error( "Unrecognized CPU '%s'\n", spec );
188 platform = p;
189 if ((p = strrchr( p, '-' ))) platform = p + 1;
191 /* get the OS part */
193 target_platform = PLATFORM_UNSPECIFIED; /* default value */
194 for (i = 0; i < sizeof(platform_names)/sizeof(platform_names[0]); i++)
196 if (!strncmp( platform_names[i].name, platform, strlen(platform_names[i].name) ))
198 target_platform = platform_names[i].platform;
199 break;
203 free( spec );
205 if (!ld_command)
207 ld_command = xmalloc( strlen(target) + sizeof("-ld") );
208 strcpy( ld_command, target );
209 strcat( ld_command, "-ld" );
211 if (!nm_command)
213 nm_command = xmalloc( strlen(target) + sizeof("-nm") );
214 strcpy( nm_command, target );
215 strcat( nm_command, "-nm" );
219 /* cleanup on program exit */
220 static void cleanup(void)
222 if (output_file_name) unlink( output_file_name );
225 /* clean things up when aborting on a signal */
226 static void exit_on_signal( int sig )
228 exit(1); /* this will call atexit functions */
231 /*******************************************************************
232 * command-line option handling
234 static const char usage_str[] =
235 "Usage: winebuild [OPTIONS] [FILES]\n\n"
236 "Options:\n"
237 " -C, --source-dir=DIR Look for source files in DIR\n"
238 " -d, --delay-lib=LIB Import the specified library in delayed mode\n"
239 " -D SYM Ignored for C flags compatibility\n"
240 " -E, --export=FILE Export the symbols defined in the .spec or .def file\n"
241 " -e, --entry=FUNC Set the DLL entry point function (default: DllMain)\n"
242 " -f FLAGS Compiler flags (only -fPIC is supported)\n"
243 " -F, --filename=DLLFILE Set the DLL filename (default: from input file name)\n"
244 " -h, --help Display this help message\n"
245 " -H, --heap=SIZE Set the heap size for a Win16 dll\n"
246 " -i, --ignore=SYM[,SYM] Ignore specified symbols when resolving imports\n"
247 " -I DIR Ignored for C flags compatibility\n"
248 " -k, --kill-at Kill stdcall decorations in generated .def files\n"
249 " -K, FLAGS Compiler flags (only -KPIC is supported)\n"
250 " --ld-cmd=LD Command to use for linking (default: ld)\n"
251 " -l, --library=LIB Import the specified library\n"
252 " -L, --library-path=DIR Look for imports libraries in DIR\n"
253 " -M, --main-module=MODULE Set the name of the main module for a Win16 dll\n"
254 " --nm-cmd=NM Command to use to get undefined symbols (default: nm)\n"
255 " -N, --dll-name=DLLNAME Set the DLL name (default: from input file name)\n"
256 " -o, --output=NAME Set the output file name (default: stdout)\n"
257 " -r, --res=RSRC.RES Load resources from RSRC.RES\n"
258 " --subsystem=SUBSYS Set the subsystem (one of native, windows, console)\n"
259 " --target=TARGET Specify target CPU and platform for cross-compiling\n"
260 " -u, --undefined=SYMBOL Add an undefined reference to SYMBOL when linking\n"
261 " --version Print the version and exit\n"
262 " -w, --warnings Turn on warnings\n"
263 "\nMode options:\n"
264 " --dll Build a .c file from a .spec or .def file\n"
265 " --def Build a .def file from a .spec file\n"
266 " --exe Build a .c file for an executable\n"
267 " --debug [FILES] Build a .c file with the debug channels declarations\n"
268 " --relay16 Build the 16-bit relay assembly routines\n"
269 " --relay32 Build the 32-bit relay assembly routines\n\n"
270 "The mode options are mutually exclusive; you must specify one and only one.\n\n";
272 enum long_options_values
274 LONG_OPT_DLL = 1,
275 LONG_OPT_DEF,
276 LONG_OPT_EXE,
277 LONG_OPT_DEBUG,
278 LONG_OPT_LDCMD,
279 LONG_OPT_NMCMD,
280 LONG_OPT_RELAY16,
281 LONG_OPT_RELAY32,
282 LONG_OPT_SUBSYSTEM,
283 LONG_OPT_TARGET,
284 LONG_OPT_VERSION
287 static const char short_options[] = "C:D:E:F:H:I:K:L:M:N:d:e:f:hi:kl:m:o:r:u:w";
289 static const struct option long_options[] =
291 { "dll", 0, 0, LONG_OPT_DLL },
292 { "def", 0, 0, LONG_OPT_DEF },
293 { "exe", 0, 0, LONG_OPT_EXE },
294 { "debug", 0, 0, LONG_OPT_DEBUG },
295 { "ld-cmd", 1, 0, LONG_OPT_LDCMD },
296 { "nm-cmd", 1, 0, LONG_OPT_NMCMD },
297 { "relay16", 0, 0, LONG_OPT_RELAY16 },
298 { "relay32", 0, 0, LONG_OPT_RELAY32 },
299 { "subsystem",1, 0, LONG_OPT_SUBSYSTEM },
300 { "target", 1, 0, LONG_OPT_TARGET },
301 { "version", 0, 0, LONG_OPT_VERSION },
302 /* aliases for short options */
303 { "source-dir", 1, 0, 'C' },
304 { "delay-lib", 1, 0, 'd' },
305 { "export", 1, 0, 'E' },
306 { "entry", 1, 0, 'e' },
307 { "filename", 1, 0, 'F' },
308 { "help", 0, 0, 'h' },
309 { "heap", 1, 0, 'H' },
310 { "ignore", 1, 0, 'i' },
311 { "kill-at", 0, 0, 'k' },
312 { "library", 1, 0, 'l' },
313 { "library-path", 1, 0, 'L' },
314 { "main-module", 1, 0, 'M' },
315 { "dll-name", 1, 0, 'N' },
316 { "output", 1, 0, 'o' },
317 { "res", 1, 0, 'r' },
318 { "undefined", 1, 0, 'u' },
319 { "warnings", 0, 0, 'w' },
320 { NULL, 0, 0, 0 }
323 static void usage( int exit_code )
325 fprintf( stderr, "%s", usage_str );
326 exit( exit_code );
329 static void set_exec_mode( enum exec_mode_values mode )
331 if (exec_mode != MODE_NONE) usage(1);
332 exec_mode = mode;
335 /* parse options from the argv array and remove all the recognized ones */
336 static char **parse_options( int argc, char **argv, DLLSPEC *spec )
338 char *p;
339 int optc;
341 while ((optc = getopt_long( argc, argv, short_options, long_options, NULL )) != -1)
343 switch(optc)
345 case 'C':
346 current_src_dir = optarg;
347 break;
348 case 'D':
349 /* ignored */
350 break;
351 case 'E':
352 spec_file_name = xstrdup( optarg );
353 set_dll_file_name( optarg, spec );
354 break;
355 case 'F':
356 spec->file_name = xstrdup( optarg );
357 break;
358 case 'H':
359 if (!isdigit(optarg[0]))
360 fatal_error( "Expected number argument with -H option instead of '%s'\n", optarg );
361 spec->heap_size = atoi(optarg);
362 if (spec->heap_size > 65535)
363 fatal_error( "Invalid heap size %d, maximum is 65535\n", spec->heap_size );
364 break;
365 case 'I':
366 /* ignored */
367 break;
368 case 'K':
369 /* ignored, because cc generates correct code. */
370 break;
371 case 'L':
372 lib_path = xrealloc( lib_path, (nb_lib_paths+1) * sizeof(*lib_path) );
373 lib_path[nb_lib_paths++] = xstrdup( optarg );
374 break;
375 case 'M':
376 spec->owner_name = xstrdup( optarg );
377 spec->type = SPEC_WIN16;
378 break;
379 case 'N':
380 spec->dll_name = xstrdup( optarg );
381 break;
382 case 'd':
383 add_delayed_import( optarg );
384 break;
385 case 'e':
386 spec->init_func = xstrdup( optarg );
387 if ((p = strchr( spec->init_func, '@' ))) *p = 0; /* kill stdcall decoration */
388 break;
389 case 'f':
390 if (!strcmp( optarg, "PIC") || !strcmp( optarg, "pic")) UsePIC = 1;
391 /* ignore all other flags */
392 break;
393 case 'h':
394 usage(0);
395 break;
396 case 'i':
398 char *str = xstrdup( optarg );
399 char *token = strtok( str, "," );
400 while (token)
402 add_ignore_symbol( token );
403 token = strtok( NULL, "," );
405 free( str );
407 break;
408 case 'k':
409 kill_at = 1;
410 break;
411 case 'l':
412 add_import_dll( optarg, NULL );
413 break;
414 case 'o':
415 if (unlink( optarg ) == -1 && errno != ENOENT)
416 fatal_error( "Unable to create output file '%s'\n", optarg );
417 if (!(output_file = fopen( optarg, "w" )))
418 fatal_error( "Unable to create output file '%s'\n", optarg );
419 output_file_name = xstrdup(optarg);
420 atexit( cleanup ); /* make sure we remove the output file on exit */
421 break;
422 case 'r':
423 res_files = xrealloc( res_files, (nb_res_files+1) * sizeof(*res_files) );
424 res_files[nb_res_files++] = xstrdup( optarg );
425 break;
426 case 'u':
427 add_extra_ld_symbol( optarg );
428 break;
429 case 'w':
430 display_warnings = 1;
431 break;
432 case LONG_OPT_DLL:
433 set_exec_mode( MODE_DLL );
434 break;
435 case LONG_OPT_DEF:
436 set_exec_mode( MODE_DEF );
437 break;
438 case LONG_OPT_EXE:
439 set_exec_mode( MODE_EXE );
440 if (!spec->subsystem) spec->subsystem = IMAGE_SUBSYSTEM_WINDOWS_GUI;
441 break;
442 case LONG_OPT_DEBUG:
443 set_exec_mode( MODE_DEBUG );
444 break;
445 case LONG_OPT_LDCMD:
446 ld_command = xstrdup( optarg );
447 break;
448 case LONG_OPT_NMCMD:
449 nm_command = xstrdup( optarg );
450 break;
451 case LONG_OPT_RELAY16:
452 set_exec_mode( MODE_RELAY16 );
453 break;
454 case LONG_OPT_RELAY32:
455 set_exec_mode( MODE_RELAY32 );
456 break;
457 case LONG_OPT_SUBSYSTEM:
458 set_subsystem( optarg, spec );
459 break;
460 case LONG_OPT_TARGET:
461 set_target( optarg );
462 break;
463 case LONG_OPT_VERSION:
464 printf( "winebuild version " PACKAGE_VERSION "\n" );
465 exit(0);
466 case '?':
467 usage(1);
468 break;
472 if (spec->file_name && !strchr( spec->file_name, '.' ))
473 strcat( spec->file_name, exec_mode == MODE_EXE ? ".exe" : ".dll" );
475 return &argv[optind];
479 /* load all specified resource files */
480 static void load_resources( char *argv[], DLLSPEC *spec )
482 int i;
483 char **ptr, **last;
485 switch (spec->type)
487 case SPEC_WIN16:
488 for (i = 0; i < nb_res_files; i++) load_res16_file( res_files[i], spec );
489 break;
491 case SPEC_WIN32:
492 for (i = 0; i < nb_res_files; i++)
494 if (!load_res32_file( res_files[i], spec ))
495 fatal_error( "%s is not a valid Win32 resource file\n", res_files[i] );
498 /* load any resource file found in the remaining arguments */
499 for (ptr = last = argv; *ptr; ptr++)
501 if (!load_res32_file( *ptr, spec ))
502 *last++ = *ptr; /* not a resource file, keep it in the list */
504 *last = NULL;
505 break;
509 /* add input files that look like import libs to the import list */
510 static void load_import_libs( char *argv[] )
512 char **ptr, **last;
514 for (ptr = last = argv; *ptr; ptr++)
516 if (strendswith( *ptr, ".def" ))
517 add_import_dll( NULL, *ptr );
518 else
519 *last++ = *ptr; /* not an import dll, keep it in the list */
521 *last = NULL;
524 static int parse_input_file( DLLSPEC *spec )
526 FILE *input_file = open_input_file( NULL, spec_file_name );
527 char *extension = strrchr( spec_file_name, '.' );
528 int result;
530 if (extension && !strcmp( extension, ".def" ))
531 result = parse_def_file( input_file, spec );
532 else
533 result = parse_spec_file( input_file, spec );
534 close_input_file( input_file );
535 return result;
539 /*******************************************************************
540 * main
542 int main(int argc, char **argv)
544 DLLSPEC *spec = alloc_dll_spec();
546 #ifdef SIGHUP
547 signal( SIGHUP, exit_on_signal );
548 #endif
549 signal( SIGTERM, exit_on_signal );
550 signal( SIGINT, exit_on_signal );
552 output_file = stdout;
553 argv = parse_options( argc, argv, spec );
555 switch(exec_mode)
557 case MODE_DLL:
558 spec->characteristics |= IMAGE_FILE_DLL;
559 load_resources( argv, spec );
560 load_import_libs( argv );
561 if (!spec_file_name) fatal_error( "missing .spec file\n" );
562 if (!parse_input_file( spec )) break;
563 switch (spec->type)
565 case SPEC_WIN16:
566 if (argv[0])
567 fatal_error( "file argument '%s' not allowed in this mode\n", argv[0] );
568 BuildSpec16File( output_file, spec );
569 break;
570 case SPEC_WIN32:
571 read_undef_symbols( argv );
572 BuildSpec32File( output_file, spec );
573 break;
574 default: assert(0);
576 break;
577 case MODE_EXE:
578 if (spec->type == SPEC_WIN16) fatal_error( "Cannot build 16-bit exe files\n" );
579 if (!spec->file_name) fatal_error( "executable must be named via the -F option\n" );
580 load_resources( argv, spec );
581 load_import_libs( argv );
582 if (spec_file_name && !parse_input_file( spec )) break;
583 read_undef_symbols( argv );
584 BuildSpec32File( output_file, spec );
585 break;
586 case MODE_DEF:
587 if (argv[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv[0] );
588 if (spec->type == SPEC_WIN16) fatal_error( "Cannot yet build .def file for 16-bit dlls\n" );
589 if (!spec_file_name) fatal_error( "missing .spec file\n" );
590 if (!parse_input_file( spec )) break;
591 BuildDef32File( output_file, spec );
592 break;
593 case MODE_DEBUG:
594 BuildDebugFile( output_file, current_src_dir, argv );
595 break;
596 case MODE_RELAY16:
597 if (argv[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv[0] );
598 BuildRelays16( output_file );
599 break;
600 case MODE_RELAY32:
601 if (argv[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv[0] );
602 BuildRelays32( output_file );
603 break;
604 default:
605 usage(1);
606 break;
608 if (nb_errors) exit(1);
609 if (output_file_name)
611 fclose( output_file );
612 output_file_name = NULL;
614 return 0;