diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-11-23T20·19+0000 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-11-23T20·19+0000 |
commit | 5a1114ecdbbd115ec8aeb1a98326d793ff3e8058 (patch) | |
tree | fc14cd61a7bfc2b53b28957e0c6f60ac40d1b7d9 /src/libexpr/Makefile.new | |
parent | 06a8ac96e79547c092debfe3b93d78bcb862edc2 (diff) |
Drop the dependency on libgc in libmain
Instead, libexpr now depends on libgc. This means commands like nix-store that don't do any evaluation no longer require libgc.
Diffstat (limited to 'src/libexpr/Makefile.new')
-rw-r--r-- | src/libexpr/Makefile.new | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libexpr/Makefile.new b/src/libexpr/Makefile.new index ded112107fe8..cbae11c53c20 100644 --- a/src/libexpr/Makefile.new +++ b/src/libexpr/Makefile.new @@ -9,6 +9,11 @@ libexpr_SOURCES = \ libexpr_LIBS = libutil libstore libformat +# The dependency on libgc must be propagated (i.e. meaning that +# programs/libraries that use libexpr must explicitly pass -lgc), +# because inline functions in libexpr's header files call libgc. +libexpr_LDFLAGS_PROPAGATED = $(BDW_GC_LIBS) + $(d)/parser-tab.cc $(d)/parser-tab.hh: $(d)/parser.y bison -v -o $(libexpr_DIR)/parser-tab.cc $< -d |