mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
Fix build on Mac (#6146)
* Fix finding Python on Mac On Mac you have to specify the version. It also works well on other platforms this way. * Ignore CMake build directories from index * Fix warning about unused variable in release The variable is used in debug only, but it's legit that the compiler does not warn us for that in release.
This commit is contained in:
parent
49b7e9084f
commit
8b29f40152
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -46,6 +46,7 @@ bld_rel/*
|
|||
bld_dbg_x64/*
|
||||
bld_rel_x64/*
|
||||
.vscode
|
||||
*build*/**
|
||||
# Auto generated files.
|
||||
config.log
|
||||
config.status
|
||||
|
|
|
@ -160,7 +160,7 @@ list(APPEND Z3_COMPONENT_CXX_DEFINES $<$<CONFIG:RelWithDebInfo>:_EXTERNAL_RELEAS
|
|||
################################################################################
|
||||
# Find Python
|
||||
################################################################################
|
||||
find_package(PythonInterp REQUIRED)
|
||||
find_package(PythonInterp 3 REQUIRED)
|
||||
message(STATUS "PYTHON_EXECUTABLE: ${PYTHON_EXECUTABLE}")
|
||||
|
||||
################################################################################
|
||||
|
|
|
@ -310,7 +310,7 @@ public:
|
|||
}
|
||||
|
||||
void check_size(cell* c) const {
|
||||
unsigned r;
|
||||
[[maybe_unused]] unsigned r;
|
||||
while (c) {
|
||||
switch (c->kind()) {
|
||||
case SET:
|
||||
|
|
Loading…
Reference in a new issue