mirror of
https://github.com/NixOS/nix
synced 2025-07-07 01:51:47 +02:00
* Use the Boehm garbage collector to reclaim unused memory in the Nix
expression evaluator.
This commit is contained in:
parent
b0c11cda7e
commit
e879a0371b
5 changed files with 29 additions and 15 deletions
|
@ -3,7 +3,8 @@ bin_PROGRAMS = nix-instantiate
|
|||
nix_instantiate_SOURCES = nix-instantiate.cc help.txt
|
||||
nix_instantiate_LDADD = ../libmain/libmain.la ../libexpr/libexpr.la \
|
||||
../libstore/libstore.la ../libutil/libutil.la \
|
||||
../boost/format/libformat.la @ADDITIONAL_NETWORK_LIBS@
|
||||
../boost/format/libformat.la @ADDITIONAL_NETWORK_LIBS@ \
|
||||
-L/home/eelco/Dev/nix/boehmgc/lib -lgc
|
||||
|
||||
nix-instantiate.o: help.txt.hh
|
||||
|
||||
|
@ -12,4 +13,6 @@ nix-instantiate.o: help.txt.hh
|
|||
|
||||
AM_CXXFLAGS = \
|
||||
-I$(srcdir)/.. -I$(srcdir)/../libutil -I$(srcdir)/../libstore \
|
||||
-I$(srcdir)/../libexpr -I$(srcdir)/../libmain -I../libexpr
|
||||
-I$(srcdir)/../libexpr -I$(srcdir)/../libmain -I../libexpr \
|
||||
-I/home/eelco/Dev/nix/boehmgc/include
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue