From 5a1114ecdbbd115ec8aeb1a98326d793ff3e8058 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 23 Nov 2013 20:19:36 +0000 Subject: 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. --- src/libmain/Makefile.new | 2 -- src/libmain/shared.cc | 20 -------------------- 2 files changed, 22 deletions(-) (limited to 'src/libmain') diff --git a/src/libmain/Makefile.new b/src/libmain/Makefile.new index 86323dbd48ae..6ca49d583839 100644 --- a/src/libmain/Makefile.new +++ b/src/libmain/Makefile.new @@ -5,5 +5,3 @@ libmain_DIR := $(d) libmain_SOURCES = shared.cc stack.cc libmain_LIBS = libstore libutil libformat - -libmain_LDFLAGS_PROPAGATED = $(BDW_GC_LIBS) diff --git a/src/libmain/shared.cc b/src/libmain/shared.cc index b0b69f7f617d..8df2a7f52a52 100644 --- a/src/libmain/shared.cc +++ b/src/libmain/shared.cc @@ -15,10 +15,6 @@ #include #include -#if HAVE_BOEHMGC -#include -#endif - namespace nix { @@ -231,14 +227,6 @@ static void initAndRun(int argc, char * * argv) } -/* Called when the Boehm GC runs out of memory. */ -static void * oomHandler(size_t requested) -{ - /* Convert this to a proper C++ exception. */ - throw std::bad_alloc(); -} - - void showManPage(const string & name) { string cmd = "man " + name; @@ -268,14 +256,6 @@ int main(int argc, char * * argv) std::ios::sync_with_stdio(false); -#if HAVE_BOEHMGC - /* Initialise the Boehm garbage collector. This isn't necessary - on most platforms, but for portability we do it anyway. */ - GC_INIT(); - - GC_oom_fn = oomHandler; -#endif - try { try { initAndRun(argc, argv); -- cgit 1.4.1