diff options
author | Gleb Popov <6yearold@gmail.com> | 2022-02-28 14:39:48 +0300 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2022-04-28 14:44:06 -0700 |
commit | 1a1b60e82f351baf5b72bf5d7cf740e34378f0bc (patch) | |
tree | c0ded8c48ec9d370f48d95adfe6bd8009a93d7f2 /scripts/build | |
parent | 33bac31837938c0fdc143022ae8498beb57510a8 (diff) | |
download | klee-1a1b60e82f351baf5b72bf5d7cf740e34378f0bc.tar.gz |
Make Uclibc support a runtime option, not a compile-time one.
Diffstat (limited to 'scripts/build')
-rw-r--r-- | scripts/build/p-klee.inc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/build/p-klee.inc b/scripts/build/p-klee.inc index 4137cac0..1c7d39a5 100644 --- a/scripts/build/p-klee.inc +++ b/scripts/build/p-klee.inc @@ -34,13 +34,11 @@ build_klee() { if [ "${UCLIBC_VERSION}" != "0" ]; then CMAKE_ARGUMENTS+=( - "-DENABLE_KLEE_UCLIBC=TRUE" "-DKLEE_UCLIBC_PATH=${BASE}/klee-uclibc-${LLVM_VERSION_SHORT}" "-DENABLE_POSIX_RUNTIME=TRUE" ) else CMAKE_ARGUMENTS+=( - "-DENABLE_KLEE_UCLIBC=FALSE" "-DENABLE_POSIX_RUNTIME=FALSE" ) fi |