summary refs log tree commit diff
path: root/pkgs/development/libraries/boost/1.41.0.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/boost/1.41.0.nix')
-rw-r--r--pkgs/development/libraries/boost/1.41.0.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/libraries/boost/1.41.0.nix b/pkgs/development/libraries/boost/1.41.0.nix
index 7b1166fb656f..1bd500e270a2 100644
--- a/pkgs/development/libraries/boost/1.41.0.nix
+++ b/pkgs/development/libraries/boost/1.41.0.nix
@@ -5,6 +5,7 @@
 , enableMultiThreaded ? true
 , enableShared ? true
 , enableStatic ? false
+, enablePIC ? false
 }:
 
 let
@@ -27,6 +28,8 @@ let
     (enableShared && enableStatic)) then
     "tagged" else "system";
 
+  cflags = if (enablePIC) then "cflags=-fPIC cxxflags=-fPIC linkflags=-fPIC" else "";
+
 in
 
 stdenv.mkDerivation {
@@ -48,7 +51,7 @@ stdenv.mkDerivation {
   configureScript = "./bootstrap.sh";
   configureFlags = "--with-icu=${icu} --with-python=${python}/bin/python";
 
-  buildPhase = "./bjam -sEXPAT_INCLUDE=${expat}/include -sEXPAT_LIBPATH=${expat}/lib --layout=${finalLayout} variant=${variant} threading=${threading} link=${link} install";
+  buildPhase = "./bjam -sEXPAT_INCLUDE=${expat}/include -sEXPAT_LIBPATH=${expat}/lib --layout=${finalLayout} variant=${variant} threading=${threading} link=${link} ${cflags} install";
 
   installPhase = ":";
 }