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"
43 int display_warnings
= 0;
46 int link_ext_symbols
= 0;
47 int force_pointer_size
= 0;
48 int unwind_tables
= 0;
51 enum target_cpu target_cpu
= CPU_x86
;
52 #elif defined(__x86_64__)
53 enum target_cpu target_cpu
= CPU_x86_64
;
54 #elif defined(__powerpc__)
55 enum target_cpu target_cpu
= CPU_POWERPC
;
56 #elif defined(__arm__)
57 enum target_cpu target_cpu
= CPU_ARM
;
58 #elif defined(__aarch64__)
59 enum target_cpu target_cpu
= CPU_ARM64
;
61 #error Unsupported CPU
65 enum target_platform target_platform
= PLATFORM_APPLE
;
66 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
67 enum target_platform target_platform
= PLATFORM_FREEBSD
;
69 enum target_platform target_platform
= PLATFORM_SOLARIS
;
71 enum target_platform target_platform
= PLATFORM_WINDOWS
;
73 enum target_platform target_platform
= PLATFORM_UNSPECIFIED
;
76 char *target_alias
= NULL
;
78 char *input_file_name
= NULL
;
79 char *spec_file_name
= NULL
;
80 FILE *output_file
= NULL
;
81 const char *output_file_name
= NULL
;
82 static const char *output_file_source_name
;
83 static int fake_module
;
85 struct strarray lib_path
= { 0 };
86 struct strarray as_command
= { 0 };
87 struct strarray cc_command
= { 0 };
88 struct strarray ld_command
= { 0 };
89 struct strarray nm_command
= { 0 };
90 char *cpu_option
= NULL
;
91 char *arch_option
= NULL
;
99 static struct strarray res_files
;
102 enum exec_mode_values
112 static enum exec_mode_values exec_mode
= MODE_NONE
;
117 enum target_platform platform
;
120 { "macos", PLATFORM_APPLE
},
121 { "darwin", PLATFORM_APPLE
},
122 { "freebsd", PLATFORM_FREEBSD
},
123 { "solaris", PLATFORM_SOLARIS
},
124 { "mingw32", PLATFORM_WINDOWS
},
125 { "windows", PLATFORM_WINDOWS
},
126 { "winnt", PLATFORM_WINDOWS
}
129 /* set the dll file name from the input file name */
130 static void set_dll_file_name( const char *name
, DLLSPEC
*spec
)
134 if (spec
->file_name
) return;
136 if ((p
= strrchr( name
, '\\' ))) name
= p
+ 1;
137 if ((p
= strrchr( name
, '/' ))) name
= p
+ 1;
138 spec
->file_name
= xmalloc( strlen(name
) + 5 );
139 strcpy( spec
->file_name
, name
);
140 if ((p
= strrchr( spec
->file_name
, '.' )))
142 if (!strcmp( p
, ".spec" ) || !strcmp( p
, ".def" )) *p
= 0;
146 /* set the dll name from the file name */
147 static void init_dll_name( DLLSPEC
*spec
)
149 if (!spec
->file_name
&& output_file_name
)
152 spec
->file_name
= xstrdup( output_file_name
);
153 if ((p
= strrchr( spec
->file_name
, '.' ))) *p
= 0;
155 if (!spec
->dll_name
&& spec
->file_name
) /* set default name from file name */
158 spec
->dll_name
= xstrdup( spec
->file_name
);
159 if ((p
= strrchr( spec
->dll_name
, '.' ))) *p
= 0;
161 spec
->c_name
= make_c_identifier( spec
->dll_name
);
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
);
178 if ((minor
= strchr( major
, '.' )))
181 spec
->subsystem_minor
= atoi( minor
);
183 spec
->subsystem_major
= atoi( major
);
188 /* set the target CPU and platform */
189 static void set_target( const char *target
)
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
, '-' )))
205 cpu
= get_cpu_from_name( spec
);
206 if (cpu
== -1) fatal_error( "Unrecognized CPU '%s'\n", spec
);
209 if ((p
= strrchr( p
, '-' ))) platform
= p
+ 1;
211 else if (!strcmp( spec
, "mingw32" ))
213 target_cpu
= CPU_x86
;
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
;
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"
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"
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
301 LONG_OPT_EXTERNAL_SYMS
,
302 LONG_OPT_FAKE_MODULE
,
303 LONG_OPT_LARGE_ADDRESS_AWARE
,
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' },
354 static void usage( int exit_code
)
356 fprintf( stderr
, "%s", usage_str
);
360 static void set_exec_mode( enum exec_mode_values mode
)
362 if (exec_mode
!= MODE_NONE
) usage(1);
366 /* parse options from the argv array and remove all the recognized ones */
367 static char **parse_options( int argc
, char **argv
, DLLSPEC
*spec
)
373 while ((optc
= getopt_long( argc
, argv
, short_options
, long_options
, NULL
)) != -1)
381 spec_file_name
= xstrdup( optarg
);
382 set_dll_file_name( optarg
, spec
);
385 spec
->file_name
= xstrdup( optarg
);
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
);
398 /* ignored, because cc generates correct code. */
401 strarray_add( &lib_path
, xstrdup( optarg
), NULL
);
404 if (!strcmp( optarg
, "16" )) spec
->type
= SPEC_WIN16
;
405 else if (!strcmp( optarg
, "32" )) force_pointer_size
= 4;
406 else if (!strcmp( optarg
, "64" )) force_pointer_size
= 8;
407 else if (!strcmp( optarg
, "arm" )) thumb_mode
= 0;
408 else if (!strcmp( optarg
, "thumb" )) thumb_mode
= 1;
409 else if (!strncmp( optarg
, "cpu=", 4 )) cpu_option
= xstrdup( optarg
+ 4 );
410 else if (!strncmp( optarg
, "arch=", 5 )) arch_option
= xstrdup( optarg
+ 5 );
411 else fatal_error( "Unknown -m option '%s'\n", optarg
);
414 spec
->main_module
= xstrdup( optarg
);
417 spec
->dll_name
= xstrdup( optarg
);
420 set_target( optarg
);
423 add_delayed_import( optarg
);
426 spec
->init_func
= xstrdup( optarg
);
427 if ((p
= strchr( spec
->init_func
, '@' ))) *p
= 0; /* kill stdcall decoration */
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 */
442 add_import_dll( optarg
, NULL
);
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
);
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 */
466 strarray_add( &res_files
, xstrdup( optarg
), NULL
);
469 add_extra_ld_symbol( optarg
);
475 display_warnings
= 1;
478 set_exec_mode( MODE_DLL
);
481 set_exec_mode( MODE_DEF
);
484 set_exec_mode( MODE_EXE
);
485 if (!spec
->subsystem
) spec
->subsystem
= IMAGE_SUBSYSTEM_WINDOWS_GUI
;
487 case LONG_OPT_IMPLIB
:
488 set_exec_mode( MODE_IMPLIB
);
491 as_command
= strarray_fromstring( optarg
, " " );
494 cc_command
= strarray_fromstring( optarg
, " " );
496 case LONG_OPT_FAKE_MODULE
:
499 case LONG_OPT_EXTERNAL_SYMS
:
500 link_ext_symbols
= 1;
502 case LONG_OPT_LARGE_ADDRESS_AWARE
:
503 spec
->characteristics
|= IMAGE_FILE_LARGE_ADDRESS_AWARE
;
506 ld_command
= strarray_fromstring( optarg
, " " );
509 nm_command
= strarray_fromstring( optarg
, " " );
511 case LONG_OPT_NXCOMPAT
:
512 if (optarg
[0] == 'n' || optarg
[0] == 'N')
513 spec
->dll_characteristics
&= ~IMAGE_DLLCHARACTERISTICS_NX_COMPAT
;
515 case LONG_OPT_RESOURCES
:
516 set_exec_mode( MODE_RESOURCES
);
518 case LONG_OPT_SAVE_TEMPS
:
521 case LONG_OPT_SUBSYSTEM
:
522 set_subsystem( optarg
, spec
);
524 case LONG_OPT_VERSION
:
525 printf( "winebuild version " PACKAGE_VERSION
"\n" );
533 if (!save_temps
) atexit( cleanup_tmp_files
);
535 if (spec
->file_name
&& !strchr( spec
->file_name
, '.' ))
536 strcat( spec
->file_name
, exec_mode
== MODE_EXE
? ".exe" : ".dll" );
537 init_dll_name( spec
);
542 if (force_pointer_size
== 8) target_cpu
= CPU_x86_64
;
545 if (force_pointer_size
== 4) target_cpu
= CPU_x86
;
548 if (force_pointer_size
== 8)
549 fatal_error( "Cannot build 64-bit code for this CPU\n" );
553 return &argv
[optind
];
557 /* load all specified resource files */
558 static void load_resources( char *argv
[], DLLSPEC
*spec
)
566 for (i
= 0; i
< res_files
.count
; i
++) load_res16_file( res_files
.str
[i
], spec
);
570 for (i
= 0; i
< res_files
.count
; i
++)
572 if (!load_res32_file( res_files
.str
[i
], spec
))
573 fatal_error( "%s is not a valid Win32 resource file\n", res_files
.str
[i
] );
576 /* load any resource file found in the remaining arguments */
577 for (ptr
= last
= argv
; *ptr
; ptr
++)
579 if (!load_res32_file( *ptr
, spec
))
580 *last
++ = *ptr
; /* not a resource file, keep it in the list */
587 /* add input files that look like import libs to the import list */
588 static void load_import_libs( char *argv
[] )
592 for (ptr
= last
= argv
; *ptr
; ptr
++)
594 if (strendswith( *ptr
, ".def" ))
595 add_import_dll( NULL
, *ptr
);
597 *last
++ = *ptr
; /* not an import dll, keep it in the list */
602 static int parse_input_file( DLLSPEC
*spec
)
604 FILE *input_file
= open_input_file( NULL
, spec_file_name
);
605 char *extension
= strrchr( spec_file_name
, '.' );
608 spec
->src_name
= xstrdup( input_file_name
);
609 if (extension
&& !strcmp( extension
, ".def" ))
610 result
= parse_def_file( input_file
, spec
);
612 result
= parse_spec_file( input_file
, spec
);
613 close_input_file( input_file
);
618 /*******************************************************************
621 int main(int argc
, char **argv
)
623 DLLSPEC
*spec
= alloc_dll_spec();
626 signal( SIGHUP
, exit_on_signal
);
628 signal( SIGTERM
, exit_on_signal
);
629 signal( SIGINT
, exit_on_signal
);
631 output_file
= stdout
;
632 argv
= parse_options( argc
, argv
, spec
);
637 if (spec
->subsystem
!= IMAGE_SUBSYSTEM_NATIVE
)
638 spec
->characteristics
|= IMAGE_FILE_DLL
;
641 load_resources( argv
, spec
);
642 load_import_libs( argv
);
643 if (spec_file_name
&& !parse_input_file( spec
)) break;
646 if (spec
->type
== SPEC_WIN16
) output_fake_module16( spec
);
647 else output_fake_module( spec
);
650 read_undef_symbols( spec
, argv
);
654 output_spec16_file( spec
);
657 BuildSpec32File( spec
);
663 if (argv
[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv
[0] );
664 if (!spec_file_name
) fatal_error( "missing .spec file\n" );
665 if (!parse_input_file( spec
)) break;
666 output_def_file( spec
, 1 );
669 if (!spec_file_name
) fatal_error( "missing .spec file\n" );
670 if (!parse_input_file( spec
)) break;
671 output_import_lib( spec
, argv
);
674 load_resources( argv
, spec
);
675 output_res_o_file( spec
);
681 if (nb_errors
) exit(1);
682 if (output_file_name
)
684 if (fclose( output_file
) < 0) fatal_perror( "fclose" );
685 if (output_file_source_name
) assemble_file( output_file_source_name
, output_file_name
);
686 output_file_name
= NULL
;