mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
build fix for non-windows platforms
This commit is contained in:
parent
4cd1efc50e
commit
eccf03aaac
|
@ -65,6 +65,7 @@ def parse_options():
|
|||
'silent',
|
||||
'force',
|
||||
'nojava',
|
||||
'nodotnet',
|
||||
'githash'
|
||||
])
|
||||
for opt, arg in options:
|
||||
|
@ -95,7 +96,7 @@ def check_build_dir(path):
|
|||
# Create a build directory using mk_make.py
|
||||
def mk_build_dir(path):
|
||||
if not check_build_dir(path) or FORCE_MK:
|
||||
opts = ["python", os.path.join('scripts', 'mk_make.py'), "-b", path, "--static"]
|
||||
opts = ["python", os.path.join('scripts', 'mk_make.py'), "-b", path, "--staticlib"]
|
||||
if DOTNET_ENABLED:
|
||||
opts.append('--dotnet')
|
||||
if JAVA_ENABLED:
|
||||
|
|
Loading…
Reference in a new issue