X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2FSDCCmain.c;h=2002576ff8f922d86aa5f5941096b1e10f4e6133;hb=b9855fd6b84616c3963897a10fa20ea93531e5ce;hp=9403075a4345df24f1c81aef6ecc68963c17d945;hpb=fab1b2b01944a97bc9a7275a2df59fe22f42d81f;p=fw%2Fsdcc diff --git a/src/SDCCmain.c b/src/SDCCmain.c index 9403075a..2002576f 100644 --- a/src/SDCCmain.c +++ b/src/SDCCmain.c @@ -304,6 +304,7 @@ static PORT *_ports[] = #if !OPT_DISABLE_DS400 &ds400_port, #endif + &hc08_port, }; #define NUM_PORTS (sizeof(_ports)/sizeof(_ports[0])) @@ -485,10 +486,16 @@ void setParseWithComma (set **dest, char *src) { char *p; + int length; /* skip the initial white spaces */ while (isspace(*src)) src++; + + /* skip the trailing white spaces */ + length = strlen(src); + while (length && isspace(src[length-1])) + src[--length] = '\0'; for (p = strtok(src, ","); p != NULL; p = strtok(NULL, ",")) addSet(dest, Safe_strdup(p)); @@ -1381,7 +1388,7 @@ linkEdit (char **envp) /* standard library path */ if (!options.nostdlib) { - if (!(TARGET_IS_Z80 || TARGET_IS_GBZ80)) /*Not for the z80, gbz80*/ + if (!(TARGET_IS_Z80 || TARGET_IS_GBZ80 || TARGET_IS_HC08)) /*Not for the z80, gbz80*/ { switch (options.model) { @@ -1420,7 +1427,9 @@ linkEdit (char **envp) } else /*for the z80, gbz80*/ { - if (TARGET_IS_Z80) + if (TARGET_IS_HC08) + c = "hc08"; + else if (TARGET_IS_Z80) c = "z80"; else c = "gbz80"; @@ -1459,13 +1468,18 @@ linkEdit (char **envp) } #endif #endif - if (!(TARGET_IS_Z80 || TARGET_IS_GBZ80)) /*Not for the z80, gbz80*/ + if (!(TARGET_IS_Z80 || TARGET_IS_GBZ80 + || TARGET_IS_HC08)) /*Not for the z80, gbz80*/ { /*Why the z80 port is not using the standard libraries?*/ fprintf (lnkfile, "-l %s\n", STD_LIB); fprintf (lnkfile, "-l %s\n", STD_INT_LIB); fprintf (lnkfile, "-l %s\n", STD_LONG_LIB); fprintf (lnkfile, "-l %s\n", STD_FP_LIB); } + else if (TARGET_IS_HC08) + { + fprintf (lnkfile, "-l hc08\n"); + } else if (TARGET_IS_Z80) { fprintf (lnkfile, "-l z80\n"); @@ -1483,7 +1497,8 @@ linkEdit (char **envp) /*For the z80 and gbz80 ports, try to find where crt0.o is... It is very important for this file to be first on the linking proccess so the areas are set in the correct order, expecially _GSINIT*/ - if ((TARGET_IS_Z80 || TARGET_IS_GBZ80) && !options.no_std_crt0) /*For the z80, gbz80*/ + if ((TARGET_IS_Z80 || TARGET_IS_GBZ80) && + !options.no_std_crt0 && !options.nostdlib) /*For the z80, gbz80*/ { char crt0path[PATH_MAX]; FILE * crt0fp;