forked from mirrors/nixpkgs
solc: build with cvc4 support
n.b. that cvc4 support is required for the tests to pass
This commit is contained in:
parent
fbf323b6fd
commit
917ce8e48f
|
@ -1,9 +1,10 @@
|
|||
{ stdenv, fetchzip, boost, cmake, ncurses, python2
|
||||
, z3Support ? true, z3 ? null
|
||||
, z3Support ? true, z3 ? null, cvc4Support ? true, cvc4 ? null
|
||||
, cln ? null, gmp ? null
|
||||
}:
|
||||
|
||||
assert z3Support -> z3 != null;
|
||||
assert z3Support -> stdenv.lib.versionAtLeast z3.version "4.6.0";
|
||||
assert z3Support -> z3 != null && stdenv.lib.versionAtLeast z3.version "4.6.0";
|
||||
assert cvc4Support -> cvc4 != null && cln != null && gmp != null;
|
||||
|
||||
let
|
||||
jsoncppURL = https://github.com/open-source-parsers/jsoncpp/archive/1.8.4.tar.gz;
|
||||
|
@ -37,10 +38,14 @@ stdenv.mkDerivation rec {
|
|||
"-DBUILD_SHARED_LIBS=ON"
|
||||
] ++ stdenv.lib.optionals (!z3Support) [
|
||||
"-DUSE_Z3=OFF"
|
||||
] ++ stdenv.lib.optionals (!cvc4Support) [
|
||||
"-DUSE_CVC4=OFF"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ boost ] ++ stdenv.lib.optionals z3Support [ z3 ];
|
||||
buildInputs = [ boost ]
|
||||
++ stdenv.lib.optionals z3Support [ z3 ]
|
||||
++ stdenv.lib.optionals cvc4Support [ cvc4 cln gmp ];
|
||||
checkInputs = [ ncurses python2 ];
|
||||
|
||||
# Test fails on darwin for unclear reason
|
||||
|
|
Loading…
Reference in a new issue