diff options
author | Julian Büning <julian.buening@rwth-aachen.de> | 2020-09-05 20:23:39 +0200 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2020-10-12 11:19:24 +0100 |
commit | b157b068e27b5cdb389a63230c4d2be20f94e3f7 (patch) | |
tree | 2defbc8576a88efc6825fb1aff5ed5f266fc9628 /README-CMake.md | |
parent | 9c445a83bc03ca4a0335e98704feee44183831a6 (diff) | |
download | klee-b157b068e27b5cdb389a63230c4d2be20f94e3f7.tar.gz |
README-CMAKE.md: add C++ related variables
Diffstat (limited to 'README-CMake.md')
-rw-r--r-- | README-CMake.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/README-CMake.md b/README-CMake.md index 2687c86b..b55ba513 100644 --- a/README-CMake.md +++ b/README-CMake.md @@ -45,6 +45,10 @@ cmake -DCMAKE_BUILD_TYPE=Release /path/to/klee/src * `ENABLE_KLEE_ASSERTS` (BOOLEAN) - Enable assertions when building KLEE. +* `ENABLE_KLEE_EH_CXX` (BOOLEAN) - Enable support for C++ Exceptions. + +* `ENABLE_KLEE_LIBCXX` (BOOLEAN) - Enable libcxx for klee. + * `ENABLE_KLEE_UCLIBC` (BOOLEAN) - Enable support for klee-uclibc. * `ENABLE_POSIX_RUNTIME` (BOOLEAN) - Enable POSIX runtime. @@ -70,6 +74,12 @@ cmake -DCMAKE_BUILD_TYPE=Release /path/to/klee/src * `KLEE_ENABLE_TIMESTAMP` (BOOLEAN) - Enable timestamps in KLEE sources. +* `KLEE_LIBCXX_DIR` (STRING) - Path to root directory with libcxx shared object. + +* `KLEE_LIBCXX_INCLUDE_DIR` (STRING) - Path to libcxx include directory. + +* `KLEE_LIBCXXABI_SRC_DIR` (STRING) - Path to libcxxabi source directory. + * `KLEE_UCLIBC_PATH` (STRING) - Path to klee-uclibc root directory. * `KLEE_RUNTIME_BUILD_TYPE` (STRING) - Build type for KLEE's runtimes. |