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;
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
;
62 #error Unsupported CPU
66 enum target_platform target_platform
= PLATFORM_APPLE
;
68 enum target_platform target_platform
= PLATFORM_SOLARIS
;
69 #elif defined(_WINDOWS)
70 enum target_platform target_platform
= PLATFORM_WINDOWS
;
72 enum target_platform target_platform
= PLATFORM_UNSPECIFIED
;
75 char *target_alias
= NULL
;
76 char **lib_path
= 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
;
84 char *as_command
= NULL
;
85 char *ld_command
= NULL
;
86 char *nm_command
= NULL
;
88 static int nb_res_files
;
89 static char **res_files
;
103 static enum exec_mode_values exec_mode
= MODE_NONE
;
108 enum target_platform platform
;
111 { "macos", PLATFORM_APPLE
},
112 { "darwin", PLATFORM_APPLE
},
113 { "solaris", PLATFORM_SOLARIS
},
114 { "windows", PLATFORM_WINDOWS
},
115 { "winnt", PLATFORM_WINDOWS
}
118 /* set the dll file name from the input file name */
119 static void set_dll_file_name( const char *name
, DLLSPEC
*spec
)
123 if (spec
->file_name
) return;
125 if ((p
= strrchr( name
, '\\' ))) name
= p
+ 1;
126 if ((p
= strrchr( name
, '/' ))) name
= p
+ 1;
127 spec
->file_name
= xmalloc( strlen(name
) + 5 );
128 strcpy( spec
->file_name
, name
);
129 if ((p
= strrchr( spec
->file_name
, '.' )))
131 if (!strcmp( p
, ".spec" ) || !strcmp( p
, ".def" )) *p
= 0;
135 /* set the dll subsystem */
136 static void set_subsystem( const char *subsystem
, DLLSPEC
*spec
)
138 char *major
, *minor
, *str
= xstrdup( subsystem
);
140 if ((major
= strchr( str
, ':' ))) *major
++ = 0;
141 if (!strcmp( str
, "native" )) spec
->subsystem
= IMAGE_SUBSYSTEM_NATIVE
;
142 else if (!strcmp( str
, "windows" )) spec
->subsystem
= IMAGE_SUBSYSTEM_WINDOWS_GUI
;
143 else if (!strcmp( str
, "console" )) spec
->subsystem
= IMAGE_SUBSYSTEM_WINDOWS_CUI
;
144 else if (!strcmp( str
, "win16" )) spec
->type
= SPEC_WIN16
;
145 else fatal_error( "Invalid subsystem name '%s'\n", subsystem
);
148 if ((minor
= strchr( major
, '.' )))
151 spec
->subsystem_minor
= atoi( minor
);
153 spec
->subsystem_major
= atoi( major
);
158 /* set the target CPU and platform */
159 static void set_target( const char *target
)
162 char *p
, *platform
, *spec
= xstrdup( target
);
164 /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
166 target_alias
= xstrdup( target
);
168 /* get the CPU part */
170 if (!(p
= strchr( spec
, '-' ))) fatal_error( "Invalid target specification '%s'\n", target
);
172 if ((target_cpu
= get_cpu_from_name( spec
)) == -1)
173 fatal_error( "Unrecognized CPU '%s'\n", spec
);
175 if ((p
= strrchr( p
, '-' ))) platform
= p
+ 1;
177 /* get the OS part */
179 target_platform
= PLATFORM_UNSPECIFIED
; /* default value */
180 for (i
= 0; i
< sizeof(platform_names
)/sizeof(platform_names
[0]); i
++)
182 if (!strncmp( platform_names
[i
].name
, platform
, strlen(platform_names
[i
].name
) ))
184 target_platform
= platform_names
[i
].platform
;
192 /* cleanup on program exit */
193 static void cleanup(void)
195 if (output_file_name
) unlink( output_file_name
);
198 /* clean things up when aborting on a signal */
199 static void exit_on_signal( int sig
)
201 exit(1); /* this will call atexit functions */
204 /*******************************************************************
205 * command-line option handling
207 static const char usage_str
[] =
208 "Usage: winebuild [OPTIONS] [FILES]\n\n"
210 " --as-cmd=AS Command to use for assembling (default: as)\n"
211 " -b, --target=TARGET Specify target CPU and platform for cross-compiling\n"
212 " -d, --delay-lib=LIB Import the specified library in delayed mode\n"
213 " -D SYM Ignored for C flags compatibility\n"
214 " -e, --entry=FUNC Set the DLL entry point function (default: DllMain)\n"
215 " -E, --export=FILE Export the symbols defined in the .spec or .def file\n"
216 " --external-symbols Allow linking to external symbols\n"
217 " -f FLAGS Compiler flags (only -fPIC is supported)\n"
218 " -F, --filename=DLLFILE Set the DLL filename (default: from input file name)\n"
219 " -h, --help Display this help message\n"
220 " -H, --heap=SIZE Set the heap size for a Win16 dll\n"
221 " -i, --ignore=SYM[,SYM] Ignore specified symbols when resolving imports\n"
222 " -I DIR Ignored for C flags compatibility\n"
223 " -k, --kill-at Kill stdcall decorations in generated .def files\n"
224 " -K, FLAGS Compiler flags (only -KPIC is supported)\n"
225 " --ld-cmd=LD Command to use for linking (default: ld)\n"
226 " -l, --library=LIB Import the specified library\n"
227 " -L, --library-path=DIR Look for imports libraries in DIR\n"
228 " -m32, -m64 Force building 32-bit resp. 64-bit code\n"
229 " -M, --main-module=MODULE Set the name of the main module for a Win16 dll\n"
230 " --nm-cmd=NM Command to use to get undefined symbols (default: nm)\n"
231 " --nxcompat=y|n Set the NX compatibility flag (default: yes)\n"
232 " -N, --dll-name=DLLNAME Set the DLL name (default: from input file name)\n"
233 " -o, --output=NAME Set the output file name (default: stdout)\n"
234 " -r, --res=RSRC.RES Load resources from RSRC.RES\n"
235 " --save-temps Do not delete the generated intermediate files\n"
236 " --subsystem=SUBSYS Set the subsystem (one of native, windows, console)\n"
237 " -u, --undefined=SYMBOL Add an undefined reference to SYMBOL when linking\n"
238 " -v, --verbose Display the programs invoked\n"
239 " --version Print the version and exit\n"
240 " -w, --warnings Turn on warnings\n"
242 " --dll Build a .c file from a .spec or .def file\n"
243 " --def Build a .def file from a .spec file\n"
244 " --exe Build a .c file for an executable\n"
245 " --relay16 Build the 16-bit relay assembly routines\n"
246 " --relay32 Build the 32-bit relay assembly routines\n\n"
247 " --resources Build a .o file for the resource files\n\n"
248 "The mode options are mutually exclusive; you must specify one and only one.\n\n";
250 enum long_options_values
256 LONG_OPT_EXTERNAL_SYMS
,
268 static const char short_options
[] = "C:D:E:F:H:I:K:L:M:N:b:d:e:f:hi:kl:m:o:r:u:vw";
270 static const struct option long_options
[] =
272 { "dll", 0, 0, LONG_OPT_DLL
},
273 { "def", 0, 0, LONG_OPT_DEF
},
274 { "exe", 0, 0, LONG_OPT_EXE
},
275 { "as-cmd", 1, 0, LONG_OPT_ASCMD
},
276 { "external-symbols", 0, 0, LONG_OPT_EXTERNAL_SYMS
},
277 { "ld-cmd", 1, 0, LONG_OPT_LDCMD
},
278 { "nm-cmd", 1, 0, LONG_OPT_NMCMD
},
279 { "nxcompat", 1, 0, LONG_OPT_NXCOMPAT
},
280 { "relay16", 0, 0, LONG_OPT_RELAY16
},
281 { "relay32", 0, 0, LONG_OPT_RELAY32
},
282 { "resources", 0, 0, LONG_OPT_RESOURCES
},
283 { "save-temps", 0, 0, LONG_OPT_SAVE_TEMPS
},
284 { "subsystem", 1, 0, LONG_OPT_SUBSYSTEM
},
285 { "version", 0, 0, LONG_OPT_VERSION
},
286 /* aliases for short options */
287 { "target", 1, 0, 'b' },
288 { "delay-lib", 1, 0, 'd' },
289 { "export", 1, 0, 'E' },
290 { "entry", 1, 0, 'e' },
291 { "filename", 1, 0, 'F' },
292 { "help", 0, 0, 'h' },
293 { "heap", 1, 0, 'H' },
294 { "ignore", 1, 0, 'i' },
295 { "kill-at", 0, 0, 'k' },
296 { "library", 1, 0, 'l' },
297 { "library-path", 1, 0, 'L' },
298 { "main-module", 1, 0, 'M' },
299 { "dll-name", 1, 0, 'N' },
300 { "output", 1, 0, 'o' },
301 { "res", 1, 0, 'r' },
302 { "undefined", 1, 0, 'u' },
303 { "verbose", 0, 0, 'v' },
304 { "warnings", 0, 0, 'w' },
308 static void usage( int exit_code
)
310 fprintf( stderr
, "%s", usage_str
);
314 static void set_exec_mode( enum exec_mode_values mode
)
316 if (exec_mode
!= MODE_NONE
) usage(1);
320 /* parse options from the argv array and remove all the recognized ones */
321 static char **parse_options( int argc
, char **argv
, DLLSPEC
*spec
)
326 while ((optc
= getopt_long( argc
, argv
, short_options
, long_options
, NULL
)) != -1)
334 spec_file_name
= xstrdup( optarg
);
335 set_dll_file_name( optarg
, spec
);
338 spec
->file_name
= xstrdup( optarg
);
341 if (!isdigit(optarg
[0]))
342 fatal_error( "Expected number argument with -H option instead of '%s'\n", optarg
);
343 spec
->heap_size
= atoi(optarg
);
344 if (spec
->heap_size
> 65535)
345 fatal_error( "Invalid heap size %d, maximum is 65535\n", spec
->heap_size
);
351 /* ignored, because cc generates correct code. */
354 lib_path
= xrealloc( lib_path
, (nb_lib_paths
+1) * sizeof(*lib_path
) );
355 lib_path
[nb_lib_paths
++] = xstrdup( optarg
);
358 if (strcmp( optarg
, "32" ) && strcmp( optarg
, "64" ))
359 fatal_error( "Invalid -m option '%s', expected -m32 or -m64\n", optarg
);
360 if (!strcmp( optarg
, "32" )) force_pointer_size
= 4;
361 else force_pointer_size
= 8;
364 spec
->main_module
= xstrdup( optarg
);
367 spec
->dll_name
= xstrdup( optarg
);
370 set_target( optarg
);
373 add_delayed_import( optarg
);
376 spec
->init_func
= xstrdup( optarg
);
377 if ((p
= strchr( spec
->init_func
, '@' ))) *p
= 0; /* kill stdcall decoration */
380 if (!strcmp( optarg
, "PIC") || !strcmp( optarg
, "pic")) UsePIC
= 1;
381 /* ignore all other flags */
388 char *str
= xstrdup( optarg
);
389 char *token
= strtok( str
, "," );
392 add_ignore_symbol( token
);
393 token
= strtok( NULL
, "," );
402 add_import_dll( optarg
, NULL
);
406 char *ext
= strrchr( optarg
, '.' );
408 if (unlink( optarg
) == -1 && errno
!= ENOENT
)
409 fatal_error( "Unable to create output file '%s'\n", optarg
);
410 if (ext
&& !strcmp( ext
, ".o" ))
412 output_file_source_name
= get_temp_file_name( optarg
, ".s" );
413 if (!(output_file
= fopen( output_file_source_name
, "w" )))
414 fatal_error( "Unable to create output file '%s'\n", optarg
);
418 if (!(output_file
= fopen( optarg
, "w" )))
419 fatal_error( "Unable to create output file '%s'\n", optarg
);
421 output_file_name
= xstrdup(optarg
);
422 atexit( cleanup
); /* make sure we remove the output file on exit */
426 res_files
= xrealloc( res_files
, (nb_res_files
+1) * sizeof(*res_files
) );
427 res_files
[nb_res_files
++] = xstrdup( optarg
);
430 add_extra_ld_symbol( optarg
);
436 display_warnings
= 1;
439 set_exec_mode( MODE_DLL
);
442 set_exec_mode( MODE_DEF
);
445 set_exec_mode( MODE_EXE
);
446 if (!spec
->subsystem
) spec
->subsystem
= IMAGE_SUBSYSTEM_WINDOWS_GUI
;
449 as_command
= xstrdup( optarg
);
451 case LONG_OPT_EXTERNAL_SYMS
:
452 link_ext_symbols
= 1;
455 ld_command
= xstrdup( optarg
);
458 nm_command
= xstrdup( optarg
);
460 case LONG_OPT_NXCOMPAT
:
461 if (optarg
[0] == 'n' || optarg
[0] == 'N')
462 spec
->dll_characteristics
&= ~IMAGE_DLLCHARACTERISTICS_NX_COMPAT
;
464 case LONG_OPT_RELAY16
:
465 set_exec_mode( MODE_RELAY16
);
467 case LONG_OPT_RELAY32
:
468 set_exec_mode( MODE_RELAY32
);
470 case LONG_OPT_RESOURCES
:
471 set_exec_mode( MODE_RESOURCES
);
473 case LONG_OPT_SAVE_TEMPS
:
476 case LONG_OPT_SUBSYSTEM
:
477 set_subsystem( optarg
, spec
);
479 case LONG_OPT_VERSION
:
480 printf( "winebuild version " PACKAGE_VERSION
"\n" );
488 if (spec
->file_name
&& !strchr( spec
->file_name
, '.' ))
489 strcat( spec
->file_name
, exec_mode
== MODE_EXE
? ".exe" : ".dll" );
494 if (force_pointer_size
== 8) target_cpu
= CPU_x86_64
;
497 if (force_pointer_size
== 4) target_cpu
= CPU_x86
;
500 if (force_pointer_size
== 8)
501 fatal_error( "Cannot build 64-bit code for this CPU\n" );
505 return &argv
[optind
];
509 /* load all specified resource files */
510 static void load_resources( char *argv
[], DLLSPEC
*spec
)
518 for (i
= 0; i
< nb_res_files
; i
++) load_res16_file( res_files
[i
], spec
);
522 for (i
= 0; i
< nb_res_files
; i
++)
524 if (!load_res32_file( res_files
[i
], spec
))
525 fatal_error( "%s is not a valid Win32 resource file\n", res_files
[i
] );
528 /* load any resource file found in the remaining arguments */
529 for (ptr
= last
= argv
; *ptr
; ptr
++)
531 if (!load_res32_file( *ptr
, spec
))
532 *last
++ = *ptr
; /* not a resource file, keep it in the list */
539 /* add input files that look like import libs to the import list */
540 static void load_import_libs( char *argv
[] )
544 for (ptr
= last
= argv
; *ptr
; ptr
++)
546 if (strendswith( *ptr
, ".def" ))
547 add_import_dll( NULL
, *ptr
);
549 *last
++ = *ptr
; /* not an import dll, keep it in the list */
554 static int parse_input_file( DLLSPEC
*spec
)
556 FILE *input_file
= open_input_file( NULL
, spec_file_name
);
557 char *extension
= strrchr( spec_file_name
, '.' );
560 spec
->src_name
= xstrdup( input_file_name
);
561 if (extension
&& !strcmp( extension
, ".def" ))
562 result
= parse_def_file( input_file
, spec
);
564 result
= parse_spec_file( input_file
, spec
);
565 close_input_file( input_file
);
570 /*******************************************************************
573 int main(int argc
, char **argv
)
575 DLLSPEC
*spec
= alloc_dll_spec();
578 signal( SIGHUP
, exit_on_signal
);
580 signal( SIGTERM
, exit_on_signal
);
581 signal( SIGINT
, exit_on_signal
);
583 output_file
= stdout
;
584 argv
= parse_options( argc
, argv
, spec
);
589 if (spec
->subsystem
!= IMAGE_SUBSYSTEM_NATIVE
)
590 spec
->characteristics
|= IMAGE_FILE_DLL
;
591 if (!spec_file_name
) fatal_error( "missing .spec file\n" );
592 if (spec
->type
== SPEC_WIN32
&& spec
->main_module
) /* embedded 16-bit module */
594 spec
->type
= SPEC_WIN16
;
595 load_resources( argv
, spec
);
596 if (parse_input_file( spec
)) BuildSpec16File( spec
);
601 load_resources( argv
, spec
);
602 load_import_libs( argv
);
603 if (spec_file_name
&& !parse_input_file( spec
)) break;
604 read_undef_symbols( spec
, argv
);
608 output_spec16_file( spec
);
611 BuildSpec32File( spec
);
617 if (argv
[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv
[0] );
618 if (spec
->type
== SPEC_WIN16
) fatal_error( "Cannot yet build .def file for 16-bit dlls\n" );
619 if (!spec_file_name
) fatal_error( "missing .spec file\n" );
620 if (!parse_input_file( spec
)) break;
621 BuildDef32File( spec
);
624 if (argv
[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv
[0] );
628 if (argv
[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv
[0] );
632 load_resources( argv
, spec
);
633 output_res_o_file( spec
);
639 if (nb_errors
) exit(1);
640 if (output_file_name
)
642 if (fclose( output_file
) < 0) fatal_perror( "fclose" );
643 if (output_file_source_name
) assemble_file( output_file_source_name
, output_file_name
);
644 output_file_name
= NULL
;