From 46ecc713732e1bf16e966995b48a139d9932ba6e Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 11 Nov 1991 18:03:52 +0000 Subject: [PATCH] Some more fixes --- fast/driver/driver.c | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/fast/driver/driver.c b/fast/driver/driver.c index aa7700888..5230571ef 100644 --- a/fast/driver/driver.c +++ b/fast/driver/driver.c @@ -34,11 +34,6 @@ Something wrong here! Only one of FM2, FPC, or FCC must be defined #include #include #include -#define M2DEF "/lib/m2" -#define FASTDIR EM_DIR - -#define CCINCL "/include/tail_ac" -char *ROOT_DIR = FASTDIR; /* Version producing ACK .o files in one pass. @@ -56,10 +51,11 @@ struct arglist { #define CPP_NAME "$H/lib.bin/cpp" #define LD_NAME "$H/lib.bin/em_led" #define CV_NAME "$H/lib.bin/$S/cv" -#define SHELL "/bin/sh" +#define SHELL "/bin/sh" char *CPP; char *COMP; +char *cc = "cc"; int kids = -1; int ecount = 0; @@ -451,7 +447,7 @@ main(argc, argv) INCLUDE = expand_string("-I$H/lib/m2"); #endif FM2 #ifdef FCC - INCLUDE = expand_string("-I$H/include/tail_ac"); + INCLUDE = expand_string(ansi_c ? "-I$H/include/tail_ac" : "-I$H/include/_tail_cc"); append(&COMP_FLAGS, "-L"); #endif FCC count = SRCFILES.al_argc; @@ -531,6 +527,7 @@ main(argc, argv) if (RET_CODE == 0 && LDFILES.al_argc > 0) { init(call); expand(&LD_HEAD); + cc = "cc.2g"; expand(&LD_TAIL); append(call, expand_string(LD_NAME)); concat(call, &align); @@ -602,10 +599,10 @@ expand_string(s) switch(*p++) { case 'A': if (ansi_c) strcpy(q, "ac"); - else strcpy(q, "cc.2g"); + else strcpy(q, cc); break; case 'H': - strcpy(q, ROOT_DIR); + strcpy(q, EM_DIR); break; case 'M': strcpy(q, MACHNAME); -- 2.34.1