diff options
author | Martin Nowack <m.nowack@imperial.ac.uk> | 2019-07-25 16:24:16 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-07-30 12:38:24 +0100 |
commit | 7547a1a17d93e68b62b942253e0c14fd324d1b75 (patch) | |
tree | deff3ad9fa0e0627dcf789256629a3b9139eb393 /scripts/build | |
parent | e0103f5c669960bca6bfefbb254802ba57442900 (diff) | |
download | klee-7547a1a17d93e68b62b942253e0c14fd324d1b75.tar.gz |
Provide klee runtime build type as parameter
Allow to build klee runtime with different build parameters using the build script.
Diffstat (limited to 'scripts/build')
-rw-r--r-- | scripts/build/p-klee.inc | 2 | ||||
-rw-r--r-- | scripts/build/v-klee.inc | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/scripts/build/p-klee.inc b/scripts/build/p-klee.inc index 8479a2ca..a1520f83 100644 --- a/scripts/build/p-klee.inc +++ b/scripts/build/p-klee.inc @@ -138,6 +138,8 @@ fi else CMAKE_ARGUMENTS+=("-DCMAKE_BUILD_TYPE=Debug") fi + + CMAKE_ARGUMENTS+=("-DKLEE_RUNTIME_BUILD_TYPE=${KLEE_RUNTIME_BUILD}") # TODO: We should support Ninja too # Configure KLEE diff --git a/scripts/build/v-klee.inc b/scripts/build/v-klee.inc index 62fdf9dd..5f7d9fca 100644 --- a/scripts/build/v-klee.inc +++ b/scripts/build/v-klee.inc @@ -1,6 +1,7 @@ # Build information for KLEE required_variables_klee=( "COVERAGE" + "KLEE_RUNTIME_BUILD" "USE_TCMALLOC" "USE_LIBCXX" ) |