Added GNU GCC support, linux binary

This commit is contained in:
David Anderson
2004-08-11 10:01:56 +00:00
parent bd11b5eb90
commit 2a1ee3fd37
15 changed files with 40 additions and 26 deletions

View File

@@ -58,7 +58,6 @@ void get_options(int argc, char **argv, Compiler &Prog)
int i = 0; /* index */
char opt_flag = 0; /* flag for option detection */
char *option = 0; /* option pointer */
char c = 0; /* option marker */
for (i=1; i<argc; i++)
{
if (argv[i][0] == '-')
@@ -122,4 +121,4 @@ void print_options()
printf("\t-v\t\t- Output version and exit\n");
printf("\t-o\t\t- Specify file to write\n");
printf("\n");
}
}