diff options
author | Dan Liew <delcypher@gmail.com> | 2015-10-31 09:41:45 +0000 |
---|---|---|
committer | Dan Liew <delcypher@gmail.com> | 2015-10-31 09:41:45 +0000 |
commit | 25a21e6b91be8524f3c4be7ae352acfe862cc4a4 (patch) | |
tree | 90b0d9b99e9dd30f8b8305870ebdc773f9b162cf /.travis | |
parent | 6b0082b01e60ea2361da401694ea5aa7f7a6e966 (diff) | |
parent | 630c58670ddfce0d472cb0336ea3010387fe4c34 (diff) | |
download | klee-25a21e6b91be8524f3c4be7ae352acfe862cc4a4.tar.gz |
Merge pull request #296 from delcypher/specify_klee_uclibc_version
Specify klee uclibc version
Diffstat (limited to '.travis')
-rwxr-xr-x | .travis/klee.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis/klee.sh b/.travis/klee.sh index 3008c7fb..fbce61e7 100755 --- a/.travis/klee.sh +++ b/.travis/klee.sh @@ -28,8 +28,8 @@ fi ############################################################################### # klee-uclibc ############################################################################### -if [ "${KLEE_UCLIBC}" -eq 1 ]; then - git clone --depth 1 git://github.com/klee/klee-uclibc.git +if [ "${KLEE_UCLIBC}" != "0" ]; then + git clone --depth 1 -b ${KLEE_UCLIBC} git://github.com/klee/klee-uclibc.git cd klee-uclibc ./configure --make-llvm-lib --with-cc "${KLEE_CC}" --with-llvm-config /usr/bin/llvm-config-${LLVM_VERSION} make |