1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-25 17:29:50 +00:00

added -E switch to cl65 for >>stop after the preprocessing stage<<.

added compilation and assemblation disable after -Wc -E also with -E beeing part of a comma separated list of arguments
This commit is contained in:
mc78 2017-05-12 12:19:40 +02:00
parent 0291c92ffb
commit 4cbfb4e199

View File

@ -706,6 +706,7 @@ static void Usage (void)
" -C name\t\t\tUse linker config file\n"
" -Cl\t\t\t\tMake local variables static\n"
" -D sym[=defn]\t\t\tDefine a preprocessor symbol\n"
" -E Stop after the preprocessing stage\n"
" -I dir\t\t\tSet a compiler include directory path\n"
" -L path\t\t\tSpecify a library search path\n"
" -Ln name\t\t\tCreate a VICE label file\n"
@ -1412,13 +1413,40 @@ int main (int argc, char* argv [])
OptVersion (Arg, 0);
break;
case 'E':
/*Forward -E to compiler*/
CmdAddArg (&CC65, Arg);
DoAssemble = 0;
DoLink = 0;
break;
case 'W':
if (Arg[2] == 'a' && Arg[3] == '\0') {
/* -Wa: Pass options to assembler */
OptAsmArgs (Arg, GetArg (&I, 3));
} else if (Arg[2] == 'c' && Arg[3] == '\0') {
}
else if (Arg[2] == 'c' && Arg[3] == '\0') {
/* -Wc: Pass options to compiler */
OptCCArgs (Arg, GetArg (&I, 3));
/* Get argument succeeding -Wc switch */
const char* WcSubArgs = GetArg (&I, 3);
/* Remember -Wc sub arguments in cc65 arg struct */
OptCCArgs (Arg, WcSubArgs);
/* Check for isolated -E switch given after -Wc*/
if (!strcmp("-E", WcSubArgs)){
/*If both -Wc and -E given, then prevent assembling
and linking */
DoAssemble = 0;
DoLink = 0;
}else{
/* Check for -E beeing part of comma separated arg
list given after -Wc*/
if ( (NULL!=strstr(WcSubArgs, "-E,")) ||
(NULL!=strstr(WcSubArgs, ",-E"))){
DoAssemble = 0;
DoLink = 0;
}
}
} else if (Arg[2] == 'l' && Arg[3] == '\0') {
/* -Wl: Pass options to linker */
OptLdArgs (Arg, GetArg (&I, 3));