winebuild: Mark up fallthrough switch cases (Coverity).
[wine] / tools / winebuild / main.c
1 /*
2  * Main function
3  *
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
9  *
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.
14  *
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.
19  *
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
23  */
24
25 #include "config.h"
26 #include "wine/port.h"
27
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
38
39 #include "build.h"
40
41 int UsePIC = 0;
42 int nb_lib_paths = 0;
43 int nb_errors = 0;
44 int display_warnings = 0;
45 int kill_at = 0;
46 int verbose = 0;
47 int save_temps = 0;
48 int link_ext_symbols = 0;
49 int force_pointer_size = 0;
50 int unwind_tables = 0;
51
52 #ifdef __i386__
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(__ALPHA__)
59 enum target_cpu target_cpu = CPU_ALPHA;
60 #elif defined(__powerpc__)
61 enum target_cpu target_cpu = CPU_POWERPC;
62 #elif defined(__arm__)
63 enum target_cpu target_cpu = CPU_ARM;
64 #else
65 #error Unsupported CPU
66 #endif
67
68 #ifdef __APPLE__
69 enum target_platform target_platform = PLATFORM_APPLE;
70 #elif defined(__FreeBSD__)
71 enum target_platform target_platform = PLATFORM_FREEBSD;
72 #elif defined(__sun)
73 enum target_platform target_platform = PLATFORM_SOLARIS;
74 #elif defined(_WIN32)
75 enum target_platform target_platform = PLATFORM_WINDOWS;
76 #else
77 enum target_platform target_platform = PLATFORM_UNSPECIFIED;
78 #endif
79
80 char *target_alias = NULL;
81 char **lib_path = NULL;
82
83 char *input_file_name = NULL;
84 char *spec_file_name = NULL;
85 FILE *output_file = NULL;
86 const char *output_file_name = NULL;
87 static const char *output_file_source_name;
88 static int fake_module;
89
90 char *as_command = NULL;
91 char *ld_command = NULL;
92 char *nm_command = NULL;
93
94 static int nb_res_files;
95 static char **res_files;
96
97 /* execution mode */
98 enum exec_mode_values
99 {
100     MODE_NONE,
101     MODE_DLL,
102     MODE_EXE,
103     MODE_DEF,
104     MODE_IMPLIB,
105     MODE_RESOURCES
106 };
107
108 static enum exec_mode_values exec_mode = MODE_NONE;
109
110 static const struct
111 {
112     const char *name;
113     enum target_platform platform;
114 } platform_names[] =
115 {
116     { "macos",   PLATFORM_APPLE },
117     { "darwin",  PLATFORM_APPLE },
118     { "freebsd", PLATFORM_FREEBSD },
119     { "solaris", PLATFORM_SOLARIS },
120     { "mingw32", PLATFORM_WINDOWS },
121     { "windows", PLATFORM_WINDOWS },
122     { "winnt",   PLATFORM_WINDOWS }
123 };
124
125 /* set the dll file name from the input file name */
126 static void set_dll_file_name( const char *name, DLLSPEC *spec )
127 {
128     char *p;
129
130     if (spec->file_name) return;
131
132     if ((p = strrchr( name, '\\' ))) name = p + 1;
133     if ((p = strrchr( name, '/' ))) name = p + 1;
134     spec->file_name = xmalloc( strlen(name) + 5 );
135     strcpy( spec->file_name, name );
136     if ((p = strrchr( spec->file_name, '.' )))
137     {
138         if (!strcmp( p, ".spec" ) || !strcmp( p, ".def" )) *p = 0;
139     }
140 }
141
142 /* set the dll name from the file name */
143 static void init_dll_name( DLLSPEC *spec )
144 {
145     if (!spec->file_name && output_file_name)
146     {
147         char *p;
148         spec->file_name = xstrdup( output_file_name );
149         if ((p = strrchr( spec->file_name, '.' ))) *p = 0;
150     }
151     if (!spec->dll_name && spec->file_name)  /* set default name from file name */
152     {
153         char *p;
154         spec->dll_name = xstrdup( spec->file_name );
155         if ((p = strrchr( spec->dll_name, '.' ))) *p = 0;
156     }
157 }
158
159 /* set the dll subsystem */
160 static void set_subsystem( const char *subsystem, DLLSPEC *spec )
161 {
162     char *major, *minor, *str = xstrdup( subsystem );
163
164     if ((major = strchr( str, ':' ))) *major++ = 0;
165     if (!strcmp( str, "native" )) spec->subsystem = IMAGE_SUBSYSTEM_NATIVE;
166     else if (!strcmp( str, "windows" )) spec->subsystem = IMAGE_SUBSYSTEM_WINDOWS_GUI;
167     else if (!strcmp( str, "console" )) spec->subsystem = IMAGE_SUBSYSTEM_WINDOWS_CUI;
168     else if (!strcmp( str, "wince" ))   spec->subsystem = IMAGE_SUBSYSTEM_WINDOWS_CE_GUI;
169     else if (!strcmp( str, "win16" )) spec->type = SPEC_WIN16;
170     else fatal_error( "Invalid subsystem name '%s'\n", subsystem );
171     if (major)
172     {
173         if ((minor = strchr( major, '.' )))
174         {
175             *minor++ = 0;
176             spec->subsystem_minor = atoi( minor );
177         }
178         spec->subsystem_major = atoi( major );
179     }
180     free( str );
181 }
182
183 /* set the target CPU and platform */
184 static void set_target( const char *target )
185 {
186     unsigned int i;
187     char *p, *platform, *spec = xstrdup( target );
188
189     /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
190
191     target_alias = xstrdup( target );
192
193     /* get the CPU part */
194
195     if (!(p = strchr( spec, '-' ))) fatal_error( "Invalid target specification '%s'\n", target );
196     *p++ = 0;
197     if ((target_cpu = get_cpu_from_name( spec )) == -1)
198         fatal_error( "Unrecognized CPU '%s'\n", spec );
199     platform = p;
200     if ((p = strrchr( p, '-' ))) platform = p + 1;
201
202     /* get the OS part */
203
204     target_platform = PLATFORM_UNSPECIFIED;  /* default value */
205     for (i = 0; i < sizeof(platform_names)/sizeof(platform_names[0]); i++)
206     {
207         if (!strncmp( platform_names[i].name, platform, strlen(platform_names[i].name) ))
208         {
209             target_platform = platform_names[i].platform;
210             break;
211         }
212     }
213
214     free( spec );
215 }
216
217 /* cleanup on program exit */
218 static void cleanup(void)
219 {
220     if (output_file_name) unlink( output_file_name );
221 }
222
223 /* clean things up when aborting on a signal */
224 static void exit_on_signal( int sig )
225 {
226     exit(1);  /* this will call atexit functions */
227 }
228
229 /*******************************************************************
230  *         command-line option handling
231  */
232 static const char usage_str[] =
233 "Usage: winebuild [OPTIONS] [FILES]\n\n"
234 "Options:\n"
235 "       --as-cmd=AS           Command to use for assembling (default: as)\n"
236 "   -b, --target=TARGET       Specify target CPU and platform for cross-compiling\n"
237 "   -d, --delay-lib=LIB       Import the specified library in delayed mode\n"
238 "   -D SYM                    Ignored for C flags compatibility\n"
239 "   -e, --entry=FUNC          Set the DLL entry point function (default: DllMain)\n"
240 "   -E, --export=FILE         Export the symbols defined in the .spec or .def file\n"
241 "       --external-symbols    Allow linking to external symbols\n"
242 "   -f FLAGS                  Compiler flags (-fPIC and -fasynchronous-unwind-tables are supported)\n"
243 "   -F, --filename=DLLFILE    Set the DLL filename (default: from input file name)\n"
244 "       --fake-module         Create a fake binary module\n"
245 "   -h, --help                Display this help message\n"
246 "   -H, --heap=SIZE           Set the heap size for a Win16 dll\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 "       --large-address-aware Support an address space larger than 2Gb\n"
251 "       --ld-cmd=LD           Command to use for linking (default: ld)\n"
252 "   -l, --library=LIB         Import the specified library\n"
253 "   -L, --library-path=DIR    Look for imports libraries in DIR\n"
254 "   -m16, -m32, -m64          Force building 16-bit, 32-bit resp. 64-bit code\n"
255 "   -M, --main-module=MODULE  Set the name of the main module for a Win16 dll\n"
256 "       --nm-cmd=NM           Command to use to get undefined symbols (default: nm)\n"
257 "       --nxcompat=y|n        Set the NX compatibility flag (default: yes)\n"
258 "   -N, --dll-name=DLLNAME    Set the DLL name (default: from input file name)\n"
259 "   -o, --output=NAME         Set the output file name (default: stdout)\n"
260 "   -r, --res=RSRC.RES        Load resources from RSRC.RES\n"
261 "       --save-temps          Do not delete the generated intermediate files\n"
262 "       --subsystem=SUBSYS    Set the subsystem (one of native, windows, console, wince)\n"
263 "   -u, --undefined=SYMBOL    Add an undefined reference to SYMBOL when linking\n"
264 "   -v, --verbose             Display the programs invoked\n"
265 "       --version             Print the version and exit\n"
266 "   -w, --warnings            Turn on warnings\n"
267 "\nMode options:\n"
268 "       --dll                 Build a .c file from a .spec or .def file\n"
269 "       --def                 Build a .def file from a .spec file\n"
270 "       --exe                 Build a .c file for an executable\n"
271 "       --implib              Build an import library\n"
272 "       --resources           Build a .o file for the resource files\n\n"
273 "The mode options are mutually exclusive; you must specify one and only one.\n\n";
274
275 enum long_options_values
276 {
277     LONG_OPT_DLL = 1,
278     LONG_OPT_DEF,
279     LONG_OPT_EXE,
280     LONG_OPT_IMPLIB,
281     LONG_OPT_ASCMD,
282     LONG_OPT_EXTERNAL_SYMS,
283     LONG_OPT_FAKE_MODULE,
284     LONG_OPT_LARGE_ADDRESS_AWARE,
285     LONG_OPT_LDCMD,
286     LONG_OPT_NMCMD,
287     LONG_OPT_NXCOMPAT,
288     LONG_OPT_RESOURCES,
289     LONG_OPT_SAVE_TEMPS,
290     LONG_OPT_SUBSYSTEM,
291     LONG_OPT_VERSION
292 };
293
294 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
296 static const struct option long_options[] =
297 {
298     { "dll",           0, 0, LONG_OPT_DLL },
299     { "def",           0, 0, LONG_OPT_DEF },
300     { "exe",           0, 0, LONG_OPT_EXE },
301     { "implib",        0, 0, LONG_OPT_IMPLIB },
302     { "as-cmd",        1, 0, LONG_OPT_ASCMD },
303     { "external-symbols", 0, 0, LONG_OPT_EXTERNAL_SYMS },
304     { "fake-module",   0, 0, LONG_OPT_FAKE_MODULE },
305     { "large-address-aware", 0, 0, LONG_OPT_LARGE_ADDRESS_AWARE },
306     { "ld-cmd",        1, 0, LONG_OPT_LDCMD },
307     { "nm-cmd",        1, 0, LONG_OPT_NMCMD },
308     { "nxcompat",      1, 0, LONG_OPT_NXCOMPAT },
309     { "resources",     0, 0, LONG_OPT_RESOURCES },
310     { "save-temps",    0, 0, LONG_OPT_SAVE_TEMPS },
311     { "subsystem",     1, 0, LONG_OPT_SUBSYSTEM },
312     { "version",       0, 0, LONG_OPT_VERSION },
313     /* aliases for short options */
314     { "target",        1, 0, 'b' },
315     { "delay-lib",     1, 0, 'd' },
316     { "export",        1, 0, 'E' },
317     { "entry",         1, 0, 'e' },
318     { "filename",      1, 0, 'F' },
319     { "help",          0, 0, 'h' },
320     { "heap",          1, 0, 'H' },
321     { "kill-at",       0, 0, 'k' },
322     { "library",       1, 0, 'l' },
323     { "library-path",  1, 0, 'L' },
324     { "main-module",   1, 0, 'M' },
325     { "dll-name",      1, 0, 'N' },
326     { "output",        1, 0, 'o' },
327     { "res",           1, 0, 'r' },
328     { "undefined",     1, 0, 'u' },
329     { "verbose",       0, 0, 'v' },
330     { "warnings",      0, 0, 'w' },
331     { NULL,            0, 0, 0 }
332 };
333
334 static void usage( int exit_code )
335 {
336     fprintf( stderr, "%s", usage_str );
337     exit( exit_code );
338 }
339
340 static void set_exec_mode( enum exec_mode_values mode )
341 {
342     if (exec_mode != MODE_NONE) usage(1);
343     exec_mode = mode;
344 }
345
346 /* parse options from the argv array and remove all the recognized ones */
347 static char **parse_options( int argc, char **argv, DLLSPEC *spec )
348 {
349     char *p;
350     int optc;
351
352     while ((optc = getopt_long( argc, argv, short_options, long_options, NULL )) != -1)
353     {
354         switch(optc)
355         {
356         case 'D':
357             /* ignored */
358             break;
359         case 'E':
360             spec_file_name = xstrdup( optarg );
361             set_dll_file_name( optarg, spec );
362             break;
363         case 'F':
364             spec->file_name = xstrdup( optarg );
365             break;
366         case 'H':
367             if (!isdigit(optarg[0]))
368                 fatal_error( "Expected number argument with -H option instead of '%s'\n", optarg );
369             spec->heap_size = atoi(optarg);
370             if (spec->heap_size > 65535)
371                 fatal_error( "Invalid heap size %d, maximum is 65535\n", spec->heap_size );
372             break;
373         case 'I':
374             /* ignored */
375             break;
376         case 'K':
377             /* ignored, because cc generates correct code. */
378             break;
379         case 'L':
380             lib_path = xrealloc( lib_path, (nb_lib_paths+1) * sizeof(*lib_path) );
381             lib_path[nb_lib_paths++] = xstrdup( optarg );
382             break;
383         case 'm':
384             if (strcmp( optarg, "16" ) && strcmp( optarg, "32" ) && strcmp( optarg, "64" ))
385                 fatal_error( "Invalid -m option '%s', expected -m16, -m32 or -m64\n", optarg );
386             if (!strcmp( optarg, "16" )) spec->type = SPEC_WIN16;
387             else if (!strcmp( optarg, "32" )) force_pointer_size = 4;
388             else force_pointer_size = 8;
389             break;
390         case 'M':
391             spec->main_module = xstrdup( optarg );
392             break;
393         case 'N':
394             spec->dll_name = xstrdup( optarg );
395             break;
396         case 'b':
397             set_target( optarg );
398             break;
399         case 'd':
400             add_delayed_import( optarg );
401             break;
402         case 'e':
403             spec->init_func = xstrdup( optarg );
404             if ((p = strchr( spec->init_func, '@' ))) *p = 0;  /* kill stdcall decoration */
405             break;
406         case 'f':
407             if (!strcmp( optarg, "PIC") || !strcmp( optarg, "pic")) UsePIC = 1;
408             else if (!strcmp( optarg, "asynchronous-unwind-tables")) unwind_tables = 1;
409             else if (!strcmp( optarg, "no-asynchronous-unwind-tables")) unwind_tables = 0;
410             /* ignore all other flags */
411             break;
412         case 'h':
413             usage(0);
414             break;
415         case 'k':
416             kill_at = 1;
417             break;
418         case 'l':
419             add_import_dll( optarg, NULL );
420             break;
421         case 'o':
422             {
423                 char *ext = strrchr( optarg, '.' );
424
425                 if (unlink( optarg ) == -1 && errno != ENOENT)
426                     fatal_error( "Unable to create output file '%s'\n", optarg );
427                 if (ext && !strcmp( ext, ".o" ))
428                 {
429                     output_file_source_name = get_temp_file_name( optarg, ".s" );
430                     if (!(output_file = fopen( output_file_source_name, "w" )))
431                         fatal_error( "Unable to create output file '%s'\n", optarg );
432                 }
433                 else
434                 {
435                     if (!(output_file = fopen( optarg, "w" )))
436                         fatal_error( "Unable to create output file '%s'\n", optarg );
437                 }
438                 output_file_name = xstrdup(optarg);
439                 atexit( cleanup );  /* make sure we remove the output file on exit */
440             }
441             break;
442         case 'r':
443             res_files = xrealloc( res_files, (nb_res_files+1) * sizeof(*res_files) );
444             res_files[nb_res_files++] = xstrdup( optarg );
445             break;
446         case 'u':
447             add_extra_ld_symbol( optarg );
448             break;
449         case 'v':
450             verbose++;
451             break;
452         case 'w':
453             display_warnings = 1;
454             break;
455         case LONG_OPT_DLL:
456             set_exec_mode( MODE_DLL );
457             break;
458         case LONG_OPT_DEF:
459             set_exec_mode( MODE_DEF );
460             break;
461         case LONG_OPT_EXE:
462             set_exec_mode( MODE_EXE );
463             if (!spec->subsystem) spec->subsystem = IMAGE_SUBSYSTEM_WINDOWS_GUI;
464             break;
465         case LONG_OPT_IMPLIB:
466             set_exec_mode( MODE_IMPLIB );
467             break;
468         case LONG_OPT_ASCMD:
469             as_command = xstrdup( optarg );
470             break;
471         case LONG_OPT_FAKE_MODULE:
472             fake_module = 1;
473             break;
474         case LONG_OPT_EXTERNAL_SYMS:
475             link_ext_symbols = 1;
476             break;
477         case LONG_OPT_LARGE_ADDRESS_AWARE:
478             spec->characteristics |= IMAGE_FILE_LARGE_ADDRESS_AWARE;
479             break;
480         case LONG_OPT_LDCMD:
481             ld_command = xstrdup( optarg );
482             break;
483         case LONG_OPT_NMCMD:
484             nm_command = xstrdup( optarg );
485             break;
486         case LONG_OPT_NXCOMPAT:
487             if (optarg[0] == 'n' || optarg[0] == 'N')
488                 spec->dll_characteristics &= ~IMAGE_DLLCHARACTERISTICS_NX_COMPAT;
489             break;
490         case LONG_OPT_RESOURCES:
491             set_exec_mode( MODE_RESOURCES );
492             break;
493         case LONG_OPT_SAVE_TEMPS:
494             save_temps = 1;
495             break;
496         case LONG_OPT_SUBSYSTEM:
497             set_subsystem( optarg, spec );
498             break;
499         case LONG_OPT_VERSION:
500             printf( "winebuild version " PACKAGE_VERSION "\n" );
501             exit(0);
502         case '?':
503             usage(1);
504             break;
505         }
506     }
507
508     if (spec->file_name && !strchr( spec->file_name, '.' ))
509         strcat( spec->file_name, exec_mode == MODE_EXE ? ".exe" : ".dll" );
510     init_dll_name( spec );
511
512     switch (target_cpu)
513     {
514     case CPU_x86:
515         if (force_pointer_size == 8) target_cpu = CPU_x86_64;
516         break;
517     case CPU_x86_64:
518         if (force_pointer_size == 4) target_cpu = CPU_x86;
519         break;
520     default:
521         if (force_pointer_size == 8)
522             fatal_error( "Cannot build 64-bit code for this CPU\n" );
523         break;
524     }
525
526     return &argv[optind];
527 }
528
529
530 /* load all specified resource files */
531 static void load_resources( char *argv[], DLLSPEC *spec )
532 {
533     int i;
534     char **ptr, **last;
535
536     switch (spec->type)
537     {
538     case SPEC_WIN16:
539         for (i = 0; i < nb_res_files; i++) load_res16_file( res_files[i], spec );
540         break;
541
542     case SPEC_WIN32:
543         for (i = 0; i < nb_res_files; i++)
544         {
545             if (!load_res32_file( res_files[i], spec ))
546                 fatal_error( "%s is not a valid Win32 resource file\n", res_files[i] );
547         }
548
549         /* load any resource file found in the remaining arguments */
550         for (ptr = last = argv; *ptr; ptr++)
551         {
552             if (!load_res32_file( *ptr, spec ))
553                 *last++ = *ptr; /* not a resource file, keep it in the list */
554         }
555         *last = NULL;
556         break;
557     }
558 }
559
560 /* add input files that look like import libs to the import list */
561 static void load_import_libs( char *argv[] )
562 {
563     char **ptr, **last;
564
565     for (ptr = last = argv; *ptr; ptr++)
566     {
567         if (strendswith( *ptr, ".def" ))
568             add_import_dll( NULL, *ptr );
569         else
570             *last++ = *ptr; /* not an import dll, keep it in the list */
571     }
572     *last = NULL;
573 }
574
575 static int parse_input_file( DLLSPEC *spec )
576 {
577     FILE *input_file = open_input_file( NULL, spec_file_name );
578     char *extension = strrchr( spec_file_name, '.' );
579     int result;
580
581     spec->src_name = xstrdup( input_file_name );
582     if (extension && !strcmp( extension, ".def" ))
583         result = parse_def_file( input_file, spec );
584     else
585         result = parse_spec_file( input_file, spec );
586     close_input_file( input_file );
587     return result;
588 }
589
590
591 /*******************************************************************
592  *         main
593  */
594 int main(int argc, char **argv)
595 {
596     DLLSPEC *spec = alloc_dll_spec();
597
598 #ifdef SIGHUP
599     signal( SIGHUP, exit_on_signal );
600 #endif
601     signal( SIGTERM, exit_on_signal );
602     signal( SIGINT, exit_on_signal );
603
604     output_file = stdout;
605     argv = parse_options( argc, argv, spec );
606
607     switch(exec_mode)
608     {
609     case MODE_DLL:
610         if (spec->subsystem != IMAGE_SUBSYSTEM_NATIVE)
611             spec->characteristics |= IMAGE_FILE_DLL;
612         /* fall through */
613     case MODE_EXE:
614         load_resources( argv, spec );
615         load_import_libs( argv );
616         if (spec_file_name && !parse_input_file( spec )) break;
617         if (fake_module)
618         {
619             if (spec->type == SPEC_WIN16) output_fake_module16( spec );
620             else output_fake_module( spec );
621             break;
622         }
623         read_undef_symbols( spec, argv );
624         switch (spec->type)
625         {
626             case SPEC_WIN16:
627                 output_spec16_file( spec );
628                 break;
629             case SPEC_WIN32:
630                 BuildSpec32File( spec );
631                 break;
632             default: assert(0);
633         }
634         break;
635     case MODE_DEF:
636         if (argv[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv[0] );
637         if (!spec_file_name) fatal_error( "missing .spec file\n" );
638         if (!parse_input_file( spec )) break;
639         output_def_file( spec, 1 );
640         break;
641     case MODE_IMPLIB:
642         if (!spec_file_name) fatal_error( "missing .spec file\n" );
643         if (!parse_input_file( spec )) break;
644         output_import_lib( spec, argv );
645         break;
646     case MODE_RESOURCES:
647         load_resources( argv, spec );
648         output_res_o_file( spec );
649         break;
650     default:
651         usage(1);
652         break;
653     }
654     if (nb_errors) exit(1);
655     if (output_file_name)
656     {
657         if (fclose( output_file ) < 0) fatal_perror( "fclose" );
658         if (output_file_source_name) assemble_file( output_file_source_name, output_file_name );
659         output_file_name = NULL;
660     }
661     return 0;
662 }