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
26 #include "wine/port.h"
43 int nb_debug_channels
= 0;
46 int display_warnings
= 0;
49 /* we only support relay debugging on i386 */
50 #if defined(__i386__) && !defined(NO_TRACE_MSGS)
56 char **debug_channels
= NULL
;
57 char **lib_path
= NULL
;
59 char *input_file_name
= NULL
;
60 const char *output_file_name
= NULL
;
62 static FILE *output_file
;
63 static const char *current_src_dir
;
64 static int nb_res_files
;
65 static char **res_files
;
66 static char *spec_file_name
;
80 static enum exec_mode_values exec_mode
= MODE_NONE
;
82 /* set the dll file name from the input file name */
83 static void set_dll_file_name( const char *name
, DLLSPEC
*spec
)
87 if (spec
->file_name
) return;
89 if ((p
= strrchr( name
, '\\' ))) name
= p
+ 1;
90 if ((p
= strrchr( name
, '/' ))) name
= p
+ 1;
91 spec
->file_name
= xmalloc( strlen(name
) + 5 );
92 strcpy( spec
->file_name
, name
);
93 if ((p
= strrchr( spec
->file_name
, '.' )))
95 if (!strcmp( p
, ".spec" ) || !strcmp( p
, ".def" )) *p
= 0;
97 if (!strchr( spec
->file_name
, '.' )) strcat( spec
->file_name
, ".dll" );
100 /* set the dll subsystem */
101 static void set_subsystem( const char *subsystem
, DLLSPEC
*spec
)
103 char *major
, *minor
, *str
= xstrdup( subsystem
);
105 if ((major
= strchr( str
, ':' ))) *major
++ = 0;
106 if (!strcmp( str
, "native" )) spec
->subsystem
= IMAGE_SUBSYSTEM_NATIVE
;
107 else if (!strcmp( str
, "windows" )) spec
->subsystem
= IMAGE_SUBSYSTEM_WINDOWS_GUI
;
108 else if (!strcmp( str
, "console" )) spec
->subsystem
= IMAGE_SUBSYSTEM_WINDOWS_CUI
;
109 else fatal_error( "Invalid subsystem name '%s'\n", subsystem
);
112 if ((minor
= strchr( major
, '.' )))
115 spec
->subsystem_minor
= atoi( minor
);
117 spec
->subsystem_major
= atoi( major
);
122 /* cleanup on program exit */
123 static void cleanup(void)
125 if (output_file_name
) unlink( output_file_name
);
129 /*******************************************************************
130 * command-line option handling
132 static const char usage_str
[] =
133 "Usage: winebuild [OPTIONS] [FILES]\n\n"
135 " -C --source-dir=DIR Look for source files in DIR\n"
136 " -d --delay-lib=LIB Import the specified library in delayed mode\n"
137 " -D SYM Ignored for C flags compatibility\n"
138 " -e --entry=FUNC Set the DLL entry point function (default: DllMain)\n"
139 " -f FLAGS Compiler flags (only -fPIC is supported)\n"
140 " -F --filename=DLLFILE Set the DLL filename (default: from input file name)\n"
141 " -h --help Display this help message\n"
142 " -H --heap=SIZE Set the heap size for a Win16 dll\n"
143 " -i --ignore=SYM[,SYM] Ignore specified symbols when resolving imports\n"
144 " -I DIR Ignored for C flags compatibility\n"
145 " -k --kill-at Kill stdcall decorations in generated .def files\n"
146 " -K FLAGS Compiler flags (only -KPIC is supported)\n"
147 " -l --library=LIB Import the specified library\n"
148 " -L --library-path=DIR Look for imports libraries in DIR\n"
149 " -M --main-module=MODULE Set the name of the main module for a Win16 dll\n"
150 " -N --dll-name=DLLNAME Set the DLL name (default: from input file name)\n"
151 " -o --output=NAME Set the output file name (default: stdout)\n"
152 " -r --res=RSRC.RES Load resources from RSRC.RES\n"
153 " --subsystem=SUBSYS Set the subsystem (one of native, windows, console)\n"
154 " --version Print the version and exit\n"
155 " -w --warnings Turn on warnings\n"
157 " --dll=FILE Build a .c file from a .spec or .def file\n"
158 " --def=FILE.SPEC Build a .def file from a spec file\n"
159 " --exe=NAME Build a .c file for the named executable\n"
160 " --debug [FILES] Build a .c file with the debug channels declarations\n"
161 " --relay16 Build the 16-bit relay assembly routines\n"
162 " --relay32 Build the 32-bit relay assembly routines\n\n"
163 "The mode options are mutually exclusive; you must specify one and only one.\n\n";
165 enum long_options_values
177 static const char short_options
[] = "C:D:F:H:I:K:L:M:N:d:e:f:hi:kl:m:o:r:w";
179 static const struct option long_options
[] =
181 { "dll", 1, 0, LONG_OPT_DLL
},
182 { "def", 1, 0, LONG_OPT_DEF
},
183 { "exe", 1, 0, LONG_OPT_EXE
},
184 { "debug", 0, 0, LONG_OPT_DEBUG
},
185 { "relay16", 0, 0, LONG_OPT_RELAY16
},
186 { "relay32", 0, 0, LONG_OPT_RELAY32
},
187 { "subsystem",1, 0, LONG_OPT_SUBSYSTEM
},
188 { "version", 0, 0, LONG_OPT_VERSION
},
189 /* aliases for short options */
190 { "source-dir", 1, 0, 'C' },
191 { "delay-lib", 1, 0, 'd' },
192 { "entry", 1, 0, 'e' },
193 { "filename", 1, 0, 'F' },
194 { "help", 0, 0, 'h' },
195 { "heap", 1, 0, 'H' },
196 { "ignore", 1, 0, 'i' },
197 { "kill-at", 0, 0, 'k' },
198 { "library", 1, 0, 'l' },
199 { "library-path", 1, 0, 'L' },
200 { "main-module", 1, 0, 'M' },
201 { "dll-name", 1, 0, 'N' },
202 { "output", 1, 0, 'o' },
203 { "res", 1, 0, 'r' },
204 { "warnings", 0, 0, 'w' },
208 static void usage( int exit_code
)
210 fprintf( stderr
, "%s", usage_str
);
214 static void set_exec_mode( enum exec_mode_values mode
)
216 if (exec_mode
!= MODE_NONE
) usage(1);
220 /* parse options from the argv array and remove all the recognized ones */
221 static char **parse_options( int argc
, char **argv
, DLLSPEC
*spec
)
226 while ((optc
= getopt_long( argc
, argv
, short_options
, long_options
, NULL
)) != -1)
231 current_src_dir
= optarg
;
237 spec
->file_name
= xstrdup( optarg
);
240 if (!isdigit(optarg
[0]))
241 fatal_error( "Expected number argument with -H option instead of '%s'\n", optarg
);
242 spec
->heap_size
= atoi(optarg
);
243 if (spec
->heap_size
> 65535)
244 fatal_error( "Invalid heap size %d, maximum is 65535\n", spec
->heap_size
);
250 /* ignored, because cc generates correct code. */
253 lib_path
= xrealloc( lib_path
, (nb_lib_paths
+1) * sizeof(*lib_path
) );
254 lib_path
[nb_lib_paths
++] = xstrdup( optarg
);
257 spec
->owner_name
= xstrdup( optarg
);
258 spec
->type
= SPEC_WIN16
;
261 spec
->dll_name
= xstrdup( optarg
);
264 add_import_dll( optarg
, 1 );
267 spec
->init_func
= xstrdup( optarg
);
268 if ((p
= strchr( spec
->init_func
, '@' ))) *p
= 0; /* kill stdcall decoration */
271 if (!strcmp( optarg
, "PIC") || !strcmp( optarg
, "pic")) UsePIC
= 1;
272 /* ignore all other flags */
279 char *str
= xstrdup( optarg
);
280 char *token
= strtok( str
, "," );
283 add_ignore_symbol( token
);
284 token
= strtok( NULL
, "," );
293 add_import_dll( optarg
, 0 );
296 if (unlink( optarg
) == -1 && errno
!= ENOENT
)
297 fatal_error( "Unable to create output file '%s'\n", optarg
);
298 if (!(output_file
= fopen( optarg
, "w" )))
299 fatal_error( "Unable to create output file '%s'\n", optarg
);
300 output_file_name
= xstrdup(optarg
);
301 atexit( cleanup
); /* make sure we remove the output file on exit */
304 res_files
= xrealloc( res_files
, (nb_res_files
+1) * sizeof(*res_files
) );
305 res_files
[nb_res_files
++] = xstrdup( optarg
);
308 display_warnings
= 1;
311 set_exec_mode( MODE_DLL
);
312 spec_file_name
= xstrdup( optarg
);
313 set_dll_file_name( optarg
, spec
);
316 set_exec_mode( MODE_DEF
);
317 spec_file_name
= xstrdup( optarg
);
318 set_dll_file_name( optarg
, spec
);
321 set_exec_mode( MODE_EXE
);
322 if ((p
= strrchr( optarg
, '/' ))) p
++;
324 spec
->file_name
= xmalloc( strlen(p
) + 5 );
325 strcpy( spec
->file_name
, p
);
326 if (!strchr( spec
->file_name
, '.' )) strcat( spec
->file_name
, ".exe" );
327 if (!spec
->subsystem
) spec
->subsystem
= IMAGE_SUBSYSTEM_WINDOWS_GUI
;
330 set_exec_mode( MODE_DEBUG
);
332 case LONG_OPT_RELAY16
:
333 set_exec_mode( MODE_RELAY16
);
335 case LONG_OPT_RELAY32
:
336 set_exec_mode( MODE_RELAY32
);
338 case LONG_OPT_SUBSYSTEM
:
339 set_subsystem( optarg
, spec
);
341 case LONG_OPT_VERSION
:
342 printf( "winebuild version " PACKAGE_VERSION
"\n" );
349 return &argv
[optind
];
353 /* load all specified resource files */
354 static void load_resources( char *argv
[], DLLSPEC
*spec
)
362 for (i
= 0; i
< nb_res_files
; i
++) load_res16_file( res_files
[i
], spec
);
366 for (i
= 0; i
< nb_res_files
; i
++)
368 if (!load_res32_file( res_files
[i
], spec
))
369 fatal_error( "%s is not a valid Win32 resource file\n", res_files
[i
] );
372 /* load any resource file found in the remaining arguments */
373 for (ptr
= last
= argv
; *ptr
; ptr
++)
375 if (!load_res32_file( *ptr
, spec
))
376 *last
++ = *ptr
; /* not a resource file, keep it in the list */
383 static int parse_input_file( DLLSPEC
*spec
)
385 FILE *input_file
= open_input_file( NULL
, spec_file_name
);
386 char *extension
= strrchr( spec_file_name
, '.' );
388 if (extension
&& !strcmp( extension
, ".def" ))
389 return parse_def_file( input_file
, spec
);
391 return parse_spec_file( input_file
, spec
);
392 close_input_file( input_file
);
396 /*******************************************************************
399 int main(int argc
, char **argv
)
401 DLLSPEC
*spec
= alloc_dll_spec();
403 output_file
= stdout
;
404 argv
= parse_options( argc
, argv
, spec
);
409 spec
->characteristics
|= IMAGE_FILE_DLL
;
410 load_resources( argv
, spec
);
411 if (!parse_input_file( spec
)) break;
416 fatal_error( "file argument '%s' not allowed in this mode\n", argv
[0] );
417 BuildSpec16File( output_file
, spec
);
420 read_undef_symbols( argv
);
421 BuildSpec32File( output_file
, spec
);
427 if (spec
->type
== SPEC_WIN16
) fatal_error( "Cannot build 16-bit exe files\n" );
428 load_resources( argv
, spec
);
429 read_undef_symbols( argv
);
430 BuildSpec32File( output_file
, spec
);
433 if (argv
[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv
[0] );
434 if (spec
->type
== SPEC_WIN16
) fatal_error( "Cannot yet build .def file for 16-bit dlls\n" );
435 if (!parse_input_file( spec
)) break;
436 BuildDef32File( output_file
, spec
);
439 BuildDebugFile( output_file
, current_src_dir
, argv
);
442 if (argv
[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv
[0] );
443 BuildRelays16( output_file
);
446 if (argv
[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv
[0] );
447 BuildRelays32( output_file
);
453 if (nb_errors
) exit(1);
454 if (output_file_name
)
456 fclose( output_file
);
457 output_file_name
= NULL
;