mirror of
https://github.com/NixOS/nix
synced 2025-07-06 21:41:48 +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
|
@ -4,7 +4,8 @@ nix_env_SOURCES = nix-env.cc profiles.cc profiles.hh user-env.cc user-env.hh hel
|
|||
|
||||
nix_env_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-env.o: help.txt.hh
|
||||
|
||||
|
@ -14,4 +15,5 @@ nix-env.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