Skip to content

Commit

Permalink
fix typos POLING -> POLLING in setup.py and remove unused CFLAGS
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <[email protected]>
  • Loading branch information
NikolajBjorner committed Nov 21, 2024
1 parent 71bad71 commit 3672575
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pyodide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
cd src/api/python
CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CXXFLAG="${CXXFLAGS}" ~/env/bin/pyodide build --exports whole_archive
env:
CFLAGS: "-fexceptions -s DISABLE_EXCEPTION_CATCHING=0 -g2 -s SAFE_HEAP=0 -s PTHREAD_POOL_SIZE=0 -s PTHREAD_POOL_SIZE_STRICT=0"
CFLAGS: "-fexceptions -s DISABLE_EXCEPTION_CATCHING=0 -g2"
LDFLAGS: "-fexceptions -s WASM_BIGINT"
CXXFLAGS: "-fexceptions -s DISABLE_EXCEPTION_CATCHING=0"

Expand Down
2 changes: 1 addition & 1 deletion src/api/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 3672575

Please sign in to comment.