3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 00:55:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-07-04 06:20:24 +07:00
parent 1517ca907e
commit 8e2ad4e461
7 changed files with 68 additions and 25 deletions

View file

@ -98,6 +98,7 @@ JS_ENABLED=False
PYTHON_INSTALL_ENABLED=False
STATIC_LIB=False
STATIC_BIN=False
ADD_CHECKSUM=True
VER_MAJOR=None
VER_MINOR=None
VER_BUILD=None
@ -2441,6 +2442,8 @@ def mk_config():
static_opt = '/MT'
else:
static_opt = '/MD'
if ADD_CHECKSUM:
extra_opt = ' %s /RELEASE' % extra_opt
maybe_disable_dynamic_base = '/DYNAMICBASE' if ALWAYS_DYNAMIC_BASE else '/DYNAMICBASE:NO'
if DEBUG_MODE:
static_opt = static_opt + 'd'