winegcc: Add support for specifying a custom static library suffix.
[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
51 #ifdef __i386__
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;
61 #elif defined(__arm__)
62 enum target_cpu target_cpu = CPU_ARM;
63 #else
64 #error Unsupported CPU
65 #endif
66
67 #ifdef __APPLE__
68 enum target_platform target_platform = PLATFORM_APPLE;
69 #elif defined(__FreeBSD__)
70 enum target_platform target_platform = PLATFORM_FREEBSD;
71 #elif defined(__sun)
72 enum target_platform target_platform = PLATFORM_SOLARIS;
73 #elif defined(_WIN32)
74 enum target_platform target_platform = PLATFORM_WINDOWS;
75 #else
76 enum target_platform target_platform = PLATFORM_UNSPECIFIED;
77 #endif
78
79 char *target_alias = NULL;
80 char **lib_path = NULL;
81
82 char *input_file_name = NULL;
83 char *spec_file_name = NULL;
84 FILE *output_file = NULL;
85 const char *output_file_name = NULL;
86 static const char *output_file_source_name;
87 static int fake_module;
88
89 char *as_command = NULL;
90 char *ld_command = NULL;
91 char *nm_command = NULL;
92
93 static int nb_res_files;
94 static char **res_files;
95
96 /* execution mode */
97 enum exec_mode_values
98 {
99     MODE_NONE,
100     MODE_DLL,
101     MODE_EXE,
102     MODE_DEF,
103     MODE_IMPLIB,
104     MODE_RESOURCES
105 };
106
107 static enum exec_mode_values exec_mode = MODE_NONE;
108
109 static const struct
110 {
111     const char *name;
112     enum target_platform platform;
113 } platform_names[] =
114 {
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 }
122 };
123
124 /* set the dll file name from the input file name */
125 static void set_dll_file_name( const char *name, DLLSPEC *spec )
126 {
127     char *p;
128
129     if (spec->file_name) return;
130
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, '.' )))
136     {
137         if (!strcmp( p, ".spec" ) || !strcmp( p, ".def" )) *p = 0;
138     }
139 }
140
141 /* set the dll name from the file name */
142 static void init_dll_name( DLLSPEC *spec )
143 {
144     if (!spec->file_name)
145     {
146         char *p;
147         spec->file_name = xstrdup( output_file_name );
148         if ((p = strrchr( spec->file_name, '.' ))) *p = 0;
149     }
150     if (!spec->dll_name)  /* set default name from file name */
151     {
152         char *p;
153         spec->dll_name = xstrdup( spec->file_name );
154         if ((p = strrchr( spec->dll_name, '.' ))) *p = 0;
155     }
156 }
157
158 /* set the dll subsystem */
159 static void set_subsystem( const char *subsystem, DLLSPEC *spec )
160 {
161     char *major, *minor, *str = xstrdup( subsystem );
162
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, "win16" )) spec->type = SPEC_WIN16;
168     else fatal_error( "Invalid subsystem name '%s'\n", subsystem );
169     if (major)
170     {
171         if ((minor = strchr( major, '.' )))
172         {
173             *minor++ = 0;
174             spec->subsystem_minor = atoi( minor );
175         }
176         spec->subsystem_major = atoi( major );
177     }
178     free( str );
179 }
180
181 /* set the target CPU and platform */
182 static void set_target( const char *target )
183 {
184     unsigned int i;
185     char *p, *platform, *spec = xstrdup( target );
186
187     /* target specification is in the form CPU-MANUFACTURER-OS or CPU-MANUFACTURER-KERNEL-OS */
188
189     target_alias = xstrdup( target );
190
191     /* get the CPU part */
192
193     if (!(p = strchr( spec, '-' ))) fatal_error( "Invalid target specification '%s'\n", target );
194     *p++ = 0;
195     if ((target_cpu = get_cpu_from_name( spec )) == -1)
196         fatal_error( "Unrecognized CPU '%s'\n", spec );
197     platform = p;
198     if ((p = strrchr( p, '-' ))) platform = p + 1;
199
200     /* get the OS part */
201
202     target_platform = PLATFORM_UNSPECIFIED;  /* default value */
203     for (i = 0; i < sizeof(platform_names)/sizeof(platform_names[0]); i++)
204     {
205         if (!strncmp( platform_names[i].name, platform, strlen(platform_names[i].name) ))
206         {
207             target_platform = platform_names[i].platform;
208             break;
209         }
210     }
211
212     free( spec );
213 }
214
215 /* cleanup on program exit */
216 static void cleanup(void)
217 {
218     if (output_file_name) unlink( output_file_name );
219 }
220
221 /* clean things up when aborting on a signal */
222 static void exit_on_signal( int sig )
223 {
224     exit(1);  /* this will call atexit functions */
225 }
226
227 /*******************************************************************
228  *         command-line option handling
229  */
230 static const char usage_str[] =
231 "Usage: winebuild [OPTIONS] [FILES]\n\n"
232 "Options:\n"
233 "       --as-cmd=AS           Command to use for assembling (default: as)\n"
234 "   -b, --target=TARGET       Specify target CPU and platform for cross-compiling\n"
235 "   -d, --delay-lib=LIB       Import the specified library in delayed mode\n"
236 "   -D SYM                    Ignored for C flags compatibility\n"
237 "   -e, --entry=FUNC          Set the DLL entry point function (default: DllMain)\n"
238 "   -E, --export=FILE         Export the symbols defined in the .spec or .def file\n"
239 "       --external-symbols    Allow linking to external symbols\n"
240 "   -f FLAGS                  Compiler flags (only -fPIC is supported)\n"
241 "   -F, --filename=DLLFILE    Set the DLL filename (default: from input file name)\n"
242 "       --fake-module         Create a fake binary module\n"
243 "   -h, --help                Display this help message\n"
244 "   -H, --heap=SIZE           Set the heap size for a Win16 dll\n"
245 "   -i, --ignore=SYM[,SYM]    Ignore specified symbols when resolving imports\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 "   -m32, -m64                Force building 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)\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"
266 "\nMode options:\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";
273
274 enum long_options_values
275 {
276     LONG_OPT_DLL = 1,
277     LONG_OPT_DEF,
278     LONG_OPT_EXE,
279     LONG_OPT_IMPLIB,
280     LONG_OPT_ASCMD,
281     LONG_OPT_EXTERNAL_SYMS,
282     LONG_OPT_FAKE_MODULE,
283     LONG_OPT_LARGE_ADDRESS_AWARE,
284     LONG_OPT_LDCMD,
285     LONG_OPT_NMCMD,
286     LONG_OPT_NXCOMPAT,
287     LONG_OPT_RESOURCES,
288     LONG_OPT_SAVE_TEMPS,
289     LONG_OPT_SUBSYSTEM,
290     LONG_OPT_VERSION
291 };
292
293 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";
294
295 static const struct option long_options[] =
296 {
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     { "ignore",        1, 0, 'i' },
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, "32" ) && strcmp( optarg, "64" ))
385                 fatal_error( "Invalid -m option '%s', expected -m32 or -m64\n", optarg );
386             if (!strcmp( optarg, "32" )) force_pointer_size = 4;
387             else force_pointer_size = 8;
388             break;
389         case 'M':
390             spec->main_module = xstrdup( optarg );
391             break;
392         case 'N':
393             spec->dll_name = xstrdup( optarg );
394             break;
395         case 'b':
396             set_target( optarg );
397             break;
398         case 'd':
399             add_delayed_import( optarg );
400             break;
401         case 'e':
402             spec->init_func = xstrdup( optarg );
403             if ((p = strchr( spec->init_func, '@' ))) *p = 0;  /* kill stdcall decoration */
404             break;
405         case 'f':
406             if (!strcmp( optarg, "PIC") || !strcmp( optarg, "pic")) UsePIC = 1;
407             /* ignore all other flags */
408             break;
409         case 'h':
410             usage(0);
411             break;
412         case 'i':
413             {
414                 char *str = xstrdup( optarg );
415                 char *token = strtok( str, "," );
416                 while (token)
417                 {
418                     add_ignore_symbol( token );
419                     token = strtok( NULL, "," );
420                 }
421                 free( str );
422             }
423             break;
424         case 'k':
425             kill_at = 1;
426             break;
427         case 'l':
428             add_import_dll( optarg, NULL );
429             break;
430         case 'o':
431             {
432                 char *ext = strrchr( optarg, '.' );
433
434                 if (unlink( optarg ) == -1 && errno != ENOENT)
435                     fatal_error( "Unable to create output file '%s'\n", optarg );
436                 if (ext && !strcmp( ext, ".o" ))
437                 {
438                     output_file_source_name = get_temp_file_name( optarg, ".s" );
439                     if (!(output_file = fopen( output_file_source_name, "w" )))
440                         fatal_error( "Unable to create output file '%s'\n", optarg );
441                 }
442                 else
443                 {
444                     if (!(output_file = fopen( optarg, "w" )))
445                         fatal_error( "Unable to create output file '%s'\n", optarg );
446                 }
447                 output_file_name = xstrdup(optarg);
448                 atexit( cleanup );  /* make sure we remove the output file on exit */
449             }
450             break;
451         case 'r':
452             res_files = xrealloc( res_files, (nb_res_files+1) * sizeof(*res_files) );
453             res_files[nb_res_files++] = xstrdup( optarg );
454             break;
455         case 'u':
456             add_extra_ld_symbol( optarg );
457             break;
458         case 'v':
459             verbose++;
460             break;
461         case 'w':
462             display_warnings = 1;
463             break;
464         case LONG_OPT_DLL:
465             set_exec_mode( MODE_DLL );
466             break;
467         case LONG_OPT_DEF:
468             set_exec_mode( MODE_DEF );
469             break;
470         case LONG_OPT_EXE:
471             set_exec_mode( MODE_EXE );
472             if (!spec->subsystem) spec->subsystem = IMAGE_SUBSYSTEM_WINDOWS_GUI;
473             break;
474         case LONG_OPT_IMPLIB:
475             set_exec_mode( MODE_IMPLIB );
476             break;
477         case LONG_OPT_ASCMD:
478             as_command = xstrdup( optarg );
479             break;
480         case LONG_OPT_FAKE_MODULE:
481             fake_module = 1;
482             break;
483         case LONG_OPT_EXTERNAL_SYMS:
484             link_ext_symbols = 1;
485             break;
486         case LONG_OPT_LARGE_ADDRESS_AWARE:
487             spec->characteristics |= IMAGE_FILE_LARGE_ADDRESS_AWARE;
488             break;
489         case LONG_OPT_LDCMD:
490             ld_command = xstrdup( optarg );
491             break;
492         case LONG_OPT_NMCMD:
493             nm_command = xstrdup( optarg );
494             break;
495         case LONG_OPT_NXCOMPAT:
496             if (optarg[0] == 'n' || optarg[0] == 'N')
497                 spec->dll_characteristics &= ~IMAGE_DLLCHARACTERISTICS_NX_COMPAT;
498             break;
499         case LONG_OPT_RESOURCES:
500             set_exec_mode( MODE_RESOURCES );
501             break;
502         case LONG_OPT_SAVE_TEMPS:
503             save_temps = 1;
504             break;
505         case LONG_OPT_SUBSYSTEM:
506             set_subsystem( optarg, spec );
507             break;
508         case LONG_OPT_VERSION:
509             printf( "winebuild version " PACKAGE_VERSION "\n" );
510             exit(0);
511         case '?':
512             usage(1);
513             break;
514         }
515     }
516
517     if (spec->file_name && !strchr( spec->file_name, '.' ))
518         strcat( spec->file_name, exec_mode == MODE_EXE ? ".exe" : ".dll" );
519     init_dll_name( spec );
520
521     switch (target_cpu)
522     {
523     case CPU_x86:
524         if (force_pointer_size == 8) target_cpu = CPU_x86_64;
525         break;
526     case CPU_x86_64:
527         if (force_pointer_size == 4) target_cpu = CPU_x86;
528         break;
529     default:
530         if (force_pointer_size == 8)
531             fatal_error( "Cannot build 64-bit code for this CPU\n" );
532         break;
533     }
534
535     return &argv[optind];
536 }
537
538
539 /* load all specified resource files */
540 static void load_resources( char *argv[], DLLSPEC *spec )
541 {
542     int i;
543     char **ptr, **last;
544
545     switch (spec->type)
546     {
547     case SPEC_WIN16:
548         for (i = 0; i < nb_res_files; i++) load_res16_file( res_files[i], spec );
549         break;
550
551     case SPEC_WIN32:
552         for (i = 0; i < nb_res_files; i++)
553         {
554             if (!load_res32_file( res_files[i], spec ))
555                 fatal_error( "%s is not a valid Win32 resource file\n", res_files[i] );
556         }
557
558         /* load any resource file found in the remaining arguments */
559         for (ptr = last = argv; *ptr; ptr++)
560         {
561             if (!load_res32_file( *ptr, spec ))
562                 *last++ = *ptr; /* not a resource file, keep it in the list */
563         }
564         *last = NULL;
565         break;
566     }
567 }
568
569 /* add input files that look like import libs to the import list */
570 static void load_import_libs( char *argv[] )
571 {
572     char **ptr, **last;
573
574     for (ptr = last = argv; *ptr; ptr++)
575     {
576         if (strendswith( *ptr, ".def" ))
577             add_import_dll( NULL, *ptr );
578         else
579             *last++ = *ptr; /* not an import dll, keep it in the list */
580     }
581     *last = NULL;
582 }
583
584 static int parse_input_file( DLLSPEC *spec )
585 {
586     FILE *input_file = open_input_file( NULL, spec_file_name );
587     char *extension = strrchr( spec_file_name, '.' );
588     int result;
589
590     spec->src_name = xstrdup( input_file_name );
591     if (extension && !strcmp( extension, ".def" ))
592         result = parse_def_file( input_file, spec );
593     else
594         result = parse_spec_file( input_file, spec );
595     close_input_file( input_file );
596     return result;
597 }
598
599
600 /*******************************************************************
601  *         main
602  */
603 int main(int argc, char **argv)
604 {
605     DLLSPEC *spec = alloc_dll_spec();
606
607 #ifdef SIGHUP
608     signal( SIGHUP, exit_on_signal );
609 #endif
610     signal( SIGTERM, exit_on_signal );
611     signal( SIGINT, exit_on_signal );
612
613     output_file = stdout;
614     argv = parse_options( argc, argv, spec );
615
616     switch(exec_mode)
617     {
618     case MODE_DLL:
619         if (spec->subsystem != IMAGE_SUBSYSTEM_NATIVE)
620             spec->characteristics |= IMAGE_FILE_DLL;
621         if (!spec_file_name) fatal_error( "missing .spec file\n" );
622         /* fall through */
623     case MODE_EXE:
624         load_resources( argv, spec );
625         load_import_libs( argv );
626         if (spec_file_name && !parse_input_file( spec )) break;
627         if (fake_module)
628         {
629             if (spec->type == SPEC_WIN16) output_fake_module16( spec );
630             else output_fake_module( spec );
631             break;
632         }
633         read_undef_symbols( spec, argv );
634         switch (spec->type)
635         {
636             case SPEC_WIN16:
637                 output_spec16_file( spec );
638                 break;
639             case SPEC_WIN32:
640                 BuildSpec32File( spec );
641                 break;
642             default: assert(0);
643         }
644         break;
645     case MODE_DEF:
646         if (argv[0]) fatal_error( "file argument '%s' not allowed in this mode\n", argv[0] );
647         if (!spec_file_name) fatal_error( "missing .spec file\n" );
648         if (!parse_input_file( spec )) break;
649         output_def_file( spec, 1 );
650         break;
651     case MODE_IMPLIB:
652         if (!spec_file_name) fatal_error( "missing .spec file\n" );
653         if (!parse_input_file( spec )) break;
654         output_import_lib( spec, argv );
655         break;
656     case MODE_RESOURCES:
657         load_resources( argv, spec );
658         output_res_o_file( spec );
659         break;
660     default:
661         usage(1);
662         break;
663     }
664     if (nb_errors) exit(1);
665     if (output_file_name)
666     {
667         if (fclose( output_file ) < 0) fatal_perror( "fclose" );
668         if (output_file_source_name) assemble_file( output_file_source_name, output_file_name );
669         output_file_name = NULL;
670     }
671     return 0;
672 }