blob: 2240d48c2288375d4d49f7634d07d1a6ac0d17a2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#===------------------------------------------------------------------------===#
#
# The KLEE Symbolic Virtual Machine
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
#===------------------------------------------------------------------------===#
include(CMakePushCheckState)
find_package(Z3)
# Set the default so that if the following is true:
# * Z3 was found
# * ENABLE_SOLVER_Z3 is not already set as a cache variable
#
# then the default is set to `ON`. Otherwise set the default to `OFF`.
# A consequence of this is if we fail to detect Z3 the first time
# subsequent calls to CMake will not change the default.
if (Z3_FOUND)
set(ENABLE_SOLVER_Z3_DEFAULT ON)
else()
set(ENABLE_SOLVER_Z3_DEFAULT OFF)
endif()
option(ENABLE_SOLVER_Z3 "Enable Z3 solver support" ${ENABLE_SOLVER_Z3_DEFAULT})
if (ENABLE_SOLVER_Z3)
message(STATUS "Z3 solver support enabled")
if (Z3_FOUND)
message(STATUS "Found Z3")
set(ENABLE_Z3 1) # For config.h
list(APPEND KLEE_COMPONENT_EXTRA_INCLUDE_DIRS ${Z3_INCLUDE_DIRS})
list(APPEND KLEE_SOLVER_LIBRARIES ${Z3_LIBRARIES})
# Check the signature of `Z3_get_error_msg()`
cmake_push_check_state()
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} ${Z3_LIBRARIES})
check_prototype_definition(Z3_get_error_msg
"Z3_string Z3_get_error_msg(Z3_context c, Z3_error_code err)"
"NULL" "${Z3_INCLUDE_DIRS}/z3.h" HAVE_Z3_GET_ERROR_MSG_NEEDS_CONTEXT)
cmake_pop_check_state()
if (HAVE_Z3_GET_ERROR_MSG_NEEDS_CONTEXT)
message(STATUS "Z3_get_error_msg requires context")
else()
message(STATUS "Z3_get_error_msg does not require context")
endif()
else()
message(FATAL_ERROR "Z3 not found.")
endif()
else()
message(STATUS "Z3 solver support disabled")
set(ENABLE_Z3 0) # For config.h
endif()
|