mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Use gnumalloc to help reduce memory consumption.
This commit is contained in:
parent
dd3065a57a
commit
6439f9e911
3 changed files with 7 additions and 7 deletions
|
|
@ -1,5 +1,5 @@
|
|||
# from: @(#)Makefile 6.1 (Berkeley) 3/3/91
|
||||
# $Id: Makefile,v 1.3 1994/02/20 16:06:08 rgrimes Exp $
|
||||
# $Id: Makefile,v 1.4 1994/08/28 17:43:37 bde Exp $
|
||||
|
||||
.include "config/Makefile.$(MACHINE)"
|
||||
|
||||
|
|
@ -27,8 +27,8 @@ SRCS+= app.c as.c atof-generic.c bignum-copy.c \
|
|||
CFLAGS+= -I$(.CURDIR) ${ADDINCLUDE} -I$(.CURDIR)/config \
|
||||
-DPIC -DOLD_GAS -DSIGTY=void -Derror=as_fatal \
|
||||
-DSUB_SEGMENT_ALIGN=4
|
||||
#LDADD+= -lgnumalloc
|
||||
#DPADD+= /usr/lib/libgnumalloc.a
|
||||
DPADD+= ${LIBGNUMALLOC}
|
||||
LDADD+= -lgnumalloc
|
||||
|
||||
CONF_HEADERS= targ-cpu.h obj-format.h host.h targ-env.h
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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 <bsd.prog.mk>
|
||||
|
|
|
|||
Loading…
Reference in a new issue