diff options
author | bloodstalker <thabogre@gmail.com> | 2016-12-13 14:13:28 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-12-13 14:13:28 +0000 |
commit | cc92c66d54eb58e292a7d1bacf6dd03052967a45 (patch) | |
tree | b195d2f96701ea7879bee32830f0275dd527b0c4 /extra-tools/CITPreBuildDep.sh | |
parent | cmake not upgradin on the virtual host (diff) | |
download | mutator-cc92c66d54eb58e292a7d1bacf6dd03052967a45.tar.gz mutator-cc92c66d54eb58e292a7d1bacf6dd03052967a45.zip |
now the script builds cmkae 3.4.3
Diffstat (limited to '')
-rwxr-xr-x | extra-tools/CITPreBuildDep.sh | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/extra-tools/CITPreBuildDep.sh b/extra-tools/CITPreBuildDep.sh index 8aee516..af24215 100755 --- a/extra-tools/CITPreBuildDep.sh +++ b/extra-tools/CITPreBuildDep.sh @@ -1,6 +1,17 @@ #!/bin/bash -"sudo apt-get" install cmake -y +"sudo" apt-get -qq update + +#building cmkae 3.4.3 since the CI Travis virtual host is Ubuntu(???) +"wget" http://www.cmake.org/files/v3.4/cmake-3.4.1.tar.gz +"tar" -xvzf cmake-3.4.3.tar.gz +"cd" cmake-3.4.3/ +"./configure" +"make" +"sudo" make install +"update-alternatives" --install /usr/bin/cmake cmake /usr/local/bin/cmake 1 --force + +#building llvm and clang 4.0.0 "cd" ~ "mkdir" llvm-clang4 "cd" llvm-clang4 |