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
26 #include "wine/port.h"
44 int display_warnings
= 0;
48 int link_ext_symbols
= 0;
49 int force_pointer_size
= 0;
50 int unwind_tables
= 0;
53 enum target_cpu target_cpu
= CPU_x86
;
54 #elif defined(__x86_64__)
55 enum target_cpu target_cpu
= CPU_x86_64
;
56 #elif defined(__sparc__)
57 enum target_cpu target_cpu
= CPU_SPARC
;
58 #elif defined(__powerpc__)
59 enum target_cpu target_cpu
= CPU_POWERPC
;
60 #elif defined(__arm__)
61 enum target_cpu target_cpu
= CPU_ARM
;
63 #error Unsupported CPU
67 enum target_platform target_platform
= PLATFORM_APPLE
;
68 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
69 enum target_platform target_platform
= PLATFORM_FREEBSD
;
71 enum target_platform target_platform
= PLATFORM_SOLARIS
;
73 enum target_platform target_platform
= PLATFORM_WINDOWS
;
75 enum target_platform target_platform
= PLATFORM_UNSPECIFIED
;
78 char *target_alias
= NULL
;
79 char **lib_path
= NULL
;
81 char *input_file_name
= NULL
;
82 char *spec_file_name
= NULL
;
83 FILE *output_file
= NULL
;
84 const char *output_file_name
= NULL
;
85 static const char *output_file_source_name
;
86 static int fake_module
;
88 char *as_command
= NULL
;
89 char *ld_command
= NULL
;
90 char *nm_command
= NULL
;
91 char *cpu_option
= NULL
;
93 static int nb_res_files
;
94 static char **res_files
;
107 static enum exec_mode_values exec_mode
= MODE_NONE
;
112 enum target_platform platform
;
115 { "macos", PLATFORM_APPLE
},
116 { "darwin", PLATFORM_APPLE
},
117 { "freebsd", PLATFORM_FREEBSD
},
118 { "solaris", PLATFORM_SOLARIS
},
119 { "mingw32", PLATFORM_WINDOWS
},
120 { "windows", PLATFORM_WINDOWS
},
121 { "winnt", PLATFORM_WINDOWS
}
124 /* set the dll file name from the input file name */
125 static void set_dll_file_name( const char *name
, DLLSPEC
*spec
)
129 if (spec
->file_name
) return;
131 if ((p
= strrchr( name
, '\\' ))) name
= p
+ 1;
132 if ((p
= strrchr( name
, '/' ))) name
= p
+ 1;
133 spec
->file_name
= xmalloc( strlen(name
) + 5 );
134 strcpy( spec
->file_name
, name
);
135 if ((p
= strrchr( spec
->file_name
, '.' )))
137 if (!strcmp( p
, ".spec" ) || !strcmp( p
, ".def" )) *p
= 0;
141 /* set the dll name from the file name */
142 static void init_dll_name( DLLSPEC
*spec
)
144 if (!spec
->file_name
&& output_file_name
)
147 spec
->file_name
= xstrdup( output_file_name
);
148 if ((p
= strrchr( spec
->file_name
, '.' ))) *p
= 0;
150 if (!spec
->dll_name
&& spec
->file_name
) /* set default name from file name */
153 spec
->dll_name
= xstrdup( spec
->file_name
);
154 if ((p
= strrchr( spec
->dll_name
, '.' ))) *p
= 0;
158 /* set the dll subsystem */
159 static void set_subsystem( const char *subsystem
, DLLSPEC
*spec
)
161 char *major
, *minor
, *str
= xstrdup( subsystem
);
163 if ((major
= strchr( str
, ':' ))) *major
++ = 0;
164 if (!strcmp( str
, "native" )) spec
->subsystem
= IMAGE_SUBSYSTEM_NATIVE
;
165 else if (!strcmp( str
, "windows" )) spec
->subsystem
= IMAGE_SUBSYSTEM_WINDOWS_GUI
;
166 else if (!strcmp( str
, "console" )) spec
->subsystem
= IMAGE_SUBSYSTEM_WINDOWS_CUI
;
167 else if (!strcmp( str
, "wince" )) spec
->subsystem
= IMAGE_SUBSYSTEM_WINDOWS_CE_GUI
;
168 else if (!strcmp( str
, "win16" )) spec
->type
= SPEC_WIN16
;
169 else fatal_error( "Invalid subsystem name '%s'\n", subsystem
);
172 if ((minor
= strchr( major
, '.' )))
175 spec
->subsystem_minor
= atoi( minor
);
177 spec
->subsystem_major
= atoi( major
);
182 /* set the target CPU and platform */
183 static void set_target( const char *target
)
186 char *p
, *platform
, *spec
= xstrdup( target
);
188 /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
190 target_alias
= xstrdup( target
);
192 /* get the CPU part */
194 if (!(p
= strchr( spec
, '-' ))) fatal_error( "Invalid target specification '%s'\n", target
);
196 if ((target_cpu
= get_cpu_from_name( spec
)) == -1)
197 fatal_error( "Unrecognized CPU '%s'\n", spec
);
199 if ((p
= strrchr( p
, '-' ))) platform
= p
+ 1;
201 /* get the OS part */
203 target_platform
= PLATFORM_UNSPECIFIED
; /* default value */
204 for (i
= 0; i
< sizeof(platform_names
)/sizeof(platform_names
[0]); i
++)
206 if (!strncmp( platform_names
[i
].name
, platform
, strlen(platform_names
[i
].name
) ))
208 target_platform
= platform_names
[i
].platform
;
216 /* cleanup on program exit */
217 static void cleanup(void)
219 if (output_file_name
) unlink( output_file_name
);
222 /* clean things up when aborting on a signal */
223 static void exit_on_signal( int sig
)
225 exit(1); /* this will call atexit functions */
228 /*******************************************************************
229 * command-line option handling
231 static const char usage_str
[] =
232 "Usage: winebuild [OPTIONS] [FILES]\n\n"
234 " --as-cmd=AS Command to use for assembling (default: as)\n"
235 " -b, --target=TARGET Specify target CPU and platform for cross-compiling\n"
236 " -d, --delay-lib=LIB Import the specified library in delayed mode\n"
237 " -D SYM Ignored for C flags compatibility\n"
238 " -e, --entry=FUNC Set the DLL entry point function (default: DllMain)\n"
239 " -E, --export=FILE Export the symbols defined in the .spec or .def file\n"
240 " --external-symbols Allow linking to external symbols\n"
241 " -f FLAGS Compiler flags (-fPIC and -fasynchronous-unwind-tables are supported)\n"
242 " -F, --filename=DLLFILE Set the DLL filename (default: from input file name)\n"
243 " --fake-module Create a fake binary module\n"
244 " -h, --help Display this help message\n"
245 " -H, --heap=SIZE Set the heap size for a Win16 dll\n"
246 " -I DIR Ignored for C flags compatibility\n"
247 " -k, --kill-at Kill stdcall decorations in generated .def files\n"
248 " -K, FLAGS Compiler flags (only -KPIC is supported)\n"
249 " --large-address-aware Support an address space larger than 2Gb\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 " -m16, -m32, -m64 Force building 16-bit, 32-bit resp. 64-bit code\n"
254 " -M, --main-module=MODULE Set the name of the main module for a Win16 dll\n"
255 " --nm-cmd=NM Command to use to get undefined symbols (default: nm)\n"
256 " --nxcompat=y|n Set the NX compatibility flag (default: yes)\n"
257 " -N, --dll-name=DLLNAME Set the DLL name (default: from input file name)\n"
258 " -o, --output=NAME Set the output file name (default: stdout)\n"
259 " -r, --res=RSRC.RES Load resources from RSRC.RES\n"
260 " --save-temps Do not delete the generated intermediate files\n"
261 " --subsystem=SUBSYS Set the subsystem (one of native, windows, console, wince)\n"
262 " -u, --undefined=SYMBOL Add an undefined reference to SYMBOL when linking\n"
263 " -v, --verbose Display the programs invoked\n"
264 " --version Print the version and exit\n"
265 " -w, --warnings Turn on warnings\n"
267 " --dll Build a .c file from a .spec or .def file\n"
268 " --def Build a .def file from a .spec file\n"
269 " --exe Build a .c file for an executable\n"
270 " --implib Build an import library\n"
271 " --resources Build a .o file for the resource files\n\n"
272 "The mode options are mutually exclusive; you must specify one and only one.\n\n";
274 enum long_options_values
281 LONG_OPT_EXTERNAL_SYMS
,
282 LONG_OPT_FAKE_MODULE
,
283 LONG_OPT_LARGE_ADDRESS_AWARE
,
293 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";
295 static const struct option long_options
[] =
297 { "dll", 0, 0, LONG_OPT_DLL
},
298 { "def", 0, 0, LONG_OPT_DEF
},
299 { "exe", 0, 0, LONG_OPT_EXE
},
300 { "implib", 0, 0, LONG_OPT_IMPLIB
},
301 { "as-cmd", 1, 0, LONG_OPT_ASCMD
},
302 { "external-symbols", 0, 0, LONG_OPT_EXTERNAL_SYMS
},
303 { "fake-module", 0, 0, LONG_OPT_FAKE_MODULE
},
304 { "large-address-aware", 0, 0, LONG_OPT_LARGE_ADDRESS_AWARE
},
305 { "ld-cmd", 1, 0, LONG_OPT_LDCMD
},
306 { "nm-cmd", 1, 0, LONG_OPT_NMCMD
},
307 { "nxcompat", 1, 0, LONG_OPT_NXCOMPAT
},
308 { "resources", 0, 0, LONG_OPT_RESOURCES
},
309 { "save-temps", 0, 0, LONG_OPT_SAVE_TEMPS
},
310 { "subsystem", 1, 0, LONG_OPT_SUBSYSTEM
},
311 { "version", 0, 0, LONG_OPT_VERSION
},
312 /* aliases for short options */
313 { "target", 1, 0, 'b' },
314 { "delay-lib", 1, 0, 'd' },
315 { "export", 1, 0, 'E' },
316 { "entry", 1, 0, 'e' },
317 { "filename", 1, 0, 'F' },
318 { "help", 0, 0, 'h' },
319 { "heap", 1, 0, 'H' },
320 { "kill-at", 0, 0, 'k' },
321 { "library", 1, 0, 'l' },
322 { "library-path", 1, 0, 'L' },
323 { "main-module", 1, 0, 'M' },
324 { "dll-name", 1, 0, 'N' },
325 { "output", 1, 0, 'o' },
326 { "res", 1, 0, 'r' },
327 { "undefined", 1, 0, 'u' },
328 { "verbose", 0, 0, 'v' },
329 { "warnings", 0, 0, 'w' },
333 static void usage( int exit_code
)
335 fprintf( stderr
, "%s", usage_str
);
339 static void set_exec_mode( enum exec_mode_values mode
)
341 if (exec_mode
!= MODE_NONE
) usage(1);
345 /* parse options from the argv array and remove all the recognized ones */
346 static char **parse_options( int argc
, char **argv
, DLLSPEC
*spec
)
351 while ((optc
= getopt_long( argc
, argv
, short_options
, long_options
, NULL
)) != -1)
359 spec_file_name
= xstrdup( optarg
);
360 set_dll_file_name( optarg
, spec
);
363 spec
->file_name
= xstrdup( optarg
);
366 if (!isdigit(optarg
[0]))
367 fatal_error( "Expected number argument with -H option instead of '%s'\n", optarg
);
368 spec
->heap_size
= atoi(optarg
);
369 if (spec
->heap_size
> 65535)
370 fatal_error( "Invalid heap size %d, maximum is 65535\n", spec
->heap_size
);
376 /* ignored, because cc generates correct code. */
379 lib_path
= xrealloc( lib_path
, (nb_lib_paths
+1) * sizeof(*lib_path
) );
380 lib_path
[nb_lib_paths
++] = xstrdup( optarg
);
383 if (!strcmp( optarg
, "16" )) spec
->type
= SPEC_WIN16
;
384 else if (!strcmp( optarg
, "32" )) force_pointer_size
= 4;
385 else if (!strcmp( optarg
, "64" )) force_pointer_size
= 8;
386 else if (!strncmp( optarg
, "cpu=", 4 )) cpu_option
= xstrdup( optarg
+ 4 );
387 else fatal_error( "Invalid -m option '%s', expected -m16, -m32, -m64 or -mcpu\n", optarg
);
390 spec
->main_module
= xstrdup( optarg
);
393 spec
->dll_name
= xstrdup( optarg
);
396 set_target( optarg
);
399 add_delayed_import( optarg
);
402 spec
->init_func
= xstrdup( optarg
);
403 if ((p
= strchr( spec
->init_func
, '@' ))) *p
= 0; /* kill stdcall decoration */
406 if (!strcmp( optarg
, "PIC") || !strcmp( optarg
, "pic")) UsePIC
= 1;
407 else if (!strcmp( optarg
, "asynchronous-unwind-tables")) unwind_tables
= 1;
408 else if (!strcmp( optarg
, "no-asynchronous-unwind-tables")) unwind_tables
= 0;
409 /* ignore all other flags */
418 add_import_dll( optarg
, NULL
);
422 char *ext
= strrchr( optarg
, '.' );
424 if (unlink( optarg
) == -1 && errno
!= ENOENT
)
425 fatal_error( "Unable to create output file '%s'\n", optarg
);
426 if (ext
&& !strcmp( ext
, ".o" ))
428 output_file_source_name
= get_temp_file_name( optarg
, ".s" );
429 if (!(output_file
= fopen( output_file_source_name
, "w" )))
430 fatal_error( "Unable to create output file '%s'\n", optarg
);
434 if (!(output_file
= fopen( optarg
, "w" )))
435 fatal_error( "Unable to create output file '%s'\n", optarg
);
437 output_file_name
= xstrdup(optarg
);
438 atexit( cleanup
); /* make sure we remove the output file on exit */
442 res_files
= xrealloc( res_files
, (nb_res_files
+1) * sizeof(*res_files
) );
443 res_files
[nb_res_files
++] = xstrdup( optarg
);
446 add_extra_ld_symbol( optarg
);
452 display_warnings
= 1;
455 set_exec_mode( MODE_DLL
);
458 set_exec_mode( MODE_DEF
);
461 set_exec_mode( MODE_EXE
);
462 if (!spec
->subsystem
) spec
->subsystem
= IMAGE_SUBSYSTEM_WINDOWS_GUI
;
464 case LONG_OPT_IMPLIB
:
465 set_exec_mode( MODE_IMPLIB
);
468 as_command
= xstrdup( optarg
);
470 case LONG_OPT_FAKE_MODULE
:
473 case LONG_OPT_EXTERNAL_SYMS
:
474 link_ext_symbols
= 1;
476 case LONG_OPT_LARGE_ADDRESS_AWARE
:
477 spec
->characteristics
|= IMAGE_FILE_LARGE_ADDRESS_AWARE
;
480 ld_command
= xstrdup( optarg
);
483 nm_command
= xstrdup( optarg
);
485 case LONG_OPT_NXCOMPAT
:
486 if (optarg
[0] == 'n' || optarg
[0] == 'N')
487 spec
->dll_characteristics
&= ~IMAGE_DLLCHARACTERISTICS_NX_COMPAT
;
489 case LONG_OPT_RESOURCES
:
490 set_exec_mode( MODE_RESOURCES
);
492 case LONG_OPT_SAVE_TEMPS
:
495 case LONG_OPT_SUBSYSTEM
:
496 set_subsystem( optarg
, spec
);
498 case LONG_OPT_VERSION
:
499 printf( "winebuild version " PACKAGE_VERSION
"\n" );
507 if (spec
->file_name
&& !strchr( spec
->file_name
, '.' ))
508 strcat( spec
->file_name
, exec_mode
== MODE_EXE
? ".exe" : ".dll" );
509 init_dll_name( spec
);
514 if (force_pointer_size
== 8) target_cpu
= CPU_x86_64
;
517 if (force_pointer_size
== 4) target_cpu
= CPU_x86
;
520 if (force_pointer_size
== 8)
521 fatal_error( "Cannot build 64-bit code for this CPU\n" );
525 return &argv
[optind
];
529 /* load all specified resource files */
530 static void load_resources( char *argv
[], DLLSPEC
*spec
)
538 for (i
= 0; i
< nb_res_files
; i
++) load_res16_file( res_files
[i
], spec
);
542 for (i
= 0; i
< nb_res_files
; i
++)
544 if (!load_res32_file( res_files
[i
], spec
))
545 fatal_error( "%s is not a valid Win32 resource file\n", res_files
[i
] );
548 /* load any resource file found in the remaining arguments */
549 for (ptr
= last
= argv
; *ptr
; ptr
++)
551 if (!load_res32_file( *ptr
, spec
))
552 *last
++ = *ptr
; /* not a resource file, keep it in the list */
559 /* add input files that look like import libs to the import list */
560 static void load_import_libs( char *argv
[] )
564 for (ptr
= last
= argv
; *ptr
; ptr
++)
566 if (strendswith( *ptr
, ".def" ))
567 add_import_dll( NULL
, *ptr
);
569 *last
++ = *ptr
; /* not an import dll, keep it in the list */
574 static int parse_input_file( DLLSPEC
*spec
)
576 FILE *input_file
= open_input_file( NULL
, spec_file_name
);
577 char *extension
= strrchr( spec_file_name
, '.' );
580 spec
->src_name
= xstrdup( input_file_name
);
581 if (extension
&& !strcmp( extension
, ".def" ))
582 result
= parse_def_file( input_file
, spec
);
584 result
= parse_spec_file( input_file
, spec
);
585 close_input_file( input_file
);
590 /*******************************************************************
593 int main(int argc
, char **argv
)
595 DLLSPEC
*spec
= alloc_dll_spec();
598 signal( SIGHUP
, exit_on_signal
);
600 signal( SIGTERM
, exit_on_signal
);
601 signal( SIGINT
, exit_on_signal
);
603 output_file
= stdout
;
604 argv
= parse_options( argc
, argv
, spec
);
609 if (spec
->subsystem
!= IMAGE_SUBSYSTEM_NATIVE
)
610 spec
->characteristics
|= IMAGE_FILE_DLL
;
613 load_resources( argv
, spec
);
614 load_import_libs( argv
);
615 if (spec_file_name
&& !parse_input_file( spec
)) break;
618 if (spec
->type
== SPEC_WIN16
) output_fake_module16( spec
);
619 else output_fake_module( spec
);
622 read_undef_symbols( spec
, argv
);
626 output_spec16_file( spec
);
629 BuildSpec32File( spec
);
635 if (argv
[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv
[0] );
636 if (!spec_file_name
) fatal_error( "missing .spec file\n" );
637 if (!parse_input_file( spec
)) break;
638 output_def_file( spec
, 1 );
641 if (!spec_file_name
) fatal_error( "missing .spec file\n" );
642 if (!parse_input_file( spec
)) break;
643 output_import_lib( spec
, argv
);
646 load_resources( argv
, spec
);
647 output_res_o_file( spec
);
653 if (nb_errors
) exit(1);
654 if (output_file_name
)
656 if (fclose( output_file
) < 0) fatal_perror( "fclose" );
657 if (output_file_source_name
) assemble_file( output_file_source_name
, output_file_name
);
658 output_file_name
= NULL
;