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

Fixed default library path order in Python API.

This commit is contained in:
Christoph M. Wintersteiger 2017-11-08 17:29:40 +00:00
parent ef800d7b93
commit bf563bbd5f

View file

@ -1672,6 +1672,13 @@ for d in _all_dirs:
except:
pass
if _lib is None:
# If all else failed, ask the system to find it.
try:
_lib = ctypes.CDLL('libz3.%s' % _ext)
except:
pass
if _lib is None:
print("Could not find libz3.%s; consider adding the directory containing it to" % _ext)
print(" - your system's PATH environment variable,")