mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
Migrate from deprecated distutils.sysconfig
in scripts (#5729)
This commit is contained in:
parent
78222f274c
commit
f11fcec082
|
@ -15,7 +15,7 @@ import shutil
|
||||||
from mk_exception import *
|
from mk_exception import *
|
||||||
import mk_genfile_common
|
import mk_genfile_common
|
||||||
from fnmatch import fnmatch
|
from fnmatch import fnmatch
|
||||||
import distutils.sysconfig
|
import sysconfig
|
||||||
import compileall
|
import compileall
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ CXX_COMPILERS=['g++', 'clang++']
|
||||||
C_COMPILERS=['gcc', 'clang']
|
C_COMPILERS=['gcc', 'clang']
|
||||||
JAVAC=None
|
JAVAC=None
|
||||||
JAR=None
|
JAR=None
|
||||||
PYTHON_PACKAGE_DIR=distutils.sysconfig.get_python_lib(prefix=getenv("PREFIX", None))
|
PYTHON_PACKAGE_DIR=sysconfig.get_path('purelib')
|
||||||
BUILD_DIR='build'
|
BUILD_DIR='build'
|
||||||
REV_BUILD_DIR='..'
|
REV_BUILD_DIR='..'
|
||||||
SRC_DIR='src'
|
SRC_DIR='src'
|
||||||
|
@ -1611,7 +1611,7 @@ class PythonInstallComponent(Component):
|
||||||
os.path.join(self.pythonPkgDir,'z3'),
|
os.path.join(self.pythonPkgDir,'z3'),
|
||||||
in_prefix=self.in_prefix_install)
|
in_prefix=self.in_prefix_install)
|
||||||
|
|
||||||
if PYTHON_PACKAGE_DIR != distutils.sysconfig.get_python_lib():
|
if PYTHON_PACKAGE_DIR != sysconfig.get_path('purelib'):
|
||||||
out.write('\t@echo Z3Py was installed at \'%s\', make sure this directory is in your PYTHONPATH environment variable.' % PYTHON_PACKAGE_DIR)
|
out.write('\t@echo Z3Py was installed at \'%s\', make sure this directory is in your PYTHONPATH environment variable.' % PYTHON_PACKAGE_DIR)
|
||||||
|
|
||||||
def mk_uninstall(self, out):
|
def mk_uninstall(self, out):
|
||||||
|
@ -2692,7 +2692,7 @@ def mk_config():
|
||||||
print("Python pkg dir: %s" % PYTHON_PACKAGE_DIR)
|
print("Python pkg dir: %s" % PYTHON_PACKAGE_DIR)
|
||||||
if GPROF:
|
if GPROF:
|
||||||
print('gprof: enabled')
|
print('gprof: enabled')
|
||||||
print('Python version: %s' % distutils.sysconfig.get_python_version())
|
print('Python version: %s' % sysconfig.get_python_version())
|
||||||
if is_java_enabled():
|
if is_java_enabled():
|
||||||
print('JNI Bindings: %s' % JNI_HOME)
|
print('JNI Bindings: %s' % JNI_HOME)
|
||||||
print('Java Compiler: %s' % JAVAC)
|
print('Java Compiler: %s' % JAVAC)
|
||||||
|
|
|
@ -99,7 +99,7 @@ if (Z3_INSTALL_PYTHON_BINDINGS)
|
||||||
message(STATUS "CMAKE_INSTALL_PYTHON_PKG_DIR not set. Trying to guess")
|
message(STATUS "CMAKE_INSTALL_PYTHON_PKG_DIR not set. Trying to guess")
|
||||||
execute_process(
|
execute_process(
|
||||||
COMMAND "${PYTHON_EXECUTABLE}" "-c"
|
COMMAND "${PYTHON_EXECUTABLE}" "-c"
|
||||||
"import distutils.sysconfig; print(distutils.sysconfig.get_python_lib())"
|
"import sysconfig; print(sysconfig.get_path('purelib'))"
|
||||||
RESULT_VARIABLE exit_code
|
RESULT_VARIABLE exit_code
|
||||||
OUTPUT_VARIABLE CMAKE_INSTALL_PYTHON_PKG_DIR
|
OUTPUT_VARIABLE CMAKE_INSTALL_PYTHON_PKG_DIR
|
||||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||||
|
|
Loading…
Reference in a new issue