mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
solc: disable z3 strict version check
This commit is contained in:
parent
d0bde75453
commit
e4dfaba506
1 changed files with 6 additions and 3 deletions
|
@ -62,9 +62,12 @@ let
|
|||
|
||||
cmakeFlags = [
|
||||
"-DBoost_USE_STATIC_LIBS=OFF"
|
||||
] ++ lib.optionals (!z3Support) [
|
||||
|
||||
] ++ (if z3Support then [
|
||||
"-DSTRICT_Z3_VERSION=OFF"
|
||||
] else [
|
||||
"-DUSE_Z3=OFF"
|
||||
] ++ lib.optionals (!cvc4Support) [
|
||||
]) ++ lib.optionals (!cvc4Support) [
|
||||
"-DUSE_CVC4=OFF"
|
||||
];
|
||||
|
||||
|
@ -90,7 +93,7 @@ let
|
|||
for i in ./scripts/*.sh ./scripts/*.py ./test/*.sh ./test/*.py; do
|
||||
patchShebangs "$i"
|
||||
done
|
||||
TERM=xterm ./scripts/tests.sh
|
||||
TERM=xterm ./scripts/tests.sh ${if z3Support then "--no-smt" else ""}
|
||||
popd
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue