From dae93b9b86083402cd1da4c3774c07adbe24d353 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Wed, 28 Nov 1990 11:11:06 +0000 Subject: [PATCH] Compile with ``-O'' instead of ``-g'' on the pmax. --- ldb/Makefile.orig | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ldb/Makefile.orig b/ldb/Makefile.orig index 9a41f7bb6..6178273e7 100644 --- a/ldb/Makefile.orig +++ b/ldb/Makefile.orig @@ -1,6 +1,5 @@ -/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/Makefile.orig,v 1.16 1990/10/23 00:09:59 wlott Exp $ */ +/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/Makefile.orig,v 1.17 1990/11/28 11:11:06 wlott Exp $ */ INCLS = -I. -CFLAGS = -g ${INCLS} OBJS = ldb.o egets.o coreparse.o alloc.o monitor.o print.o \ os.o vars.o assem.o parse.o interrupt.o test.o \ @@ -8,14 +7,17 @@ OBJS = ldb.o egets.o coreparse.o alloc.o monitor.o print.o \ regnames.o backtrace.o bitbash.o save.o purify.o socket.o #ifdef mips +CFLAGS = -O ${INCLS} UNDEFSYMPATTERN=& ASSEMFILE='mips-assem.s' #endif #ifdef ibmrt +CFLAGS = -g ${INCLS} UNDEFSYMPATTERN=_& ASSEMFILE='rt-assem.s' #endif #ifdef sparc +CFLAGS = -g ${INCLS} UNDEFSYMPATTERN=_& ASSEMFILE='sparc-assem.s' #endif -- GitLab