diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2020-11-06 16:23:31 +0000 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2020-11-09 19:39:13 +0000 |
commit | 0d705e4aef74f22e80ad84112c9e85268b1d2f7d (patch) | |
tree | 53a476c3aedcae8546ce69d1e9a61c51d2caacba /runtime/CMakeLists.txt | |
parent | 4547882135af886e002d134d6bb5b510f7c73a06 (diff) | |
download | klee-0d705e4aef74f22e80ad84112c9e85268b1d2f7d.tar.gz |
Added fortified library (for -D_FORTIFY_SOURCE), to be linked when uclibc is used.
Diffstat (limited to 'runtime/CMakeLists.txt')
-rw-r--r-- | runtime/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index 9bd1442b..ea8335de 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -91,11 +91,13 @@ endforeach () add_subdirectory(Freestanding) add_subdirectory(Intrinsic) add_subdirectory(klee-libc) +add_subdirectory(Fortify) set(RUNTIME_LIBRARIES RuntimeFreestanding RuntimeIntrinsic RuntimeKLEELibc + RuntimeFortify ) if (ENABLE_KLEE_EH_CXX) |