Skip to content

Commit

Permalink
Update common.py
Browse files Browse the repository at this point in the history
Disable z3 solver requirement in base; can re-enable it and ship a custom z3 if needed.
  • Loading branch information
artemdinaburg authored May 16, 2020
1 parent 7b415f5 commit d88a778
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgman/installers/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ def common_installer_llvm(properties):
cmake_command = ["cmake"] + get_env_compiler_settings() + get_cmake_build_type(debug) + ["-DCMAKE_INSTALL_PREFIX=" + destination_path,
"-DCMAKE_CXX_STANDARD="+cppstd, "-DLLVM_TARGETS_TO_BUILD=" + arch_list,
"-DLLVM_ENABLE_RTTI=ON", "-DLLVM_INCLUDE_EXAMPLES=OFF",
"-DLLVM_INCLUDE_TESTS=OFF"]
"-DLLVM_INCLUDE_TESTS=OFF", "-DLLVM_ENABLE_Z3_SOLVER=OFF"]

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

0 comments on commit d88a778

Please sign in to comment.