From 1095f127fc1c147ccdc435a3b6e8bb0107d84620 Mon Sep 17 00:00:00 2001 From: dg Date: Mon, 29 Aug 1994 17:38:28 +0000 Subject: Use gnumalloc to help reduce memory consumption. --- gnu/usr.bin/cc/cc1/Makefile | 4 ++-- gnu/usr.bin/cc/cc1plus/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'gnu/usr.bin/cc') diff --git a/gnu/usr.bin/cc/cc1/Makefile b/gnu/usr.bin/cc/cc1/Makefile index 745dc27..7cbe60b 100644 --- a/gnu/usr.bin/cc/cc1/Makefile +++ b/gnu/usr.bin/cc/cc1/Makefile @@ -6,7 +6,7 @@ PROG = cc1 SRCS = c-aux-info.c c-convert.c c-decl.c c-iterate.c c-lang.c c-lex.c c-parse.c c-pragma.c c-typeck.c BINDIR= /usr/libexec NOMAN= 1 -DPADD+= ${LIBCC_INT} -LDADD+= -lcc_int +DPADD+= ${LIBCC_INT} ${LIBGNUMALLOC} +LDADD+= -lcc_int -lgnumalloc .include diff --git a/gnu/usr.bin/cc/cc1plus/Makefile b/gnu/usr.bin/cc/cc1plus/Makefile index 5e43626..d41934b 100644 --- a/gnu/usr.bin/cc/cc1plus/Makefile +++ b/gnu/usr.bin/cc/cc1plus/Makefile @@ -6,7 +6,7 @@ PROG = cc1plus SRCS = call.c class.c cvt.c decl.c decl2.c edsel.c errfn.c error.c except.c expr.c gc.c init.c lex.c method.c parse.c pt.c ptree.c search.c sig.c spew.c tree.c typeck.c typeck2.c xref.c BINDIR= /usr/libexec NOMAN= 1 -DPADD+= ${LIBCC_INT} -LDADD+= -lcc_int +DPADD+= ${LIBCC_INT} ${LIBGNUMALLOC} +LDADD+= -lcc_int -lgnumalloc .include -- cgit v1.1