blob: 153a554604d3bae028613c864d508d5bb1b88990 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#!/bin/bash -x
# Make sure we exit if there is a failure
set -e
if [ "X${USE_CMAKE}" == "X1" ]; then
# The New CMake build system just needs the GTest sources regardless
# of LLVM version.
wget https://github.com/google/googletest/archive/release-1.7.0.zip
unzip release-1.7.0.zip
exit 0
fi
if [ "${LLVM_VERSION}" != "2.9" ]; then
# Using LLVM3.4 all we need is vanilla GoogleTest :)
wget https://github.com/google/googletest/archive/release-1.7.0.zip
unzip release-1.7.0.zip
cd googletest-release-1.7.0/
cmake .
make
# Normally I wouldn't do something like this but hey we're running on a temporary virtual machine, so who cares?
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
sudo cp lib* /usr/lib/
sudo cp -r include/gtest /usr/include
elif [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
sudo cp lib* /usr/local/lib/
sudo cp -r include/gtest /usr/local/include
else
echo "Unhandled TRAVIS_OS_NAME \"${TRAVIS_OS_NAME}\""
exit 1
fi
else
# LLVM2.9 on the other hand is a pain
# We need the version of GoogleTest used in LLVM2.9
# This is a hack
old_dir=`pwd`
cd "${KLEE_SRC}"
cd tools/
svn export http://llvm.org/svn/llvm-project/llvm/branches/release_29/utils/unittest unittest
# Now put the header files in the search path so building will succeed
sudo cp -r unittest/googletest/include/gtest /usr/include/
# We need the FileCheck and not utilites as well because they aren't in the llvm-2.9-dev package
for tool in FileCheck not; do
svn export http://llvm.org/svn/llvm-project/llvm/branches/release_29/utils/${tool} ${tool}
# Patch the Makefile so it will work in KLEE's build system
sed -i 's/^USEDLIBS.*$/LINK_COMPONENTS = support/' ${tool}/Makefile
done
# Now hack the make file to build the unittest library and the FileCheck and not tools
sed -i '0,/^PARALLEL_DIRS/a PARALLEL_DIRS += unittest FileCheck not' Makefile
cd "${old_dir}"
fi
|