diff options
author | dg <dg@FreeBSD.org> | 1994-08-29 17:38:28 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1994-08-29 17:38:28 +0000 |
commit | 1095f127fc1c147ccdc435a3b6e8bb0107d84620 (patch) | |
tree | 2993832eddea8b58f52615e63083df1dc4c50b63 /gnu/usr.bin/cc/cc1 | |
parent | 8aa2891ca7b07ce7d3dc992cf11d700ec6711d73 (diff) | |
download | FreeBSD-src-1095f127fc1c147ccdc435a3b6e8bb0107d84620.zip FreeBSD-src-1095f127fc1c147ccdc435a3b6e8bb0107d84620.tar.gz |
Use gnumalloc to help reduce memory consumption.
Diffstat (limited to 'gnu/usr.bin/cc/cc1')
-rw-r--r-- | gnu/usr.bin/cc/cc1/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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 <bsd.prog.mk> |