3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

fix typos POLING -> POLLING in setup.py and remove unused CFLAGS

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-11-21 11:32:38 -08:00
parent 71bad7159b
commit 36725758eb
2 changed files with 2 additions and 2 deletions

View file

@ -135,7 +135,7 @@ def _configure_z3():
cmake_options = {
# Config Options
'Z3_SINGLE_THREADED' : IS_SINGLE_THREADED, # avoid solving features that use threads
'Z3_POLING_TIMER' : IS_SINGLE_THREADED, # avoid using timer threads
'Z3_POLLING_TIMER' : IS_SINGLE_THREADED, # avoid using timer threads
'Z3_BUILD_PYTHON_BINDINGS' : True,
# Build Options
'CMAKE_BUILD_TYPE' : 'Release',