Skip to content

Commit d88a778

Browse files
Update common.py
Disable z3 solver requirement in base; can re-enable it and ship a custom z3 if needed.
1 parent 7b415f5 commit d88a778

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkgman/installers/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ def common_installer_llvm(properties):
584584
cmake_command = ["cmake"] + get_env_compiler_settings() + get_cmake_build_type(debug) + ["-DCMAKE_INSTALL_PREFIX=" + destination_path,
585585
"-DCMAKE_CXX_STANDARD="+cppstd, "-DLLVM_TARGETS_TO_BUILD=" + arch_list,
586586
"-DLLVM_ENABLE_RTTI=ON", "-DLLVM_INCLUDE_EXAMPLES=OFF",
587-
"-DLLVM_INCLUDE_TESTS=OFF"]
587+
"-DLLVM_INCLUDE_TESTS=OFF", "-DLLVM_ENABLE_Z3_SOLVER=OFF"]
588588

589589
if properties["ccache"]:
590590
print(" i Enabling ccache on /cache ... ")

0 commit comments

Comments
 (0)