diff options
author | Dan Liew <daniel.liew@imperial.ac.uk> | 2015-10-30 22:26:47 +0000 |
---|---|---|
committer | Dan Liew <daniel.liew@imperial.ac.uk> | 2015-10-30 22:26:47 +0000 |
commit | ad5844ec9d2515654fae8e20f4e4272ddaf3a90f (patch) | |
tree | f8ea32ca0f6b1a8b8531bd0de9ae119766c6644e /.travis/klee.sh | |
parent | 6b0082b01e60ea2361da401694ea5aa7f7a6e966 (diff) | |
download | klee-ad5844ec9d2515654fae8e20f4e4272ddaf3a90f.tar.gz |
Teach TravisCI and the Docker build to use the tagged
"klee_uclibc_v1.0.0" release of uclibc.
Diffstat (limited to '.travis/klee.sh')
-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 |