/* DEC ALPHAs running OSF/1 V3.2A (Rev. 17) at Princeton University */

#include <lcc-conf.h>

#include <string.h>

static char rcsid[] = "$Id: osf.c,v 1.1.1.1 2002/04/21 13:25:10 peter Exp $";

#ifndef LOCALDIR
#define LOCALDIR "/usr/local/"
#endif

#ifndef LCCDIR
#define LCCDIR LOCALDIR "lib/lcc/"
#endif

char *suffixes[] = { ".c", ".i", ".s", ".o", ".out", 0 };
char inputs[256] = "";
char *cpp[] = {
	LCCDIR "cpp", "-D__STDC__=1",
	"-DLANGUAGE_C", "-D__LANGUAGE_C__",
 	"-D_unix", "-D__unix__", "-D_osf", "-D__osf__", "-Dunix",
	"-Dalpha", "-D_alpha", "-D__alpha",
	"-D__SYSTYPE_BSD",  "-D_SYSTYPE_BSD",
	"$1", "$2", "$3", 0 };
char *com[] =  { LCCDIR "rcc", "-target=alpha/osf", "$1", "$2", "$3", "", 0 };
char *include[] = { "-I" LCCDIR "include", "-I/usr/local/include",
	"-I/usr/include", 0 };
char *as[] =  { "/bin/as", "-o", "$3", "", "$1", "-nocpp", "$2", 0 };
char *ld[] =  { "/usr/bin/ld", "-g0", "-o", "$3", "/usr/lib/cmplrs/cc/crt0.o",
	"$1", "$2", "", "", "-L" LCCDIR, "", "", "-llcc", "-lm", "-lc", 0 };

extern char *concat(char *, char *);
extern int access(const char *, int);

int option(char *arg) {
	if (strncmp(arg, "-lccdir=", 8) == 0) {
		cpp[0] = concat(&arg[8], "/cpp");
		include[0] = concat("-I", concat(&arg[8], "/include"));
		com[0] = concat(&arg[8], "/rcc");
		ld[9] = concat("-L", &arg[8]);
	} else if (strncmp(arg, "-as=", 4) == 0) {
		as[0] = concat(&arg[4], "");
	} else if (strncmp(arg, "-cpp=", 5) == 0) {
		cpp[0] = concat(&arg[5], "");
	} else if (strncmp(arg, "-ld=", 4) == 0) {
		ld[0] = concat(&arg[4],"");
	} else if (strncmp(arg, "-rcc=", 5) == 0) {
		com[0] = concat(&arg[5],"");
	} else if (strcmp(arg, "-p") == 0) {
		ld[4] = "/usr/lib/cmplrs/cc/mcrt0.o";
		ld[10] = "-lprof1";
		ld[11] = "-lpdf";
	} else if (strcmp(arg, "-pg") == 0) {
		ld[4] = "/usr/lib/cmplrs/cc/gcrt0.o";
		ld[10] = "-lprof1";
		ld[11] = "-lpdf";
	} else if (strcmp(arg, "-g4") == 0
	&& access("/u/drh/lib/alpha/rcc", 4) == 0
	&& access("/u/drh/book/cdb/alpha/osf/cdbld", 4) == 0) {
		com[0] = "/u/drh/lib/alpha/rcc";
		com[5] = "-g4";
		ld[0] = "/u/drh/book/cdb/alpha/osf/cdbld";
		ld[2] = "-o";
		ld[3] = "$3";
		ld[4] = "$1";
		ld[5] = "$2";
		ld[6] = 0;
	}
	else if (strcmp(arg, "-g") == 0)
		ld[1] = "-g2";
	else if (strcmp(arg, "-g0") == 0)
		ld[1] = "-g0";
	else if (strcmp(arg, "-g1") == 0)
		ld[1] = "-g1";
	else if (strcmp(arg, "-g2") == 0)
		ld[1] = "-g2";
	else if (strcmp(arg, "-g3") == 0)
		ld[1] = "-g3";
	else if (strcmp(arg, "-b") == 0)
		;
	else if (strcmp(arg, "-dynamic") == 0)
	        ;			/* not yet implemented */
	else if (strcmp(arg, "-static") == 0)
	        ;			/* not yet implemented */
	else
		return 0;
	return 1;
}
