boost: Disable Python / Numpy support by default
We can't have a C++ library pulling in Numpy and its gazillion dependencies by default.
This commit is contained in:
parent
c8ed322b04
commit
772eef9168
@ -9,8 +9,8 @@
|
|||||||
, enableMultiThreaded ? true
|
, enableMultiThreaded ? true
|
||||||
, enableShared ? !(hostPlatform.libc == "msvcrt") # problems for now
|
, enableShared ? !(hostPlatform.libc == "msvcrt") # problems for now
|
||||||
, enableStatic ? !enableShared
|
, enableStatic ? !enableShared
|
||||||
, enablePython ? hostPlatform == buildPlatform
|
, enablePython ? false
|
||||||
, enableNumpy ? enablePython && stdenv.lib.versionAtLeast version "1.65"
|
, enableNumpy ? false
|
||||||
, taggedLayout ? ((enableRelease && enableDebug) || (enableSingleThreaded && enableMultiThreaded) || (enableShared && enableStatic))
|
, taggedLayout ? ((enableRelease && enableDebug) || (enableSingleThreaded && enableMultiThreaded) || (enableShared && enableStatic))
|
||||||
, patches ? []
|
, patches ? []
|
||||||
, mpi ? null
|
, mpi ? null
|
||||||
|
Loading…
x
Reference in New Issue
Block a user