mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 04:03:39 +00:00
Python 3.x issues
This commit is contained in:
parent
7287478370
commit
64fa2db3ff
|
@ -245,7 +245,7 @@ def cp_vs_runtime_core(x64):
|
||||||
|
|
||||||
else:
|
else:
|
||||||
platform = "x86"
|
platform = "x86"
|
||||||
vcdir = subprocess.check_output(['echo', '%VCINSTALLDIR%'], shell=True).rstrip('\r\n')
|
vcdir = os.environ['VCINSTALLDIR']
|
||||||
path = '%sredist\\%s' % (vcdir, platform)
|
path = '%sredist\\%s' % (vcdir, platform)
|
||||||
VS_RUNTIME_FILES = []
|
VS_RUNTIME_FILES = []
|
||||||
os.path.walk(path, cp_vs_runtime_visitor, '*.dll')
|
os.path.walk(path, cp_vs_runtime_visitor, '*.dll')
|
||||||
|
|
Loading…
Reference in a new issue