3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

Revert "Disable Python compilation cache during build (#7052)" (#7054)

This reverts commit 8293be859f.
This commit is contained in:
Nikolaj Bjorner 2023-12-13 19:32:00 -08:00 committed by GitHub
parent b40e3015ef
commit f7d9a5ba93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2994,16 +2994,9 @@ def cp_z3py_to_build():
for f in files:
if f.endswith('.pyc'):
rmf(os.path.join(root, f))
# We do not want a second copy of the compiled files in the system-wide cache,
# so we disable it temporarily. This is an issue with recent versions of MacOS
# where XCode's Python has a cache, but the build scripts don't have access to
# it (e.g. during OPAM package installation).
pycache_prefix_before = sys.pycache_prefix
sys.pycache_prefix = None
# Compile Z3Py files
if compileall.compile_dir(z3py_src, force=1) != 1:
raise MKException("failed to compile Z3Py sources")
sys.pycache_prefix = pycache_prefix_before
if is_verbose:
print("Generated python bytecode")
# Copy sources to build