boost: disable python explicitly in b2Args (#45679)

(cherry picked from commit 3b862a638952c814c49291ca3efa13e8363c77a2)
wip/yesman
Stephen 6 years ago committed by Uli Baum
parent d83273d57d
commit 775d1ecf57
  1. 1
      pkgs/development/libraries/boost/generic.nix

@ -74,6 +74,7 @@ let
] ++ optional (link != "static") "runtime-link=${runtime-link}"
++ optional (variant == "release") "debug-symbols=off"
++ optional (toolset != null) "toolset=${toolset}"
++ optional (!enablePython) "--without-python"
++ optional (mpi != null || hostPlatform != buildPlatform) "--user-config=user-config.jam"
++ optionals (hostPlatform.libc == "msvcrt") [
"threadapi=win32"

Loading…
Cancel
Save