about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-23T17·48+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-23T17·48+0200
commitbd91453bb146446e4763ea2dbc934dd271fe544b (patch)
tree35ab9744b2919d98d14948e6e9f8ce4cd87780aa
parentece531d1051e1e9e9bad586265d293c866a9c0ec (diff)
Pass -pthread only for programs that need it
-rw-r--r--local.mk1
-rw-r--r--src/nix-daemon/local.mk2
-rw-r--r--src/nix-store/local.mk2
3 files changed, 3 insertions, 2 deletions
diff --git a/local.mk b/local.mk
index cb628fac6022..6361e1872b96 100644
--- a/local.mk
+++ b/local.mk
@@ -5,7 +5,6 @@ endif
 dist-files += configure config.h.in nix.spec
 
 GLOBAL_CXXFLAGS += -I . -I src -I src/libutil -I src/libstore -I src/libmain -I src/libexpr
-GLOBAL_LDFLAGS += -pthread
 
 $(foreach i, config.h $(call rwildcard, src/lib*, *.hh), $(eval $(call install-file-in, $(i), $(includedir)/nix, 0644)))
 
diff --git a/src/nix-daemon/local.mk b/src/nix-daemon/local.mk
index bab84e7addbc..e5538bada0b2 100644
--- a/src/nix-daemon/local.mk
+++ b/src/nix-daemon/local.mk
@@ -6,6 +6,8 @@ nix-daemon_SOURCES := $(d)/nix-daemon.cc
 
 nix-daemon_LIBS = libmain libstore libutil libformat
 
+nix-daemon_LDFLAGS = -pthread
+
 ifeq ($(OS), SunOS)
         nix-daemon_LDFLAGS += -lsocket
 endif
diff --git a/src/nix-store/local.mk b/src/nix-store/local.mk
index dc049f348ff7..b887fe03389b 100644
--- a/src/nix-store/local.mk
+++ b/src/nix-store/local.mk
@@ -6,6 +6,6 @@ nix-store_SOURCES := $(wildcard $(d)/*.cc)
 
 nix-store_LIBS = libmain libstore libutil libformat
 
-nix-store_LDFLAGS = -lbz2
+nix-store_LDFLAGS = -lbz2 -pthread
 
 nix-store_CXXFLAGS = -DCURL=\"$(curl)\"