]> git.sur5r.net Git - cc65/blob - src/cl65/main.c
New option --list-targets
[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-2004 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         memcpy (TargetCRT0, TargetName, TargetNameLen);
292         strcpy (TargetCRT0 + TargetNameLen, ".o");
293
294         /* Set the library file */
295         TargetLib = xmalloc (TargetNameLen + 4 + 1);
296         memcpy (TargetLib, TargetName, TargetNameLen);
297         strcpy (TargetLib + TargetNameLen, ".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 {
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              "  --list-targets\tList all available targets\n"
648              "  --listing\t\tCreate an assembler listing\n"
649              "  --mapfile name\tCreate a map file\n"
650              "  --memory-model model\tSet the memory model\n"
651              "  --module\t\tLink as a module\n"
652              "  --module-id id\tSpecify a module id for the linker\n"
653              "  --o65-model model\tOverride the o65 model\n"
654              "  --obj file\t\tLink this object file\n"
655              "  --obj-path path\tSpecify an object file search path\n"
656              "  --register-space b\tSet space available for register variables\n"
657              "  --register-vars\tEnable register variables\n"
658              "  --rodata-name seg\tSet the name of the RODATA segment\n"
659              "  --signed-chars\tDefault characters are signed\n"
660              "  --start-addr addr\tSet the default start address\n"
661              "  --static-locals\tMake local variables static\n"
662              "  --target sys\t\tSet the target system\n"
663              "  --version\t\tPrint the version number\n"
664              "  --verbose\t\tVerbose mode\n"
665              "  --zeropage-label name\tDefine and export a ZEROPAGE segment label\n"
666              "  --zeropage-name seg\tSet the name of the ZEROPAGE segment\n",
667              ProgName);
668 }
669
670
671
672 static void OptAddSource (const char* Opt attribute ((unused)),
673                           const char* Arg attribute ((unused)))
674 /* Strict source code as comments to the generated asm code */
675 {
676     CmdAddArg (&CC65, "-T");
677 }
678
679
680
681 static void OptAnsi (const char* Opt attribute ((unused)),
682                      const char* Arg attribute ((unused)))
683 /* Strict ANSI mode (compiler) */
684 {
685     CmdAddArg (&CC65, "-A");
686 }
687
688
689
690 static void OptAsmDefine (const char* Opt attribute ((unused)), const char* Arg)
691 /* Define an assembler symbol (assembler) */
692 {
693     CmdAddArg2 (&CA65, "-D", Arg);
694 }
695
696
697
698 static void OptAsmIncludeDir (const char* Opt attribute ((unused)), const char* Arg)
699 /* Include directory (assembler) */
700 {
701     CmdAddArg2 (&CA65, "-I", Arg);
702 }
703
704
705
706 static void OptBssLabel (const char* Opt attribute ((unused)), const char* Arg)
707 /* Handle the --bss-label option */
708 {
709     CmdAddArg2 (&CO65, "--bss-label", Arg);
710 }
711
712
713
714 static void OptBssName (const char* Opt attribute ((unused)), const char* Arg)
715 /* Handle the --bss-name option */
716 {
717     CmdAddArg2 (&CC65, "--bss-name", Arg);
718     CmdAddArg2 (&CO65, "--bss-name", Arg);
719 }
720
721
722
723 static void OptCfgPath (const char* Opt attribute ((unused)), const char* Arg)
724 /* Config file search path (linker) */
725 {
726     CmdAddArg2 (&LD65, "--cfg-path", Arg);
727 }
728
729
730
731 static void OptCheckStack (const char* Opt attribute ((unused)),
732                            const char* Arg attribute ((unused)))
733 /* Handle the --check-stack option */
734 {
735     CmdAddArg (&CC65, "--check-stack");
736 }
737
738
739
740 static void OptCodeLabel (const char* Opt attribute ((unused)), const char* Arg)
741 /* Handle the --code-label option */
742 {
743     CmdAddArg2 (&CO65, "--code-label", Arg);
744 }
745
746
747
748 static void OptCodeName (const char* Opt attribute ((unused)), const char* Arg)
749 /* Handle the --code-name option */
750 {
751     CmdAddArg2 (&CC65, "--code-name", Arg);
752     CmdAddArg2 (&CO65, "--code-name", Arg);
753 }
754
755
756
757 static void OptCodeSize (const char* Opt attribute ((unused)), const char* Arg)
758 /* Handle the --codesize option */
759 {
760     CmdAddArg2 (&CC65, "--codesize", Arg);
761 }
762
763
764
765 static void OptConfig (const char* Opt attribute ((unused)), const char* Arg)
766 /* Config file (linker) */
767 {
768     if (LinkerConfig) {
769         Error ("Cannot specify -C/--config twice");
770     }
771     LinkerConfig = Arg;
772 }
773
774
775
776 static void OptCPU (const char* Opt attribute ((unused)), const char* Arg)
777 /* Handle the --cpu option */
778 {
779     /* Add the cpu type to the assembler and compiler */
780     CmdAddArg2 (&CA65, "--cpu", Arg);
781     CmdAddArg2 (&CC65, "--cpu", Arg);
782 }
783
784
785
786 static void OptCreateDep (const char* Opt attribute ((unused)),
787                           const char* Arg attribute ((unused)))
788 /* Handle the --create-dep option */
789 {
790     CmdAddArg (&CC65, "--create-dep");
791 }
792
793
794
795 static void OptDataLabel (const char* Opt attribute ((unused)), const char* Arg)
796 /* Handle the --data-label option */
797 {
798     CmdAddArg2 (&CO65, "--data-label", Arg);
799 }
800
801
802
803 static void OptDataName (const char* Opt attribute ((unused)), const char* Arg)
804 /* Handle the --data-name option */
805 {
806     CmdAddArg2 (&CC65, "--data-name", Arg);
807     CmdAddArg2 (&CO65, "--data-name", Arg);
808 }
809
810
811
812 static void OptDebug (const char* Opt attribute ((unused)),
813                       const char* Arg attribute ((unused)))
814 /* Debug mode (compiler and cl65 utility) */
815 {
816     CmdAddArg (&CC65, "-d");
817     CmdAddArg (&CO65, "-d");
818     Debug = 1;
819 }
820
821
822
823 static void OptDebugInfo (const char* Opt attribute ((unused)),
824                           const char* Arg attribute ((unused)))
825 /* Debug Info - add to compiler and assembler */
826 {
827     CmdAddArg (&CC65, "-g");
828     CmdAddArg (&CA65, "-g");
829     CmdAddArg (&CO65, "-g");
830 }
831
832
833
834 static void OptFeature (const char* Opt attribute ((unused)), const char* Arg)
835 /* Emulation features for the assembler */
836 {
837     CmdAddArg2 (&CA65, "--feature", Arg);
838 }
839
840
841
842 static void OptForgetIncPaths (const char* Opt attribute ((unused)), const char* Arg)
843 /* Forget all currently defined include paths */
844 {
845     CmdAddArg2 (&CC65, "--forget-inc-paths", Arg);
846 }
847
848
849
850 static void OptHelp (const char* Opt attribute ((unused)),
851                      const char* Arg attribute ((unused)))
852 /* Print help - cl65 */
853 {
854     Usage ();
855     exit (EXIT_SUCCESS);
856 }
857
858
859
860 static void OptIncludeDir (const char* Opt attribute ((unused)), const char* Arg)
861 /* Include directory (compiler) */
862 {
863     CmdAddArg2 (&CC65, "-I", Arg);
864 }
865
866
867
868 static void OptLib (const char* Opt attribute ((unused)), const char* Arg)
869 /* Library file follows (linker) */
870 {
871     CmdAddArg2 (&LD65, "--lib", Arg);
872 }
873
874
875
876 static void OptLibPath (const char* Opt attribute ((unused)), const char* Arg)
877 /* Library search path (linker) */
878 {
879     CmdAddArg2 (&LD65, "--lib-path", Arg);
880 }
881
882
883
884 static void OptListing (const char* Opt attribute ((unused)),
885                         const char* Arg attribute ((unused)))
886 /* Create an assembler listing */
887 {
888     CmdAddArg (&CA65, "-l");
889 }
890
891
892
893 static void OptListTargets (const char* Opt attribute ((unused)),
894                             const char* Arg attribute ((unused)))
895 /* List all targets */
896 {
897     unsigned I;
898
899     /* List the targets */
900     for (I = TGT_NONE; I < TGT_COUNT; ++I) {
901         printf ("%s\n", TargetNames[I]);
902     }
903
904     /* Terminate */
905     exit (EXIT_SUCCESS);
906 }
907
908
909
910 static void OptMapFile (const char* Opt attribute ((unused)), const char* Arg)
911 /* Create a map file */
912 {
913     /* Create a map file (linker) */
914     CmdAddArg2 (&LD65, "-m", Arg);
915 }
916
917
918
919 static void OptMemoryModel (const char* Opt attribute ((unused)), const char* Arg)
920 /* Set the memory model */
921 {
922     mmodel_t MemoryModel = FindMemoryModel (Arg);
923     if (MemoryModel == MMODEL_UNKNOWN) {
924         Error ("Unknown memory model: %s", Arg);
925     } else if (MemoryModel == MMODEL_HUGE) {
926         Error ("Unsupported memory model: %s", Arg);
927     } else {
928         CmdAddArg2 (&CA65, "-mm", Arg);
929         CmdAddArg2 (&CC65, "-mm", Arg);
930     }
931 }
932
933
934
935 static void OptModule (const char* Opt attribute ((unused)),
936                        const char* Arg attribute ((unused)))
937 /* Link as a module */
938 {
939     Module = 1;
940 }
941
942
943
944 static void OptModuleId (const char* Opt attribute ((unused)), const char* Arg)
945 /* Specify a module if for the linker */
946 {
947     /* Pass it straight to the linker */
948     CmdAddArg2 (&LD65, "--module-id", Arg);
949 }
950
951
952
953 static void OptO65Model (const char* Opt attribute ((unused)), const char* Arg)
954 /* Handle the --o65-model option */
955 {
956     CmdAddArg2 (&CO65, "-m", Arg);
957 }
958
959
960
961 static void OptObj (const char* Opt attribute ((unused)), const char* Arg)
962 /* Object file follows (linker) */
963 {
964     CmdAddArg2 (&LD65, "--obj", Arg);
965 }
966
967
968
969 static void OptObjPath (const char* Opt attribute ((unused)), const char* Arg)
970 /* Object file search path (linker) */
971 {
972     CmdAddArg2 (&LD65, "--obj-path", Arg);
973 }
974
975
976
977 static void OptRegisterSpace (const char* Opt attribute ((unused)), const char* Arg)
978 /* Handle the --register-space option */
979 {
980     CmdAddArg2 (&CC65, "--register-space", Arg);
981 }
982
983
984
985 static void OptRegisterVars (const char* Opt attribute ((unused)),
986                              const char* Arg attribute ((unused)))
987 /* Handle the --register-vars option */
988 {
989     CmdAddArg (&CC65, "-r");
990 }
991
992
993
994 static void OptRodataName (const char* Opt attribute ((unused)), const char* Arg)
995 /* Handle the --rodata-name option */
996 {
997     CmdAddArg2 (&CC65, "--rodata-name", Arg);
998 }
999
1000
1001
1002 static void OptSignedChars (const char* Opt attribute ((unused)),
1003                             const char* Arg attribute ((unused)))
1004 /* Make default characters signed */
1005 {
1006     CmdAddArg (&CC65, "-j");
1007 }
1008
1009
1010
1011 static void OptStartAddr (const char* Opt attribute ((unused)), const char* Arg)
1012 /* Set the default start address */
1013 {
1014     CmdAddArg2 (&LD65, "-S", Arg);
1015 }
1016
1017
1018
1019 static void OptStaticLocals (const char* Opt attribute ((unused)),
1020                              const char* Arg attribute ((unused)))
1021 /* Place local variables in static storage */
1022 {
1023     CmdAddArg (&CC65, "-Cl");
1024 }
1025
1026
1027
1028 static void OptTarget (const char* Opt attribute ((unused)), const char* Arg)
1029 /* Set the target system */
1030 {
1031     Target = FindTarget (Arg);
1032     if (Target == TGT_UNKNOWN) {
1033         Error ("No such target system: `%s'", Arg);
1034     } else if (Target == TGT_MODULE) {
1035         Error ("Cannot use `module' as target, use --module instead");
1036     }
1037 }
1038
1039
1040
1041 static void OptVerbose (const char* Opt attribute ((unused)),
1042                         const char* Arg attribute ((unused)))
1043 /* Verbose mode (compiler, assembler, linker) */
1044 {
1045     CmdAddArg (&CC65, "-v");
1046     CmdAddArg (&CA65, "-v");
1047     CmdAddArg (&CO65, "-v");
1048     CmdAddArg (&LD65, "-v");
1049 }
1050
1051
1052
1053 static void OptVersion (const char* Opt attribute ((unused)),
1054                         const char* Arg attribute ((unused)))
1055 /* Print version number */
1056 {
1057     fprintf (stderr,
1058              "cl65 V%u.%u.%u - (C) Copyright 1998-2003 Ullrich von Bassewitz\n",
1059              VER_MAJOR, VER_MINOR, VER_PATCH);
1060 }
1061
1062
1063
1064 static void OptZeropageLabel (const char* Opt attribute ((unused)), const char* Arg)
1065 /* Handle the --zeropage-label option */
1066 {
1067     CmdAddArg2 (&CO65, "--zeropage-label", Arg);
1068 }
1069
1070
1071
1072 static void OptZeropageName (const char* Opt attribute ((unused)), const char* Arg)
1073 /* Handle the --zeropage-name option */
1074 {
1075     CmdAddArg2 (&CO65, "--zeropage-name", Arg);
1076 }
1077
1078
1079
1080 int main (int argc, char* argv [])
1081 /* Utility main program */
1082 {
1083     /* Program long options */
1084     static const LongOpt OptTab[] = {
1085         { "--add-source",       0,      OptAddSource            },
1086         { "--ansi",             0,      OptAnsi                 },
1087         { "--asm-define",       1,      OptAsmDefine            },
1088         { "--asm-include-dir",  1,      OptAsmIncludeDir        },
1089         { "--bss-label",        1,      OptBssLabel             },
1090         { "--bss-name",         1,      OptBssName              },
1091         { "--cfg-path",         1,      OptCfgPath              },
1092         { "--check-stack",      0,      OptCheckStack           },
1093         { "--code-label",       1,      OptCodeLabel            },
1094         { "--code-name",        1,      OptCodeName             },
1095         { "--codesize",         1,      OptCodeSize             },
1096         { "--config",           1,      OptConfig               },
1097         { "--cpu",              1,      OptCPU                  },
1098         { "--create-dep",       0,      OptCreateDep            },
1099         { "--data-label",       1,      OptDataLabel            },
1100         { "--data-name",        1,      OptDataName             },
1101         { "--debug",            0,      OptDebug                },
1102         { "--debug-info",       0,      OptDebugInfo            },
1103         { "--feature",          1,      OptFeature              },
1104         { "--forget-inc-paths", 0,      OptForgetIncPaths       },
1105         { "--help",             0,      OptHelp                 },
1106         { "--include-dir",      1,      OptIncludeDir           },
1107         { "--lib",              1,      OptLib                  },
1108         { "--lib-path",         1,      OptLibPath              },
1109         { "--list-targets",     0,      OptListTargets          },
1110         { "--listing",          0,      OptListing              },
1111         { "--mapfile",          1,      OptMapFile              },
1112         { "--memory-model",     1,      OptMemoryModel          },
1113         { "--module",           0,      OptModule               },
1114         { "--module-id",        1,      OptModuleId             },
1115         { "--o65-model",        1,      OptO65Model             },
1116         { "--obj",              1,      OptObj                  },
1117         { "--obj-path",         1,      OptObjPath              },
1118         { "--register-space",   1,      OptRegisterSpace        },
1119         { "--register-vars",    0,      OptRegisterVars         },
1120         { "--rodata-name",      1,      OptRodataName           },
1121         { "--signed-chars",     0,      OptSignedChars          },
1122         { "--start-addr",       1,      OptStartAddr            },
1123         { "--static-locals",    0,      OptStaticLocals         },
1124         { "--target",           1,      OptTarget               },
1125         { "--verbose",          0,      OptVerbose              },
1126         { "--version",          0,      OptVersion              },
1127         { "--zeropage-label",   1,      OptZeropageLabel        },
1128         { "--zeropage-name",    1,      OptZeropageName         },
1129     };
1130
1131     unsigned I;
1132
1133     /* Initialize the cmdline module */
1134     InitCmdLine (&argc, &argv, "cl65");
1135
1136     /* Initialize the command descriptors */
1137     CmdInit (&CC65, "cc65");
1138     CmdInit (&CA65, "ca65");
1139     CmdInit (&CO65, "co65");
1140     CmdInit (&LD65, "ld65");
1141     CmdInit (&GRC,  "grc");
1142
1143     /* Our default target is the C64 instead of "none" */
1144     Target = TGT_C64;
1145
1146     /* Check the parameters */
1147     I = 1;
1148     while (I < ArgCount) {
1149
1150         /* Get the argument */
1151         const char* Arg = ArgVec[I];
1152
1153         /* Check for an option */
1154         if (Arg [0] == '-') {
1155
1156             switch (Arg [1]) {
1157
1158                 case '-':
1159                     LongOption (&I, OptTab, sizeof(OptTab)/sizeof(OptTab[0]));
1160                     break;
1161
1162                 case 'A':
1163                     /* Strict ANSI mode (compiler) */
1164                     OptAnsi (Arg, 0);
1165                     break;
1166
1167                 case 'C':
1168                     if (Arg[2] == 'l' && Arg[3] == '\0') {
1169                         /* Make local variables static */
1170                         OptStaticLocals (Arg, 0);
1171                     } else {
1172                         /* Specify linker config file */
1173                         OptConfig (Arg, GetArg (&I, 2));
1174                     }
1175                     break;
1176
1177                 case 'D':
1178                     /* Define a preprocessor symbol (compiler) */
1179                     CmdAddArg2 (&CC65, "-D", GetArg (&I, 2));
1180                     break;
1181
1182                 case 'I':
1183                     /* Include directory (compiler) */
1184                     OptIncludeDir (Arg, GetArg (&I, 2));
1185                     break;
1186
1187                 case 'L':
1188                     if (Arg[2] == 'n' && Arg[3] == '\0') {
1189                         /* VICE label file (linker) */
1190                         CmdAddArg2 (&LD65, "-Ln", GetArg (&I, 3));
1191                     } else {
1192                         /* Library search path (linker) */
1193                         OptLibPath (Arg, GetArg (&I, 2));
1194                     }
1195                     break;
1196
1197                 case 'O':
1198                     /* Optimize code (compiler, also covers -Oi and others) */
1199                     CmdAddArg (&CC65, Arg);
1200                     break;
1201
1202                 case 'S':
1203                     /* Dont assemble and link the created files */
1204                     DontLink = DontAssemble = 1;
1205                     break;
1206
1207                 case 'T':
1208                     /* Include source as comment (compiler) */
1209                     OptAddSource (Arg, 0);
1210                     break;
1211
1212                 case 'V':
1213                     /* Print version number */
1214                     OptVersion (Arg, 0);
1215                     break;
1216
1217                 case 'W':
1218                     /* Suppress warnings - compiler and assembler */
1219                     CmdAddArg (&CC65, "-W");
1220                     CmdAddArg2 (&CA65, "-W", "0");
1221                     break;
1222
1223                 case 'c':
1224                     /* Don't link the resulting files */
1225                     DontLink = 1;
1226                     break;
1227
1228                 case 'd':
1229                     /* Debug mode (compiler) */
1230                     OptDebug (Arg, 0);
1231                     break;
1232
1233                 case 'g':
1234                     /* Debugging - add to compiler and assembler */
1235                     OptDebugInfo (Arg, 0);
1236                     break;
1237
1238                 case 'h':
1239                 case '?':
1240                     /* Print help - cl65 */
1241                     OptHelp (Arg, 0);
1242                     break;
1243
1244                 case 'j':
1245                     /* Default characters are signed */
1246                     OptSignedChars (Arg, 0);
1247                     break;
1248
1249                 case 'l':
1250                     /* Create an assembler listing */
1251                     OptListing (Arg, 0);
1252                     break;
1253
1254                 case 'm':
1255                     /* Create a map file (linker) */
1256                     OptMapFile (Arg, GetArg (&I, 2));
1257                     break;
1258
1259                 case 'o':
1260                     /* Name the output file */
1261                     OutputName = GetArg (&I, 2);
1262                     break;
1263
1264                 case 'r':
1265                     /* Enable register variables */
1266                     OptRegisterVars (Arg, 0);
1267                     break;
1268
1269                 case 't':
1270                     /* Set target system - compiler, assembler and linker */
1271                     OptTarget (Arg, GetArg (&I, 2));
1272                     break;
1273
1274                 case 'v':
1275                     if (Arg [2] == 'm') {
1276                         /* Verbose map file (linker) */
1277                         CmdAddArg (&LD65, "-vm");
1278                     } else {
1279                         /* Verbose mode (compiler, assembler, linker) */
1280                         OptVerbose (Arg, 0);
1281                     }
1282                     break;
1283
1284                 default:
1285                     UnknownOption (Arg);
1286             }
1287         } else {
1288
1289             /* Remember the first file name */
1290             if (FirstInput == 0) {
1291                 FirstInput = Arg;
1292             }
1293
1294             /* Determine the file type by the extension */
1295             switch (GetFileType (Arg)) {
1296
1297                 case FILETYPE_C:
1298                     /* Compile the file */
1299                     Compile (Arg);
1300                     break;
1301
1302                 case FILETYPE_ASM:
1303                     /* Assemble the file */
1304                     if (!DontAssemble) {
1305                         Assemble (Arg);
1306                     }
1307                     break;
1308
1309                 case FILETYPE_OBJ:
1310                 case FILETYPE_LIB:
1311                     /* Add to the linker files */
1312                     CmdAddFile (&LD65, Arg);
1313                     break;
1314
1315                 case FILETYPE_GR:
1316                     /* Add to the resource compiler files */
1317                     CompileRes (Arg);
1318                     break;
1319
1320                 case FILETYPE_O65:
1321                     /* Add the the object file converter files */
1322                     ConvertO65 (Arg);
1323                     break;
1324
1325                 default:
1326                     Error ("Don't know what to do with `%s'", Arg);
1327
1328             }
1329
1330         }
1331
1332         /* Next argument */
1333         ++I;
1334     }
1335
1336     /* Check if we had any input files */
1337     if (FirstInput == 0) {
1338         Warning ("No input files");
1339     }
1340
1341     /* Link the given files if requested and if we have any */
1342     if (DontLink == 0 && LD65.FileCount > 0) {
1343         Link ();
1344     }
1345
1346     /* Return an apropriate exit code */
1347     return EXIT_SUCCESS;
1348 }
1349
1350
1351