1
0
Fork 0
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:
Eelco Dolstra 2010-10-20 11:38:30 +00:00
parent b0c11cda7e
commit e879a0371b
5 changed files with 29 additions and 15 deletions

View file

@ -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