]> git.sur5r.net Git - cc65/blob - src/cl65/main.c
New --memory-model option
[cc65] / src / cl65 / main.c
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  main.c                                   */
4 /*                                                                           */
5 /*             Main module for the cl65 compile and link utility             */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1999-2003 Ullrich von Bassewitz                                       */
10 /*               Römerstrasse 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 /* Check out if we have a spawn() function on the system, or if we must use
37  * our own.
38  */
39 #if defined(__WATCOMC__) || defined(_MSC_VER) || defined(__MINGW32__) || defined(__DJGPP__)
40 #  define HAVE_SPAWN    1
41 #else
42 #  define NEED_SPAWN   1
43 #endif
44
45
46
47 #include <stdio.h>
48 #include <stdlib.h>
49 #include <string.h>
50 #include <ctype.h>
51 #include <errno.h>
52 #ifdef HAVE_SPAWN
53 #  include <process.h>
54 #endif
55
56 /* common */
57 #include "attrib.h"
58 #include "cmdline.h"
59 #include "filetype.h"
60 #include "fname.h"
61 #include "mmodel.h"
62 #include "strbuf.h"
63 #include "target.h"
64 #include "version.h"
65 #include "xmalloc.h"
66
67 /* cl65 */
68 #include "global.h"
69 #include "error.h"
70
71
72
73 /*****************************************************************************/
74 /*                                   Data                                    */
75 /*****************************************************************************/
76
77
78
79 /* Struct that describes a command */
80 typedef struct CmdDesc CmdDesc;
81 struct CmdDesc {
82     char*       Name;           /* The command name */
83
84     unsigned    ArgCount;       /* Count of arguments */
85     unsigned    ArgMax;         /* Maximum count of arguments */
86     char**      Args;           /* The arguments */
87
88     unsigned    FileCount;      /* Count of files to translate */
89     unsigned    FileMax;        /* Maximum count of files */
90     char**      Files;          /* The files */
91 };
92
93 /* Command descriptors for the different programs */
94 static CmdDesc CC65 = { 0, 0, 0, 0, 0, 0, 0 };
95 static CmdDesc CA65 = { 0, 0, 0, 0, 0, 0, 0 };
96 static CmdDesc CO65 = { 0, 0, 0, 0, 0, 0, 0 };
97 static CmdDesc LD65 = { 0, 0, 0, 0, 0, 0, 0 };
98 static CmdDesc GRC  = { 0, 0, 0, 0, 0, 0, 0 };
99
100 /* Variables controlling the steps we're doing */
101 static int DontLink     = 0;
102 static int DontAssemble = 0;
103
104 /* The name of the output file, NULL if none given */
105 static const char* OutputName = 0;
106
107 /* The name of the linker configuration file if given */
108 static const char* LinkerConfig = 0;
109
110 /* The name of the first input file. This will be used to construct the
111  * executable file name if no explicit name is given.
112  */
113 static const char* FirstInput = 0;
114
115 /* Remember if we should link a module */
116 static int Module = 0;
117
118 /* Extension used for a module */
119 #define MODULE_EXT      ".o65"
120
121 /* Name of the crt0 object file and the runtime library */
122 static char* TargetCRT0 = 0;
123 static char* TargetLib  = 0;
124
125
126
127 /*****************************************************************************/
128 /*                Include the system specific spawn function                 */
129 /*****************************************************************************/
130
131
132
133 #if defined(NEED_SPAWN)
134 #  if defined(SPAWN_UNIX)
135 #    include "spawn-unix.inc"
136 #  elif defined(SPAWN_AMIGA)
137 #    include "spawn-amiga.inc"
138 #  else
139 #    error "Don't know which spawn module to include!"
140 #  endif
141 #endif
142
143
144
145 /*****************************************************************************/
146 /*                        Command structure handling                         */
147 /*****************************************************************************/
148
149
150
151 static void CmdAddArg (CmdDesc* Cmd, const char* Arg)
152 /* Add a new argument to the command */
153 {
154     /* Expand the argument vector if needed */
155     if (Cmd->ArgCount == Cmd->ArgMax) {
156         unsigned NewMax  = Cmd->ArgMax + 10;
157         char**   NewArgs = xmalloc (NewMax * sizeof (char*));
158         memcpy (NewArgs, Cmd->Args, Cmd->ArgMax * sizeof (char*));
159         xfree (Cmd->Args);
160         Cmd->Args   = NewArgs;
161         Cmd->ArgMax = NewMax;
162     }
163
164     /* Add a copy of the new argument, allow a NULL pointer */
165     if (Arg) {
166         Cmd->Args [Cmd->ArgCount++] = xstrdup (Arg);
167     } else {
168         Cmd->Args [Cmd->ArgCount++] = 0;
169     }
170 }
171
172
173
174 static void CmdAddArg2 (CmdDesc* Cmd, const char* Arg1, const char* Arg2)
175 /* Add a new argument pair to the command */
176 {
177     CmdAddArg (Cmd, Arg1);
178     CmdAddArg (Cmd, Arg2);
179 }
180
181
182
183 static void CmdDelArgs (CmdDesc* Cmd, unsigned LastValid)
184 /* Remove all arguments with an index greater than LastValid */
185 {
186     while (Cmd->ArgCount > LastValid) {
187         Cmd->ArgCount--;
188         xfree (Cmd->Args [Cmd->ArgCount]);
189         Cmd->Args [Cmd->ArgCount] = 0;
190     }
191 }
192
193
194
195 static void CmdAddFile (CmdDesc* Cmd, const char* File)
196 /* Add a new file to the command */
197 {
198     /* Expand the file vector if needed */
199     if (Cmd->FileCount == Cmd->FileMax) {
200         unsigned NewMax   = Cmd->FileMax + 10;
201         char**   NewFiles = xmalloc (NewMax * sizeof (char*));
202         memcpy (NewFiles, Cmd->Files, Cmd->FileMax * sizeof (char*));
203         xfree (Cmd->Files);
204         Cmd->Files   = NewFiles;
205         Cmd->FileMax = NewMax;
206     }
207
208     /* If the file name is not NULL (which is legal and is used to terminate
209      * the file list), check if the file name does already exist in the file
210      * list and print a warning if so. Regardless of the search result, add
211      * the file.
212      */
213     if (File) {
214         unsigned I;
215         for (I = 0; I < Cmd->FileCount; ++I) {
216             if (strcmp (Cmd->Files[I], File) == 0) {
217                 /* Duplicate file */
218                 Warning ("Duplicate file in argument list: `%s'", File);
219                 /* No need to search further */
220                 break;
221             }
222         }
223
224         /* Add the file */
225         Cmd->Files [Cmd->FileCount++] = xstrdup (File);
226     } else {
227         /* Add a NULL pointer */
228         Cmd->Files [Cmd->FileCount++] = 0;
229     }
230 }
231
232
233
234 static void CmdInit (CmdDesc* Cmd, const char* Path)
235 /* Initialize the command using the given path to the executable */
236 {
237     /* Remember the command */
238     Cmd->Name = xstrdup (Path);
239
240     /* Use the command name as first argument */
241     CmdAddArg (Cmd, Path);
242 }
243
244
245
246 static void CmdSetOutput (CmdDesc* Cmd, const char* File)
247 /* Set the output file in a command desc */
248 {
249     CmdAddArg2 (Cmd, "-o", File);
250 }
251
252
253
254 static void CmdSetTarget (CmdDesc* Cmd, target_t Target)
255 /* Set the output file in a command desc */
256 {
257     CmdAddArg2 (Cmd, "-t", TargetNames[Target]);
258 }
259
260
261
262 static void CmdPrint (CmdDesc* Cmd, FILE* F)
263 /* Output the command line encoded in the command desc */
264 {
265     unsigned I;
266     for (I = 0; I < Cmd->ArgCount && Cmd->Args[I] != 0; ++I) {
267         fprintf (F, "%s ", Cmd->Args[I]);
268     }
269 }
270
271
272
273 /*****************************************************************************/
274 /*                              Target handling                              */
275 /*****************************************************************************/
276
277
278
279 static void SetTargetFiles (void)
280 /* Set the target system files */
281 {
282     /* Determine the names of the default startup and library file */
283     if (Target != TGT_NONE) {
284
285         /* Get a pointer to the system name and its length */
286         const char* TargetName = TargetNames [Target];
287         unsigned    TargetNameLen = strlen (TargetName);
288
289         /* Set the startup file */
290         TargetCRT0 = xmalloc (TargetNameLen + 2 + 1);
291         strcpy (TargetCRT0, TargetName);
292         strcat (TargetCRT0, ".o");
293
294         /* Set the library file */
295         TargetLib = xmalloc (TargetNameLen + 4 + 1);
296         strcpy (TargetLib, TargetName);
297         strcat (TargetLib, ".lib");
298
299     }
300 }
301
302
303
304 /*****************************************************************************/
305 /*                               Subprocesses                                */
306 /*****************************************************************************/
307
308
309
310 static void ExecProgram (CmdDesc* Cmd)
311 /* Execute a subprocess with the given name/parameters. Exit on errors. */
312 {
313     int Status;
314
315     /* If in debug mode, output the command line we will execute */
316     if (Debug) {
317         printf ("Executing: ");
318         CmdPrint (Cmd, stdout);
319         printf ("\n");
320     }
321
322     /* Call the program */
323     Status = spawnvp (P_WAIT, Cmd->Name, Cmd->Args);
324
325     /* Check the result code */
326     if (Status < 0) {
327         /* Error executing the program */
328         Error ("Cannot execute `%s': %s", Cmd->Name, strerror (errno));
329     } else if (Status != 0) {
330         /* Called program had an error */
331         exit (Status);
332     }
333 }
334
335
336
337 static void Link (void)
338 /* Link the resulting executable */
339 {
340     unsigned I;
341
342     /* If we have a linker config file given, add it to the command line.
343      * Otherwise pass the target to the linker if we have one.
344      */
345     if (LinkerConfig) {
346         if (Module) {
347             Error ("Cannot use -C and --module together");
348         }
349         CmdAddArg2 (&LD65, "-C", LinkerConfig);
350     } else if (Module) {
351         CmdSetTarget (&LD65, TGT_MODULE);
352     } else if (Target != TGT_NONE) {
353         CmdSetTarget (&LD65, Target);
354     }
355
356     /* Determine which target libraries are needed */
357     SetTargetFiles ();
358
359     /* Since linking is always the final step, if we have an output file name
360      * given, set it here. If we don't have an explicit output name given,
361      * try to build one from the name of the first input file.
362      */
363     if (OutputName) {
364
365         CmdSetOutput (&LD65, OutputName);
366
367     } else if (FirstInput && FindExt (FirstInput)) {  /* Only if ext present! */
368
369         const char* Extension = Module? MODULE_EXT : "";
370         char* Output = MakeFilename (FirstInput, Extension);
371         CmdSetOutput (&LD65, Output);
372         xfree (Output);
373
374     }
375
376     /* If we have a startup file and if we are not linking a module, add its
377      * name as a parameter
378      */
379     if (TargetCRT0 && !Module) {
380         CmdAddArg (&LD65, TargetCRT0);
381     }
382
383     /* Add all object files as parameters */
384     for (I = 0; I < LD65.FileCount; ++I) {
385         CmdAddArg (&LD65, LD65.Files [I]);
386     }
387
388     /* Add the system runtime library */
389     if (TargetLib) {
390         CmdAddArg (&LD65, TargetLib);
391     }
392
393     /* Terminate the argument list with a NULL pointer */
394     CmdAddArg (&LD65, 0);
395
396     /* Call the linker */
397     ExecProgram (&LD65);
398 }
399
400
401
402 static void Assemble (const char* File)
403 /* Assemble the given file */
404 {
405     /* Remember the current assembler argument count */
406     unsigned ArgCount = CA65.ArgCount;
407
408     /* Set the target system */
409     CmdSetTarget (&CA65, Target);
410
411     /* If we won't link, this is the final step. In this case, set the
412      * output name.
413      */
414     if (DontLink && OutputName) {
415         CmdSetOutput (&CA65, OutputName);
416     } else {
417         /* The object file name will be the name of the source file
418          * with .s replaced by ".o". Add this file to the list of
419          * linker files.
420          */
421         char* ObjName = MakeFilename (File, ".o");
422         CmdAddFile (&LD65, ObjName);
423         xfree (ObjName);
424     }
425
426     /* Add the file as argument for the assembler */
427     CmdAddArg (&CA65, File);
428
429     /* Add a NULL pointer to terminate the argument list */
430     CmdAddArg (&CA65, 0);
431
432     /* Run the assembler */
433     ExecProgram (&CA65);
434
435     /* Remove the excess arguments */
436     CmdDelArgs (&CA65, ArgCount);
437 }
438
439
440
441 static void Compile (const char* File)
442 /* Compile the given file */
443 {
444     char* AsmName = 0;
445
446     /* Remember the current compiler argument count */
447     unsigned ArgCount = CC65.ArgCount;
448
449     /* Set the target system */
450     CmdSetTarget (&CC65, Target);
451
452     /* If we won't link, this is the final step. In this case, set the
453      * output name.
454      */
455     if (DontAssemble && OutputName) {
456         CmdSetOutput (&CC65, OutputName);
457     } else {
458         /* The assembler file name will be the name of the source file
459          * with .c replaced by ".s".
460          */
461         AsmName = MakeFilename (File, ".s");
462     }
463
464     /* Add the file as argument for the compiler */
465     CmdAddArg (&CC65, File);
466
467     /* Add a NULL pointer to terminate the argument list */
468     CmdAddArg (&CC65, 0);
469
470     /* Run the compiler */
471     ExecProgram (&CC65);
472
473     /* Remove the excess arguments */
474     CmdDelArgs (&CC65, ArgCount);
475
476     /* If this is not the final step, assemble the generated file, then
477      * remove it
478      */
479     if (!DontAssemble) {
480         Assemble (AsmName);
481         if (remove (AsmName) < 0) {
482             Warning ("Cannot remove temporary file `%s': %s",
483                      AsmName, strerror (errno));
484         }
485         xfree (AsmName);
486     }
487 }
488
489
490
491 static void CompileRes (const char* File)
492 /* Compile the given geos resource file */
493 {
494     char* AsmName = 0;
495
496     /* Remember the current assembler argument count */
497     unsigned ArgCount = GRC.ArgCount;
498
499     /* The assembler file name will be the name of the source file
500      * with .grc replaced by ".s".
501      */
502     AsmName = MakeFilename (File, ".s");
503
504     /* Add the file as argument for the resource compiler */
505     CmdAddArg (&GRC, File);
506
507     /* Add a NULL pointer to terminate the argument list */
508     CmdAddArg (&GRC, 0);
509
510     /* Run the compiler */
511     ExecProgram (&GRC);
512
513     /* Remove the excess arguments */
514     CmdDelArgs (&GRC, ArgCount);
515
516     /* If this is not the final step, assemble the generated file, then
517      * remove it
518      */
519     if (!DontAssemble) {
520         Assemble (AsmName);
521         if (remove (AsmName) < 0) {
522             Warning ("Cannot remove temporary file `%s': %s",
523                      AsmName, strerror (errno));
524         }
525     }
526
527     /* Free the assembler file name which was allocated from the heap */
528     xfree (AsmName);
529 }
530
531
532
533 static void ConvertO65 (const char* File)
534 /* Convert an o65 object file into an assembler file */
535 {
536     char* AsmName = 0;
537
538     /* Remember the current converter argument count */
539     unsigned ArgCount = CO65.ArgCount;
540
541     /* If we won't link, this is the final step. In this case, set the
542      * output name.
543      */
544     if (DontAssemble && OutputName) {
545         CmdSetOutput (&CO65, OutputName);
546     } else {
547         /* The assembler file name will be the name of the source file
548          * with .c replaced by ".s".
549          */
550         AsmName = MakeFilename (File, ".s");
551     }
552
553     /* Add the file as argument for the object file converter */
554     CmdAddArg (&CO65, File);
555
556     /* Add a NULL pointer to terminate the argument list */
557     CmdAddArg (&CO65, 0);
558
559     /* Run the converter */
560     ExecProgram (&CO65);
561
562     /* Remove the excess arguments */
563     CmdDelArgs (&CO65, ArgCount);
564
565     /* If this is not the final step, assemble the generated file, then
566      * remove it
567      */
568     if (!DontAssemble) {
569         Assemble (AsmName);
570         if (remove (AsmName) < 0) {
571             Warning ("Cannot remove temporary file `%s': %s",
572                      AsmName, strerror (errno));
573         }
574     }
575
576     /* Free the assembler file name which was allocated from the heap */
577     xfree (AsmName);
578 }
579
580
581
582 /*****************************************************************************/
583 /*                                   Code                                    */
584 /*****************************************************************************/
585
586
587
588 static void Usage (void)
589 /* Print usage information and exit */
590 {
591     fprintf (stderr,
592              "Usage: %s [options] file [...]\n"
593              "Short options:\n"
594              "  -c\t\t\tCompile and assemble but don't link\n"
595              "  -d\t\t\tDebug mode\n"
596              "  -g\t\t\tAdd debug info\n"
597              "  -h\t\t\tHelp (this text)\n"
598              "  -l\t\t\tCreate an assembler listing\n"
599              "  -m name\t\tCreate a map file\n"
600              "  -mm model\t\tSet the memory model\n"
601              "  -o name\t\tName the output file\n"
602              "  -r\t\t\tEnable register variables\n"
603              "  -t sys\t\tSet the target system\n"
604              "  -v\t\t\tVerbose mode\n"
605              "  -vm\t\t\tVerbose map file\n"
606              "  -A\t\t\tStrict ANSI mode\n"
607              "  -C name\t\tUse linker config file\n"
608              "  -Cl\t\t\tMake local variables static\n"
609              "  -D sym[=defn]\t\tDefine a preprocessor symbol\n"
610              "  -I dir\t\tSet a compiler include directory path\n"
611              "  -L path\t\tSpecify a library search path\n"
612              "  -Ln name\t\tCreate a VICE label file\n"
613              "  -O\t\t\tOptimize code\n"
614              "  -Oi\t\t\tOptimize code, inline functions\n"
615              "  -Or\t\t\tOptimize code, honour the register keyword\n"
616              "  -Os\t\t\tOptimize code, inline known C funtions\n"
617              "  -S\t\t\tCompile but don't assemble and link\n"
618              "  -T\t\t\tInclude source as comment\n"
619              "  -V\t\t\tPrint the version number\n"
620              "  -W\t\t\tSuppress warnings\n"
621              "\n"
622              "Long options:\n"
623              "  --add-source\t\tInclude source as comment\n"
624              "  --ansi\t\tStrict ANSI mode\n"
625              "  --asm-define sym[=v]\tDefine an assembler symbol\n"
626              "  --asm-include-dir dir\tSet an assembler include directory\n"
627              "  --bss-label name\tDefine and export a BSS segment label\n"
628              "  --bss-name seg\tSet the name of the BSS segment\n"
629              "  --cfg-path path\tSpecify a config file search path\n"
630              "  --check-stack\t\tGenerate stack overflow checks\n"
631              "  --code-label name\tDefine and export a CODE segment label\n"
632              "  --code-name seg\tSet the name of the CODE segment\n"
633              "  --codesize x\t\tAccept larger code by factor x\n"
634              "  --config name\t\tUse linker config file\n"
635              "  --cpu type\t\tSet cpu type\n"
636              "  --create-dep\t\tCreate a make dependency file\n"
637              "  --data-label name\tDefine and export a DATA segment label\n"
638              "  --data-name seg\tSet the name of the DATA segment\n"
639              "  --debug\t\tDebug mode\n"
640              "  --debug-info\t\tAdd debug info\n"
641              "  --feature name\tSet an emulation feature\n"
642              "  --forget-inc-paths\tForget include search paths (compiler)\n"
643              "  --help\t\tHelp (this text)\n"
644              "  --include-dir dir\tSet a compiler include directory path\n"
645              "  --lib file\t\tLink this library\n"
646              "  --lib-path path\tSpecify a library search path\n"
647              "  --listing\t\tCreate an assembler listing\n"
648              "  --mapfile name\tCreate a map file\n"
649              "  --memory-model model\tSet the memory model\n"
650              "  --module\t\tLink as a module\n"
651              "  --module-id id\tSpecify a module id for the linker\n"
652              "  --o65-model model\tOverride the o65 model\n"
653              "  --obj file\t\tLink this object file\n"
654              "  --obj-path path\tSpecify an object file search path\n"
655              "  --register-space b\tSet space available for register variables\n"
656              "  --register-vars\tEnable register variables\n"
657              "  --rodata-name seg\tSet the name of the RODATA segment\n"
658              "  --signed-chars\tDefault characters are signed\n"
659              "  --start-addr addr\tSet the default start address\n"
660              "  --static-locals\tMake local variables static\n"
661              "  --target sys\t\tSet the target system\n"
662              "  --version\t\tPrint the version number\n"
663              "  --verbose\t\tVerbose mode\n"
664              "  --zeropage-label name\tDefine and export a ZEROPAGE segment label\n"
665              "  --zeropage-name seg\tSet the name of the ZEROPAGE segment\n",
666              ProgName);
667 }
668
669
670
671 static void OptAddSource (const char* Opt attribute ((unused)),
672                           const char* Arg attribute ((unused)))
673 /* Strict source code as comments to the generated asm code */
674 {
675     CmdAddArg (&CC65, "-T");
676 }
677
678
679
680 static void OptAnsi (const char* Opt attribute ((unused)),
681                      const char* Arg attribute ((unused)))
682 /* Strict ANSI mode (compiler) */
683 {
684     CmdAddArg (&CC65, "-A");
685 }
686
687
688
689 static void OptAsmDefine (const char* Opt attribute ((unused)), const char* Arg)
690 /* Define an assembler symbol (assembler) */
691 {
692     CmdAddArg2 (&CA65, "-D", Arg);
693 }
694
695
696
697 static void OptAsmIncludeDir (const char* Opt attribute ((unused)), const char* Arg)
698 /* Include directory (assembler) */
699 {
700     CmdAddArg2 (&CA65, "-I", Arg);
701 }
702
703
704
705 static void OptBssLabel (const char* Opt attribute ((unused)), const char* Arg)
706 /* Handle the --bss-label option */
707 {
708     CmdAddArg2 (&CO65, "--bss-label", Arg);
709 }
710
711
712
713 static void OptBssName (const char* Opt attribute ((unused)), const char* Arg)
714 /* Handle the --bss-name option */
715 {
716     CmdAddArg2 (&CC65, "--bss-name", Arg);
717     CmdAddArg2 (&CO65, "--bss-name", Arg);
718 }
719
720
721
722 static void OptCfgPath (const char* Opt attribute ((unused)), const char* Arg)
723 /* Config file search path (linker) */
724 {
725     CmdAddArg2 (&LD65, "--cfg-path", Arg);
726 }
727
728
729
730 static void OptCheckStack (const char* Opt attribute ((unused)),
731                            const char* Arg attribute ((unused)))
732 /* Handle the --check-stack option */
733 {
734     CmdAddArg (&CC65, "--check-stack");
735 }
736
737
738
739 static void OptCodeLabel (const char* Opt attribute ((unused)), const char* Arg)
740 /* Handle the --code-label option */
741 {
742     CmdAddArg2 (&CO65, "--code-label", Arg);
743 }
744
745
746
747 static void OptCodeName (const char* Opt attribute ((unused)), const char* Arg)
748 /* Handle the --code-name option */
749 {
750     CmdAddArg2 (&CC65, "--code-name", Arg);
751     CmdAddArg2 (&CO65, "--code-name", Arg);
752 }
753
754
755
756 static void OptCodeSize (const char* Opt attribute ((unused)), const char* Arg)
757 /* Handle the --codesize option */
758 {
759     CmdAddArg2 (&CC65, "--codesize", Arg);
760 }
761
762
763
764 static void OptConfig (const char* Opt attribute ((unused)), const char* Arg)
765 /* Config file (linker) */
766 {
767     if (LinkerConfig) {
768         Error ("Cannot specify -C/--config twice");
769     }
770     LinkerConfig = Arg;
771 }
772
773
774
775 static void OptCPU (const char* Opt attribute ((unused)), const char* Arg)
776 /* Handle the --cpu option */
777 {
778     /* Add the cpu type to the assembler and compiler */
779     CmdAddArg2 (&CA65, "--cpu", Arg);
780     CmdAddArg2 (&CC65, "--cpu", Arg);
781 }
782
783
784
785 static void OptCreateDep (const char* Opt attribute ((unused)),
786                           const char* Arg attribute ((unused)))
787 /* Handle the --create-dep option */
788 {
789     CmdAddArg (&CC65, "--create-dep");
790 }
791
792
793
794 static void OptDataLabel (const char* Opt attribute ((unused)), const char* Arg)
795 /* Handle the --data-label option */
796 {
797     CmdAddArg2 (&CO65, "--data-label", Arg);
798 }
799
800
801
802 static void OptDataName (const char* Opt attribute ((unused)), const char* Arg)
803 /* Handle the --data-name option */
804 {
805     CmdAddArg2 (&CC65, "--data-name", Arg);
806     CmdAddArg2 (&CO65, "--data-name", Arg);
807 }
808
809
810
811 static void OptDebug (const char* Opt attribute ((unused)),
812                       const char* Arg attribute ((unused)))
813 /* Debug mode (compiler and cl65 utility) */
814 {
815     CmdAddArg (&CC65, "-d");
816     CmdAddArg (&CO65, "-d");
817     Debug = 1;
818 }
819
820
821
822 static void OptDebugInfo (const char* Opt attribute ((unused)),
823                           const char* Arg attribute ((unused)))
824 /* Debug Info - add to compiler and assembler */
825 {
826     CmdAddArg (&CC65, "-g");
827     CmdAddArg (&CA65, "-g");
828     CmdAddArg (&CO65, "-g");
829 }
830
831
832
833 static void OptFeature (const char* Opt attribute ((unused)), const char* Arg)
834 /* Emulation features for the assembler */
835 {
836     CmdAddArg2 (&CA65, "--feature", Arg);
837 }
838
839
840
841 static void OptForgetIncPaths (const char* Opt attribute ((unused)), const char* Arg)
842 /* Forget all currently defined include paths */
843 {
844     CmdAddArg2 (&CC65, "--forget-inc-paths", Arg);
845 }
846
847
848
849 static void OptHelp (const char* Opt attribute ((unused)),
850                      const char* Arg attribute ((unused)))
851 /* Print help - cl65 */
852 {
853     Usage ();
854     exit (EXIT_SUCCESS);
855 }
856
857
858
859 static void OptIncludeDir (const char* Opt attribute ((unused)), const char* Arg)
860 /* Include directory (compiler) */
861 {
862     CmdAddArg2 (&CC65, "-I", Arg);
863 }
864
865
866
867 static void OptLib (const char* Opt attribute ((unused)), const char* Arg)
868 /* Library file follows (linker) */
869 {
870     CmdAddArg2 (&LD65, "--lib", Arg);
871 }
872
873
874
875 static void OptLibPath (const char* Opt attribute ((unused)), const char* Arg)
876 /* Library search path (linker) */
877 {
878     CmdAddArg2 (&LD65, "--lib-path", Arg);
879 }
880
881
882
883 static void OptListing (const char* Opt attribute ((unused)),
884                         const char* Arg attribute ((unused)))
885 /* Create an assembler listing */
886 {
887     CmdAddArg (&CA65, "-l");
888 }
889
890
891
892 static void OptMapFile (const char* Opt attribute ((unused)), const char* Arg)
893 /* Create a map file */
894 {
895     /* Create a map file (linker) */
896     CmdAddArg2 (&LD65, "-m", Arg);
897 }
898
899
900
901 static void OptMemoryModel (const char* Opt attribute ((unused)), const char* Arg)
902 /* Set the memory model */
903 {
904     mmodel_t MemoryModel = FindMemoryModel (Arg);
905     if (MemoryModel == MMODEL_UNKNOWN) {
906         Error ("Unknown memory model: %s", Arg);
907     } else if (MemoryModel == MMODEL_HUGE) {
908         Error ("Unsupported memory model: %s", Arg);
909     } else {
910         CmdAddArg2 (&CA65, "-mm", Arg);
911     }
912 }
913
914
915
916 static void OptModule (const char* Opt attribute ((unused)),
917                        const char* Arg attribute ((unused)))
918 /* Link as a module */
919 {
920     Module = 1;
921 }
922
923
924
925 static void OptModuleId (const char* Opt attribute ((unused)), const char* Arg)
926 /* Specify a module if for the linker */
927 {
928     /* Pass it straight to the linker */
929     CmdAddArg2 (&LD65, "--module-id", Arg);
930 }
931
932
933
934 static void OptO65Model (const char* Opt attribute ((unused)), const char* Arg)
935 /* Handle the --o65-model option */
936 {
937     CmdAddArg2 (&CO65, "-m", Arg);
938 }
939
940
941
942 static void OptObj (const char* Opt attribute ((unused)), const char* Arg)
943 /* Object file follows (linker) */
944 {
945     CmdAddArg2 (&LD65, "--obj", Arg);
946 }
947
948
949
950 static void OptObjPath (const char* Opt attribute ((unused)), const char* Arg)
951 /* Object file search path (linker) */
952 {
953     CmdAddArg2 (&LD65, "--obj-path", Arg);
954 }
955
956
957
958 static void OptRegisterSpace (const char* Opt attribute ((unused)), const char* Arg)
959 /* Handle the --register-space option */
960 {
961     CmdAddArg2 (&CC65, "--register-space", Arg);
962 }
963
964
965
966 static void OptRegisterVars (const char* Opt attribute ((unused)),
967                              const char* Arg attribute ((unused)))
968 /* Handle the --register-vars option */
969 {
970     CmdAddArg (&CC65, "-r");
971 }
972
973
974
975 static void OptRodataName (const char* Opt attribute ((unused)), const char* Arg)
976 /* Handle the --rodata-name option */
977 {
978     CmdAddArg2 (&CC65, "--rodata-name", Arg);
979 }
980
981
982
983 static void OptSignedChars (const char* Opt attribute ((unused)),
984                             const char* Arg attribute ((unused)))
985 /* Make default characters signed */
986 {
987     CmdAddArg (&CC65, "-j");
988 }
989
990
991
992 static void OptStartAddr (const char* Opt attribute ((unused)), const char* Arg)
993 /* Set the default start address */
994 {
995     CmdAddArg2 (&LD65, "-S", Arg);
996 }
997
998
999
1000 static void OptStaticLocals (const char* Opt attribute ((unused)),
1001                              const char* Arg attribute ((unused)))
1002 /* Place local variables in static storage */
1003 {
1004     CmdAddArg (&CC65, "-Cl");
1005 }
1006
1007
1008
1009 static void OptTarget (const char* Opt attribute ((unused)), const char* Arg)
1010 /* Set the target system */
1011 {
1012     Target = FindTarget (Arg);
1013     if (Target == TGT_UNKNOWN) {
1014         Error ("No such target system: `%s'", Arg);
1015     } else if (Target == TGT_MODULE) {
1016         Error ("Cannot use `module' as target, use --module instead");
1017     }
1018 }
1019
1020
1021
1022 static void OptVerbose (const char* Opt attribute ((unused)),
1023                         const char* Arg attribute ((unused)))
1024 /* Verbose mode (compiler, assembler, linker) */
1025 {
1026     CmdAddArg (&CC65, "-v");
1027     CmdAddArg (&CA65, "-v");
1028     CmdAddArg (&CO65, "-v");
1029     CmdAddArg (&LD65, "-v");
1030 }
1031
1032
1033
1034 static void OptVersion (const char* Opt attribute ((unused)),
1035                         const char* Arg attribute ((unused)))
1036 /* Print version number */
1037 {
1038     fprintf (stderr,
1039              "cl65 V%u.%u.%u - (C) Copyright 1998-2003 Ullrich von Bassewitz\n",
1040              VER_MAJOR, VER_MINOR, VER_PATCH);
1041 }
1042
1043
1044
1045 static void OptZeropageLabel (const char* Opt attribute ((unused)), const char* Arg)
1046 /* Handle the --zeropage-label option */
1047 {
1048     CmdAddArg2 (&CO65, "--zeropage-label", Arg);
1049 }
1050
1051
1052
1053 static void OptZeropageName (const char* Opt attribute ((unused)), const char* Arg)
1054 /* Handle the --zeropage-name option */
1055 {
1056     CmdAddArg2 (&CO65, "--zeropage-name", Arg);
1057 }
1058
1059
1060
1061 int main (int argc, char* argv [])
1062 /* Utility main program */
1063 {
1064     /* Program long options */
1065     static const LongOpt OptTab[] = {
1066         { "--add-source",       0,      OptAddSource            },
1067         { "--ansi",             0,      OptAnsi                 },
1068         { "--asm-define",       1,      OptAsmDefine            },
1069         { "--asm-include-dir",  1,      OptAsmIncludeDir        },
1070         { "--bss-label",        1,      OptBssLabel             },
1071         { "--bss-name",         1,      OptBssName              },
1072         { "--cfg-path",         1,      OptCfgPath              },
1073         { "--check-stack",      0,      OptCheckStack           },
1074         { "--code-label",       1,      OptCodeLabel            },
1075         { "--code-name",        1,      OptCodeName             },
1076         { "--codesize",         1,      OptCodeSize             },
1077         { "--config",           1,      OptConfig               },
1078         { "--cpu",              1,      OptCPU                  },
1079         { "--create-dep",       0,      OptCreateDep            },
1080         { "--data-label",       1,      OptDataLabel            },
1081         { "--data-name",        1,      OptDataName             },
1082         { "--debug",            0,      OptDebug                },
1083         { "--debug-info",       0,      OptDebugInfo            },
1084         { "--feature",          1,      OptFeature              },
1085         { "--forget-inc-paths", 0,      OptForgetIncPaths       },
1086         { "--help",             0,      OptHelp                 },
1087         { "--include-dir",      1,      OptIncludeDir           },
1088         { "--lib",              1,      OptLib                  },
1089         { "--lib-path",         1,      OptLibPath              },
1090         { "--listing",          0,      OptListing              },
1091         { "--mapfile",          1,      OptMapFile              },
1092         { "--memory-model",     1,      OptMemoryModel          },
1093         { "--module",           0,      OptModule               },
1094         { "--module-id",        1,      OptModuleId             },
1095         { "--o65-model",        1,      OptO65Model             },
1096         { "--obj",              1,      OptObj                  },
1097         { "--obj-path",         1,      OptObjPath              },
1098         { "--register-space",   1,      OptRegisterSpace        },
1099         { "--register-vars",    0,      OptRegisterVars         },
1100         { "--rodata-name",      1,      OptRodataName           },
1101         { "--signed-chars",     0,      OptSignedChars          },
1102         { "--start-addr",       1,      OptStartAddr            },
1103         { "--static-locals",    0,      OptStaticLocals         },
1104         { "--target",           1,      OptTarget               },
1105         { "--verbose",          0,      OptVerbose              },
1106         { "--version",          0,      OptVersion              },
1107         { "--zeropage-label",   1,      OptZeropageLabel        },
1108         { "--zeropage-name",    1,      OptZeropageName         },
1109     };
1110
1111     unsigned I;
1112
1113     /* Initialize the cmdline module */
1114     InitCmdLine (&argc, &argv, "cl65");
1115
1116     /* Initialize the command descriptors */
1117     CmdInit (&CC65, "cc65");
1118     CmdInit (&CA65, "ca65");
1119     CmdInit (&CO65, "co65");
1120     CmdInit (&LD65, "ld65");
1121     CmdInit (&GRC,  "grc");
1122
1123     /* Our default target is the C64 instead of "none" */
1124     Target = TGT_C64;
1125
1126     /* Check the parameters */
1127     I = 1;
1128     while (I < ArgCount) {
1129
1130         /* Get the argument */
1131         const char* Arg = ArgVec[I];
1132
1133         /* Check for an option */
1134         if (Arg [0] == '-') {
1135
1136             switch (Arg [1]) {
1137
1138                 case '-':
1139                     LongOption (&I, OptTab, sizeof(OptTab)/sizeof(OptTab[0]));
1140                     break;
1141
1142                 case 'A':
1143                     /* Strict ANSI mode (compiler) */
1144                     OptAnsi (Arg, 0);
1145                     break;
1146
1147                 case 'C':
1148                     if (Arg[2] == 'l' && Arg[3] == '\0') {
1149                         /* Make local variables static */
1150                         OptStaticLocals (Arg, 0);
1151                     } else {
1152                         /* Specify linker config file */
1153                         OptConfig (Arg, GetArg (&I, 2));
1154                     }
1155                     break;
1156
1157                 case 'D':
1158                     /* Define a preprocessor symbol (compiler) */
1159                     CmdAddArg2 (&CC65, "-D", GetArg (&I, 2));
1160                     break;
1161
1162                 case 'I':
1163                     /* Include directory (compiler) */
1164                     OptIncludeDir (Arg, GetArg (&I, 2));
1165                     break;
1166
1167                 case 'L':
1168                     if (Arg[2] == 'n' && Arg[3] == '\0') {
1169                         /* VICE label file (linker) */
1170                         CmdAddArg2 (&LD65, "-Ln", GetArg (&I, 3));
1171                     } else {
1172                         /* Library search path (linker) */
1173                         OptLibPath (Arg, GetArg (&I, 2));
1174                     }
1175                     break;
1176
1177                 case 'O':
1178                     /* Optimize code (compiler, also covers -Oi and others) */
1179                     CmdAddArg (&CC65, Arg);
1180                     break;
1181
1182                 case 'S':
1183                     /* Dont assemble and link the created files */
1184                     DontLink = DontAssemble = 1;
1185                     break;
1186
1187                 case 'T':
1188                     /* Include source as comment (compiler) */
1189                     OptAddSource (Arg, 0);
1190                     break;
1191
1192                 case 'V':
1193                     /* Print version number */
1194                     OptVersion (Arg, 0);
1195                     break;
1196
1197                 case 'W':
1198                     /* Suppress warnings - compiler and assembler */
1199                     CmdAddArg (&CC65, "-W");
1200                     CmdAddArg2 (&CA65, "-W", "0");
1201                     break;
1202
1203                 case 'c':
1204                     /* Don't link the resulting files */
1205                     DontLink = 1;
1206                     break;
1207
1208                 case 'd':
1209                     /* Debug mode (compiler) */
1210                     OptDebug (Arg, 0);
1211                     break;
1212
1213                 case 'g':
1214                     /* Debugging - add to compiler and assembler */
1215                     OptDebugInfo (Arg, 0);
1216                     break;
1217
1218                 case 'h':
1219                 case '?':
1220                     /* Print help - cl65 */
1221                     OptHelp (Arg, 0);
1222                     break;
1223
1224                 case 'j':
1225                     /* Default characters are signed */
1226                     OptSignedChars (Arg, 0);
1227                     break;
1228
1229                 case 'l':
1230                     /* Create an assembler listing */
1231                     OptListing (Arg, 0);
1232                     break;
1233
1234                 case 'm':
1235                     /* Create a map file (linker) */
1236                     OptMapFile (Arg, GetArg (&I, 2));
1237                     break;
1238
1239                 case 'o':
1240                     /* Name the output file */
1241                     OutputName = GetArg (&I, 2);
1242                     break;
1243
1244                 case 'r':
1245                     /* Enable register variables */
1246                     OptRegisterVars (Arg, 0);
1247                     break;
1248
1249                 case 't':
1250                     /* Set target system - compiler, assembler and linker */
1251                     OptTarget (Arg, GetArg (&I, 2));
1252                     break;
1253
1254                 case 'v':
1255                     if (Arg [2] == 'm') {
1256                         /* Verbose map file (linker) */
1257                         CmdAddArg (&LD65, "-vm");
1258                     } else {
1259                         /* Verbose mode (compiler, assembler, linker) */
1260                         OptVerbose (Arg, 0);
1261                     }
1262                     break;
1263
1264                 default:
1265                     UnknownOption (Arg);
1266             }
1267         } else {
1268
1269             /* Remember the first file name */
1270             if (FirstInput == 0) {
1271                 FirstInput = Arg;
1272             }
1273
1274             /* Determine the file type by the extension */
1275             switch (GetFileType (Arg)) {
1276
1277                 case FILETYPE_C:
1278                     /* Compile the file */
1279                     Compile (Arg);
1280                     break;
1281
1282                 case FILETYPE_ASM:
1283                     /* Assemble the file */
1284                     if (!DontAssemble) {
1285                         Assemble (Arg);
1286                     }
1287                     break;
1288
1289                 case FILETYPE_OBJ:
1290                 case FILETYPE_LIB:
1291                     /* Add to the linker files */
1292                     CmdAddFile (&LD65, Arg);
1293                     break;
1294
1295                 case FILETYPE_GR:
1296                     /* Add to the resource compiler files */
1297                     CompileRes (Arg);
1298                     break;
1299
1300                 case FILETYPE_O65:
1301                     /* Add the the object file converter files */
1302                     ConvertO65 (Arg);
1303                     break;
1304
1305                 default:
1306                     Error ("Don't know what to do with `%s'", Arg);
1307
1308             }
1309
1310         }
1311
1312         /* Next argument */
1313         ++I;
1314     }
1315
1316     /* Check if we had any input files */
1317     if (FirstInput == 0) {
1318         Warning ("No input files");
1319     }
1320
1321     /* Link the given files if requested and if we have any */
1322     if (DontLink == 0 && LD65.FileCount > 0) {
1323         Link ();
1324     }
1325
1326     /* Return an apropriate exit code */
1327     return EXIT_SUCCESS;
1328 }
1329
1330
1331