3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 01:24:08 +00:00

rename additional build options #2709

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-11-18 21:07:12 -08:00
parent b50f8508f2
commit 48554f0fb6
8 changed files with 14 additions and 14 deletions

View file

@ -241,8 +241,8 @@ list(APPEND Z3_COMPONENT_EXTRA_INCLUDE_DIRS
################################################################################ ################################################################################
# GNU multiple precision library support # GNU multiple precision library support
################################################################################ ################################################################################
option(USE_LIB_GMP "Use GNU Multiple Precision Library" OFF) option(Z3_USE_LIB_GMP "Use GNU Multiple Precision Library" OFF)
if (USE_LIB_GMP) if (Z3_USE_LIB_GMP)
# Because this is off by default we will make the configure fail if libgmp # Because this is off by default we will make the configure fail if libgmp
# can't be found # can't be found
find_package(GMP REQUIRED) find_package(GMP REQUIRED)

View file

@ -244,7 +244,7 @@ The following useful options can be passed to CMake whilst configuring.
* ``Z3_ENABLE_TRACING_FOR_NON_DEBUG`` - BOOL. If set to ``TRUE`` enable tracing in non-debug builds, if set to ``FALSE`` disable tracing in non-debug builds. Note in debug builds tracing is always enabled. * ``Z3_ENABLE_TRACING_FOR_NON_DEBUG`` - BOOL. If set to ``TRUE`` enable tracing in non-debug builds, if set to ``FALSE`` disable tracing in non-debug builds. Note in debug builds tracing is always enabled.
* ``BUILD_LIBZ3_SHARED`` - BOOL. If set to ``TRUE`` build libz3 as a shared library otherwise build as a static library. * ``BUILD_LIBZ3_SHARED`` - BOOL. If set to ``TRUE`` build libz3 as a shared library otherwise build as a static library.
* ``Z3_ENABLE_EXAMPLE_TARGETS`` - BOOL. If set to ``TRUE`` add the build targets for building the API examples. * ``Z3_ENABLE_EXAMPLE_TARGETS`` - BOOL. If set to ``TRUE`` add the build targets for building the API examples.
* ``USE_LIB_GMP`` - BOOL. If set to ``TRUE`` use the GNU multiple precision library. If set to ``FALSE`` use an internal implementation. * ``Z3_USE_LIB_GMP`` - BOOL. If set to ``TRUE`` use the GNU multiple precision library. If set to ``FALSE`` use an internal implementation.
* ``PYTHON_EXECUTABLE`` - STRING. The python executable to use during the build. * ``PYTHON_EXECUTABLE`` - STRING. The python executable to use during the build.
* ``BUILD_PYTHON_BINDINGS`` - BOOL. If set to ``TRUE`` then Z3's python bindings will be built. * ``BUILD_PYTHON_BINDINGS`` - BOOL. If set to ``TRUE`` then Z3's python bindings will be built.
* ``INSTALL_PYTHON_BINDINGS`` - BOOL. If set to ``TRUE`` and ``BUILD_PYTHON_BINDINGS`` is ``TRUE`` then running the ``install`` target will install Z3's Python bindings. * ``INSTALL_PYTHON_BINDINGS`` - BOOL. If set to ``TRUE`` and ``BUILD_PYTHON_BINDINGS`` is ``TRUE`` then running the ``install`` target will install Z3's Python bindings.

View file

@ -21,7 +21,7 @@ ARG SANITIZER_PRINT_SUPPRESSIONS
ARG TARGET_ARCH ARG TARGET_ARCH
ARG TEST_INSTALL ARG TEST_INSTALL
ARG UBSAN_BUILD ARG UBSAN_BUILD
ARG USE_LIBGMP ARG Z3_USE_LIBGMP
ARG USE_LTO ARG USE_LTO
ARG Z3_SRC_DIR=/home/user/z3_src ARG Z3_SRC_DIR=/home/user/z3_src
ARG Z3_BUILD_TYPE ARG Z3_BUILD_TYPE
@ -50,7 +50,7 @@ ENV \
TARGET_ARCH=${TARGET_ARCH} \ TARGET_ARCH=${TARGET_ARCH} \
TEST_INSTALL=${TEST_INSTALL} \ TEST_INSTALL=${TEST_INSTALL} \
UBSAN_BUILD=${UBSAN_BUILD} \ UBSAN_BUILD=${UBSAN_BUILD} \
USE_LIBGMP=${USE_LIBGMP} \ Z3_USE_LIBGMP=${Z3_USE_LIBGMP} \
USE_LTO=${USE_LTO} \ USE_LTO=${USE_LTO} \
Z3_SRC_DIR=${Z3_SRC_DIR} \ Z3_SRC_DIR=${Z3_SRC_DIR} \
Z3_BUILD_DIR=/home/user/z3_build \ Z3_BUILD_DIR=/home/user/z3_build \

View file

@ -37,7 +37,7 @@ the future.
* `TARGET_ARCH` - Target architecture (`x86_64` or `i686`) * `TARGET_ARCH` - Target architecture (`x86_64` or `i686`)
* `TEST_INSTALL` - Test running `install` target (`0` or `1`) * `TEST_INSTALL` - Test running `install` target (`0` or `1`)
* `UBSAN_BUILD` - Do [UndefinedBehaviourSanitizer](https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html) build (`0` or `1`) * `UBSAN_BUILD` - Do [UndefinedBehaviourSanitizer](https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html) build (`0` or `1`)
* `USE_LIBGMP` - Use [GNU multiple precision library](https://gmplib.org/) (`0` or `1`) * `Z3_USE_LIBGMP` - Use [GNU multiple precision library](https://gmplib.org/) (`0` or `1`)
* `USE_LTO` - Link binaries using link time optimization (`0` or `1`) * `USE_LTO` - Link binaries using link time optimization (`0` or `1`)
* `Z3_BUILD_TYPE` - CMake build type (`RelWithDebInfo`, `Release`, `Debug`, or `MinSizeRel`) * `Z3_BUILD_TYPE` - CMake build type (`RelWithDebInfo`, `Release`, `Debug`, or `MinSizeRel`)
* `Z3_CMAKE_GENERATOR` - CMake generator (`Ninja` or `Unix Makefiles`) * `Z3_CMAKE_GENERATOR` - CMake generator (`Ninja` or `Unix Makefiles`)

View file

@ -12,7 +12,7 @@ set -o pipefail
: ${Z3_BUILD_TYPE?"Z3_BUILD_TYPE must be specified"} : ${Z3_BUILD_TYPE?"Z3_BUILD_TYPE must be specified"}
: ${Z3_CMAKE_GENERATOR?"Z3_CMAKE_GENERATOR must be specified"} : ${Z3_CMAKE_GENERATOR?"Z3_CMAKE_GENERATOR must be specified"}
: ${Z3_STATIC_BUILD?"Z3_STATIC_BUILD must be specified"} : ${Z3_STATIC_BUILD?"Z3_STATIC_BUILD must be specified"}
: ${USE_LIBGMP?"USE_LIBGMP must be specified"} : ${Z3_USE_LIBGMP?"Z3_USE_LIBGMP must be specified"}
: ${BUILD_DOCS?"BUILD_DOCS must be specified"} : ${BUILD_DOCS?"BUILD_DOCS must be specified"}
: ${PYTHON_EXECUTABLE?"PYTHON_EXECUTABLE must be specified"} : ${PYTHON_EXECUTABLE?"PYTHON_EXECUTABLE must be specified"}
: ${PYTHON_BINDINGS?"PYTHON_BINDINGS must be specified"} : ${PYTHON_BINDINGS?"PYTHON_BINDINGS must be specified"}
@ -33,10 +33,10 @@ else
fi fi
# Use LibGMP? # Use LibGMP?
if [ "X${USE_LIBGMP}" = "X1" ]; then if [ "X${Z3_USE_LIBGMP}" = "X1" ]; then
ADDITIONAL_Z3_OPTS+=('-DUSE_LIB_GMP=ON') ADDITIONAL_Z3_OPTS+=('-DZ3_USE_LIB_GMP=ON')
else else
ADDITIONAL_Z3_OPTS+=('-DUSE_LIB_GMP=OFF') ADDITIONAL_Z3_OPTS+=('-DZ3_USE_LIB_GMP=OFF')
fi fi
# Use link time optimziation? # Use link time optimziation?

View file

@ -19,7 +19,7 @@ export SANITIZER_PRINT_SUPPRESSIONS="${SANITIZER_PRINT_SUPPRESSIONS:-0}"
export TARGET_ARCH="${TARGET_ARCH:-x86_64}" export TARGET_ARCH="${TARGET_ARCH:-x86_64}"
export TEST_INSTALL="${TEST_INSTALL:-1}" export TEST_INSTALL="${TEST_INSTALL:-1}"
export UBSAN_BUILD="${UBSAN_BUILD:-0}" export UBSAN_BUILD="${UBSAN_BUILD:-0}"
export USE_LIBGMP="${USE_LIBGMP:-0}" export Z3_USE_LIBGMP="${Z3_USE_LIBGMP:-0}"
export USE_LTO="${USE_LTO:-0}" export USE_LTO="${USE_LTO:-0}"
export Z3_BUILD_TYPE="${Z3_BUILD_TYPE:-RelWithDebInfo}" export Z3_BUILD_TYPE="${Z3_BUILD_TYPE:-RelWithDebInfo}"

View file

@ -30,7 +30,7 @@ if [ "X${Z3_CMAKE_GENERATOR}" = "XNinja" ]; then
brew_install_or_upgrade ninja brew_install_or_upgrade ninja
fi fi
if [ "X${USE_LIBGMP}" = "X1" ]; then if [ "X${Z3_USE_LIBGMP}" = "X1" ]; then
brew_install_or_upgrade gmp brew_install_or_upgrade gmp
fi fi

View file

@ -30,8 +30,8 @@ if [ -n "${Z3_CMAKE_GENERATOR}" ]; then
BUILD_OPTS+=("--build-arg" "Z3_CMAKE_GENERATOR=${Z3_CMAKE_GENERATOR}") BUILD_OPTS+=("--build-arg" "Z3_CMAKE_GENERATOR=${Z3_CMAKE_GENERATOR}")
fi fi
if [ -n "${USE_LIBGMP}" ]; then if [ -n "${Z3_USE_LIBGMP}" ]; then
BUILD_OPTS+=("--build-arg" "USE_LIBGMP=${USE_LIBGMP}") BUILD_OPTS+=("--build-arg" "Z3_USE_LIBGMP=${Z3_USE_LIBGMP}")
fi fi
if [ -n "${BUILD_DOCS}" ]; then if [ -n "${BUILD_DOCS}" ]; then