]> git.sur5r.net Git - cc65/blob - src/cc65/main.c
Memory model additions
[cc65] / src / cc65 / main.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  main.c                                   */
4 /*                                                                           */
5 /*                             cc65 main program                             */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2003 Ullrich von Bassewitz                                       */
10 /*               Römerstraße 52                                              */
11 /*               D-70794 Filderstadt                                         */
12 /* EMail:        uz@cc65.org                                                 */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #include <stdio.h>
37 #include <string.h>
38 #include <stdlib.h>
39 #include <errno.h>
40
41 /* common */
42 #include "abend.h"
43 #include "chartype.h"
44 #include "cmdline.h"
45 #include "cpu.h"
46 #include "debugflag.h"
47 #include "fname.h"
48 #include "mmodel.h"
49 #include "print.h"
50 #include "segnames.h"
51 #include "target.h"
52 #include "tgttrans.h"
53 #include "version.h"
54 #include "xmalloc.h"
55
56 /* cc65 */
57 #include "asmcode.h"
58 #include "compile.h"
59 #include "codeopt.h"
60 #include "error.h"
61 #include "global.h"
62 #include "incpath.h"
63 #include "input.h"
64 #include "macrotab.h"
65 #include "scanner.h"
66 #include "segments.h"
67
68
69
70 /*****************************************************************************/
71 /*                                   Code                                    */
72 /*****************************************************************************/
73
74
75
76 static void Usage (void)
77 /* Print usage information to stderr */
78 {
79     fprintf (stderr,
80              "Usage: %s [options] file\n"
81              "Short options:\n"
82              "  -A\t\t\tStrict ANSI mode\n"
83              "  -Cl\t\t\tMake local variables static\n"
84              "  -Dsym[=defn]\t\tDefine a symbol\n"
85              "  -I dir\t\tSet an include directory search path\n"
86              "  -O\t\t\tOptimize code\n"
87              "  -Oi\t\t\tOptimize code, inline more code\n"
88              "  -Or\t\t\tEnable register variables\n"
89              "  -Os\t\t\tInline some known functions\n"
90              "  -T\t\t\tInclude source as comment\n"
91              "  -V\t\t\tPrint the compiler version number\n"
92              "  -W\t\t\tSuppress warnings\n"
93              "  -d\t\t\tDebug mode\n"
94              "  -g\t\t\tAdd debug info to object file\n"
95              "  -h\t\t\tHelp (this text)\n"
96              "  -j\t\t\tDefault characters are signed\n"
97              "  -mm model\t\tSet the memory model\n"
98              "  -o name\t\tName the output file\n"
99              "  -r\t\t\tEnable register variables\n"
100              "  -t sys\t\tSet the target system\n"
101              "  -v\t\t\tIncrease verbosity\n"
102              "\n"
103              "Long options:\n"
104              "  --add-source\t\tInclude source as comment\n"
105              "  --ansi\t\tStrict ANSI mode\n"
106              "  --bss-name seg\tSet the name of the BSS segment\n"
107              "  --check-stack\t\tGenerate stack overflow checks\n"
108              "  --code-name seg\tSet the name of the CODE segment\n"
109              "  --codesize x\t\tAccept larger code by factor x\n"
110              "  --cpu type\t\tSet cpu type (6502, 65c02)\n"
111              "  --create-dep\t\tCreate a make dependency file\n"
112              "  --data-name seg\tSet the name of the DATA segment\n"
113              "  --debug\t\tDebug mode\n"
114              "  --debug-info\t\tAdd debug info to object file\n"
115              "  --debug-opt name\tDebug optimization steps\n"
116              "  --disable-opt name\tDisable an optimization step\n"
117              "  --enable-opt name\tEnable an optimization step\n"
118              "  --forget-inc-paths\tForget include search paths\n"
119              "  --help\t\tHelp (this text)\n"
120              "  --include-dir dir\tSet an include directory search path\n"
121              "  --list-opt-steps\tList all optimizer steps and exit\n"
122              "  --memory-model model\tSet the memory model\n"
123              "  --register-space b\tSet space available for register variables\n"
124              "  --register-vars\tEnable register variables\n"
125              "  --rodata-name seg\tSet the name of the RODATA segment\n"
126              "  --signed-chars\tDefault characters are signed\n"
127              "  --static-locals\tMake local variables static\n"
128              "  --target sys\t\tSet the target system\n"
129              "  --verbose\t\tIncrease verbosity\n"
130              "  --version\t\tPrint the compiler version number\n",
131              ProgName);
132 }
133
134
135
136 static void cbmsys (const char* sys)
137 /* Define a CBM system */
138 {
139     DefineNumericMacro ("__CBM__", 1);
140     DefineNumericMacro (sys, 1);
141 }
142
143
144
145 static void SetSys (const char* Sys)
146 /* Define a target system */
147 {
148     switch (Target = FindTarget (Sys)) {
149
150         case TGT_NONE:
151             break;
152
153         case TGT_MODULE:
154             AbEnd ("Cannot use `module' as a target for the compiler");
155             break;
156
157         case TGT_ATARI:
158             DefineNumericMacro ("__ATARI__", 1);
159             break;
160
161         case TGT_C16:
162             cbmsys ("__C16__");
163             break;
164
165         case TGT_C64:
166             cbmsys ("__C64__");
167             break;
168
169         case TGT_VIC20:
170             cbmsys ("__VIC20__");
171             break;
172
173         case TGT_C128:
174             cbmsys ("__C128__");
175             break;
176
177         case TGT_ACE:
178             cbmsys ("__ACE__");
179             break;
180
181         case TGT_PLUS4:
182             cbmsys ("__PLUS4__");
183             break;
184
185         case TGT_CBM510:
186             cbmsys ("__CBM510__");
187             break;
188
189         case TGT_CBM610:
190             cbmsys ("__CBM610__");
191             break;
192
193         case TGT_PET:
194             cbmsys ("__PET__");
195             break;
196
197         case TGT_BBC:
198             DefineNumericMacro ("__BBC__", 1);
199             break;
200
201         case TGT_APPLE2:
202             DefineNumericMacro ("__APPLE2__", 1);
203             break;
204
205         case TGT_GEOS:
206             /* Do not handle as a CBM system */
207             DefineNumericMacro ("__GEOS__", 1);
208             break;
209
210         case TGT_LUNIX:
211             DefineNumericMacro ("__LUNIX__", 1);
212             break;
213
214         case TGT_ATMOS:
215             DefineNumericMacro ("__ATMOS__", 1);
216             break;
217
218         case TGT_NES:
219             DefineNumericMacro ("__NES__", 1);
220             break;
221
222         case TGT_SUPERVISION:
223             DefineNumericMacro ("__SUPERVISION__", 1);
224             break;
225
226         default:
227             AbEnd ("Unknown target system type %d", Target);
228     }
229
230     /* Initialize the translation tables for the target system */
231     TgtTranslateInit ();
232 }
233
234
235
236 static void DoCreateDep (const char* OutputName)
237 /* Create the dependency file */
238 {
239     /* Make the dependency file name from the output file name */
240     char* DepName = MakeFilename (OutputName, ".u");
241
242     /* Open the file */
243     FILE* F = fopen (DepName, "w");
244     if (F == 0) {
245         Fatal ("Cannot open dependency file `%s': %s", DepName, strerror (errno));
246     }
247
248     /* Write the dependencies to the file */
249     WriteDependencies (F, OutputName);
250
251     /* Close the file, check for errors */
252     if (fclose (F) != 0) {
253         remove (DepName);
254         Fatal ("Cannot write to dependeny file (disk full?)");
255     }
256
257     /* Free the name */
258     xfree (DepName);
259 }
260
261
262
263 static void DefineSym (const char* Def)
264 /* Define a symbol on the command line */
265 {
266     const char* P = Def;
267
268     /* The symbol must start with a character or underline */
269     if (Def [0] != '_' && !IsAlpha (Def [0])) {
270         InvDef (Def);
271     }
272
273     /* Check the symbol name */
274     while (IsAlNum (*P) || *P == '_') {
275         ++P;
276     }
277
278     /* Do we have a value given? */
279     if (*P != '=') {
280         if (*P != '\0') {
281             InvDef (Def);
282         }
283         /* No value given. Define the macro with the value 1 */
284         DefineNumericMacro (Def, 1);
285     } else {
286         /* We have a value, P points to the '=' character. Since the argument
287          * is const, create a copy and replace the '=' in the copy by a zero
288          * terminator.
289          */
290         char* Q;
291         unsigned Len = strlen (Def)+1;
292         char* S = (char*) xmalloc (Len);
293         memcpy (S, Def, Len);
294         Q = S + (P - Def);
295         *Q++ = '\0';
296
297         /* Define this as a macro */
298         DefineTextMacro (S, Q);
299
300         /* Release the allocated memory */
301         xfree (S);
302     }
303 }
304
305
306
307 static void CheckSegName (const char* Seg)
308 /* Abort if the given name is not a valid segment name */
309 {
310     /* Print an error and abort if the name is not ok */
311     if (!ValidSegName (Seg)) {
312         AbEnd ("Segment name `%s' is invalid", Seg);
313     }
314 }
315
316
317
318 static void OptAddSource (const char* Opt attribute ((unused)),
319                           const char* Arg attribute ((unused)))
320 /* Add source lines as comments in generated assembler file */
321 {
322     AddSource = 1;
323 }
324
325
326
327 static void OptAnsi (const char* Opt attribute ((unused)),
328                      const char* Arg attribute ((unused)))
329 /* Compile in strict ANSI mode */
330 {
331     ANSI = 1;
332 }
333
334
335
336 static void OptBssName (const char* Opt attribute ((unused)), const char* Arg)
337 /* Handle the --bss-name option */
338 {
339     /* Check for a valid name */
340     CheckSegName (Arg);
341
342     /* Set the name */
343     NewSegName (SEG_BSS, Arg);
344 }
345
346
347
348 static void OptCheckStack (const char* Opt attribute ((unused)),
349                            const char* Arg attribute ((unused)))
350 /* Handle the --check-stack option */
351 {
352     CheckStack = 1;
353 }
354
355
356
357 static void OptCodeName (const char* Opt attribute ((unused)), const char* Arg)
358 /* Handle the --code-name option */
359 {
360     /* Check for a valid name */
361     CheckSegName (Arg);
362
363     /* Set the name */
364     NewSegName (SEG_CODE, Arg);
365 }
366
367
368
369 static void OptCodeSize (const char* Opt, const char* Arg)
370 /* Handle the --codesize option */
371 {
372     /* Numeric argument expected */
373     if (sscanf (Arg, "%u", &CodeSizeFactor) != 1 ||
374         CodeSizeFactor < 100 ||
375         CodeSizeFactor > 1000) {
376         AbEnd ("Argument for %s is invalid", Opt);
377     }
378 }
379
380
381
382 static void OptCreateDep (const char* Opt attribute ((unused)),
383                           const char* Arg attribute ((unused)))
384 /* Handle the --create-dep option */
385 {
386     CreateDep = 1;
387 }
388
389
390
391 static void OptCPU (const char* Opt, const char* Arg)
392 /* Handle the --cpu option */
393 {
394     /* Find the CPU from the given name */
395     CPU = FindCPU (Arg);
396     if (CPU != CPU_6502 && CPU != CPU_65C02) {
397         AbEnd ("Invalid argument for %s: `%s'", Opt, Arg);
398     }
399 }
400
401
402
403 static void OptDataName (const char* Opt attribute ((unused)), const char* Arg)
404 /* Handle the --data-name option */
405 {
406     /* Check for a valid name */
407     CheckSegName (Arg);
408
409     /* Set the name */
410     NewSegName (SEG_DATA, Arg);
411 }
412
413
414
415 static void OptDebug (const char* Opt attribute ((unused)),
416                       const char* Arg attribute ((unused)))
417 /* Compiler debug mode */
418 {
419     ++Debug;
420 }
421
422
423
424 static void OptDebugInfo (const char* Opt attribute ((unused)),
425                           const char* Arg attribute ((unused)))
426 /* Add debug info to the object file */
427 {
428     DebugInfo = 1;
429 }
430
431
432
433 static void OptDebugOpt (const char* Opt attribute ((unused)), const char* Arg)
434 /* Debug optimization steps */
435 {
436     char Buf [128];
437     char* Line;
438
439     /* Open the file */
440     FILE* F = fopen (Arg, "r");
441     if (F == 0) {
442         AbEnd ("Cannot open `%s': %s", Arg, strerror (errno));
443     }
444
445     /* Read line by line, ignore empty lines and switch optimization
446      * steps on/off.
447      */
448     while (fgets (Buf, sizeof (Buf), F) != 0) {
449
450         /* Remove trailing control chars. This will also remove the
451          * trailing newline.
452          */
453         unsigned Len = strlen (Buf);
454         while (Len > 0 && IsControl (Buf[Len-1])) {
455             --Len;
456         }
457         Buf[Len] = '\0';
458
459         /* Get a pointer to the buffer and remove leading white space */
460         Line = Buf;
461         while (IsBlank (*Line)) {
462             ++Line;
463         }
464
465         /* Check the first character and enable/disable the step or
466          * ignore the line
467          */
468         switch (*Line) {
469
470             case '\0':
471             case '#':
472             case ';':
473                 /* Empty or comment line */
474                 continue;
475
476             case '-':
477                 DisableOpt (Line+1);
478                 break;
479
480             case '+':
481                 ++Line;
482                 /* FALLTHROUGH */
483
484             default:
485                 EnableOpt (Line);
486                 break;
487
488         }
489
490     }
491
492     /* Close the file, no error check here since we were just reading and
493      * this is only a debug function.
494      */
495     (void) fclose (F);
496 }
497
498
499
500 static void OptDisableOpt (const char* Opt attribute ((unused)), const char* Arg)
501 /* Disable an optimization step */
502 {
503     DisableOpt (Arg);
504 }
505
506
507
508 static void OptEnableOpt (const char* Opt attribute ((unused)), const char* Arg)
509 /* Enable an optimization step */
510 {
511     EnableOpt (Arg);
512 }
513
514
515
516 static void OptForgetIncPaths (const char* Opt attribute ((unused)),
517                                const char* Arg attribute ((unused)))
518 /* Forget all currently defined include paths */
519 {
520     ForgetAllIncludePaths ();
521 }
522
523
524
525 static void OptHelp (const char* Opt attribute ((unused)),
526                      const char* Arg attribute ((unused)))
527 /* Print usage information and exit */
528 {
529     Usage ();
530     exit (EXIT_SUCCESS);
531 }
532
533
534
535 static void OptIncludeDir (const char* Opt attribute ((unused)), const char* Arg)
536 /* Add an include search path */
537 {
538     AddIncludePath (Arg, INC_SYS | INC_USER);
539 }
540
541
542
543 static void OptListOptSteps (const char* Opt attribute ((unused)),
544                              const char* Arg attribute ((unused)))
545 /* List all optimizer steps */
546 {
547     /* List the optimizer steps */
548     ListOptSteps (stdout);
549
550     /* Terminate */
551     exit (EXIT_SUCCESS);
552 }
553
554
555
556 static void OptMemoryModel (const char* Opt, const char* Arg)
557 /* Set the memory model */
558 {
559     mmodel_t M;
560
561     /* Check the current memory model */
562     if (MemoryModel != MMODEL_UNKNOWN) {
563         AbEnd ("Cannot use option `%s' twice", Opt);
564     }
565
566     /* Translate the memory model name and check it */
567     M = FindMemoryModel (Arg);
568     if (M == MMODEL_UNKNOWN) {
569         AbEnd ("Unknown memory model: %s", Arg);
570     } else if (M == MMODEL_HUGE) {
571         AbEnd ("Unsupported memory model: %s", Arg);
572     }
573
574     /* Set the memory model */
575     SetMemoryModel (M);
576 }
577
578
579
580 static void OptRegisterSpace (const char* Opt, const char* Arg)
581 /* Handle the --register-space option */
582 {
583     /* Numeric argument expected */
584     if (sscanf (Arg, "%u", &RegisterSpace) != 1 || RegisterSpace > 256) {
585         AbEnd ("Argument for option %s is invalid", Opt);
586     }
587 }
588
589
590
591 static void OptRegisterVars (const char* Opt attribute ((unused)),
592                              const char* Arg attribute ((unused)))
593 /* Handle the --register-vars option */
594 {
595     EnableRegVars = 1;
596 }
597
598
599
600 static void OptRodataName (const char* Opt attribute ((unused)), const char* Arg)
601 /* Handle the --rodata-name option */
602 {
603     /* Check for a valid name */
604     CheckSegName (Arg);
605
606     /* Set the name */
607     NewSegName (SEG_RODATA, Arg);
608 }
609
610
611
612 static void OptSignedChars (const char* Opt attribute ((unused)),
613                             const char* Arg attribute ((unused)))
614 /* Make default characters signed */
615 {
616     SignedChars = 1;
617 }
618
619
620
621 static void OptStaticLocals (const char* Opt attribute ((unused)),
622                              const char* Arg attribute ((unused)))
623 /* Place local variables in static storage */
624 {
625     StaticLocals = 1;
626 }
627
628
629
630 static void OptTarget (const char* Opt attribute ((unused)), const char* Arg)
631 /* Set the target system */
632 {
633     SetSys (Arg);
634 }
635
636
637
638 static void OptVerbose (const char* Opt attribute ((unused)),
639                         const char* Arg attribute ((unused)))
640 /* Increase verbosity */
641 {
642     ++Verbosity;
643 }
644
645
646
647 static void OptVersion (const char* Opt attribute ((unused)),
648                         const char* Arg attribute ((unused)))
649 /* Print the assembler version */
650 {
651     fprintf (stderr,
652              "cc65 V%u.%u.%u\n",
653              VER_MAJOR, VER_MINOR, VER_PATCH);
654 }
655
656
657
658 int main (int argc, char* argv[])
659 {
660     /* Program long options */
661     static const LongOpt OptTab[] = {
662         { "--add-source",       0,      OptAddSource            },
663         { "--ansi",             0,      OptAnsi                 },
664         { "--bss-name",         1,      OptBssName              },
665         { "--check-stack",      0,      OptCheckStack           },
666         { "--code-name",        1,      OptCodeName             },
667         { "--codesize",         1,      OptCodeSize             },
668         { "--cpu",              1,      OptCPU                  },
669         { "--create-dep",       0,      OptCreateDep            },
670         { "--data-name",        1,      OptDataName             },
671         { "--debug",            0,      OptDebug                },
672         { "--debug-info",       0,      OptDebugInfo            },
673         { "--debug-opt",        1,      OptDebugOpt             },
674         { "--disable-opt",      1,      OptDisableOpt           },
675         { "--enable-opt",       1,      OptEnableOpt            },
676         { "--forget-inc-paths", 0,      OptForgetIncPaths       },
677         { "--help",             0,      OptHelp                 },
678         { "--include-dir",      1,      OptIncludeDir           },
679         { "--list-opt-steps",   0,      OptListOptSteps         },
680         { "--memory-model",     1,      OptMemoryModel          },
681         { "--register-space",   1,      OptRegisterSpace        },
682         { "--register-vars",    0,      OptRegisterVars         },
683         { "--rodata-name",      1,      OptRodataName           },
684         { "--signed-chars",     0,      OptSignedChars          },
685         { "--static-locals",    0,      OptStaticLocals         },
686         { "--target",           1,      OptTarget               },
687         { "--verbose",          0,      OptVerbose              },
688         { "--version",          0,      OptVersion              },
689     };
690
691     unsigned I;
692
693     /* Initialize the output file name */
694     const char* OutputFile = 0;
695     const char* InputFile  = 0;
696
697     /* Initialize the cmdline module */
698     InitCmdLine (&argc, &argv, "cc65");
699
700     /* Initialize the default segment names */
701     InitSegNames ();
702
703     /* Initialize the include search paths */
704     InitIncludePaths ();
705
706     /* Parse the command line */
707     I = 1;
708     while (I < ArgCount) {
709
710         const char* P;
711
712         /* Get the argument */
713         const char* Arg = ArgVec[I];
714
715         /* Check for an option */
716         if (Arg [0] == '-') {
717
718             switch (Arg [1]) {
719
720                 case '-':
721                     LongOption (&I, OptTab, sizeof(OptTab)/sizeof(OptTab[0]));
722                     break;
723
724                 case 'd':
725                     OptDebug (Arg, 0);
726                     break;
727
728                 case 'h':
729                 case '?':
730                     OptHelp (Arg, 0);
731                     break;
732
733                 case 'g':
734                     OptDebugInfo (Arg, 0);
735                     break;
736
737                 case 'j':
738                     OptSignedChars (Arg, 0);
739                     break;
740
741                 case 'o':
742                     OutputFile = GetArg (&I, 2);
743                     break;
744
745                 case 'r':
746                     OptRegisterVars (Arg, 0);
747                     break;
748
749                 case 't':
750                     OptTarget (Arg, GetArg (&I, 2));
751                     break;
752
753                 case 'u':
754                     OptCreateDep (Arg, 0);
755                     break;
756
757                 case 'v':
758                     OptVerbose (Arg, 0);
759                     break;
760
761                 case 'A':
762                     OptAnsi (Arg, 0);
763                     break;
764
765                 case 'C':
766                     P = Arg + 2;
767                     while (*P) {
768                         switch (*P++) {
769                             case 'l':
770                                 OptStaticLocals (Arg, 0);
771                                 break;
772                             default:
773                                 UnknownOption (Arg);
774                                 break;
775                         }
776                     }
777                     break;
778
779                 case 'D':
780                     DefineSym (GetArg (&I, 2));
781                     break;
782
783                 case 'I':
784                     OptIncludeDir (Arg, GetArg (&I, 2));
785                     break;
786
787                 case 'O':
788                     Optimize = 1;
789                     P = Arg + 2;
790                     while (*P) {
791                         switch (*P++) {
792                             case 'f':
793                                 sscanf (P, "%lx", (long*) &OptDisable);
794                                 break;
795                             case 'i':
796                                 FavourSize = 0;
797                                 CodeSizeFactor = 200;
798                                 break;
799                             case 'r':
800                                 EnableRegVars = 1;
801                                 break;
802                             case 's':
803                                 InlineStdFuncs = 1;
804                                 break;
805                         }
806                     }
807                     break;
808
809                 case 'T':
810                     OptAddSource (Arg, 0);
811                     break;
812
813                 case 'V':
814                     OptVersion (Arg, 0);
815                     break;
816
817                 case 'W':
818                     NoWarn = 1;
819                     break;
820
821                 default:
822                     UnknownOption (Arg);
823                     break;
824             }
825         } else {
826             if (InputFile) {
827                 fprintf (stderr, "additional file specs ignored\n");
828             } else {
829                 InputFile = Arg;
830             }
831         }
832
833         /* Next argument */
834         ++I;
835     }
836
837     /* Did we have a file spec on the command line? */
838     if (InputFile == 0) {
839         AbEnd ("No input files");
840     }
841
842     /* Create the output file name if it was not explicitly given */
843     if (OutputFile == 0) {
844         OutputFile = MakeFilename (InputFile, ".s");
845     }
846
847     /* If no CPU given, use the default CPU for the target */
848     if (CPU == CPU_UNKNOWN) {
849         if (Target != TGT_UNKNOWN) {
850             CPU = DefaultCPU[Target];
851         } else {
852             CPU = CPU_6502;
853         }
854     }
855
856     /* Go! */
857     Compile (InputFile);
858
859     /* Create the output file if we didn't had any errors */
860     if (ErrorCount == 0 || Debug) {
861
862         /* Open the file */
863         FILE* F = fopen (OutputFile, "w");
864         if (F == 0) {
865             Fatal ("Cannot open output file `%s': %s", OutputFile, strerror (errno));
866         }
867
868         /* Write the output to the file */
869         WriteOutput (F);
870
871         /* Close the file, check for errors */
872         if (fclose (F) != 0) {
873             remove (OutputFile);
874             Fatal ("Cannot write to output file (disk full?)");
875         }
876
877         /* Create dependencies if requested */
878         if (CreateDep) {
879             DoCreateDep (OutputFile);
880         }
881
882     }
883
884     /* Return an apropriate exit code */
885     return (ErrorCount > 0)? EXIT_FAILURE : EXIT_SUCCESS;
886 }
887
888
889