mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Install & use cmake provided by scripts/install_cmake.sh for emscripten
This commit is contained in:
parent
0b49fd3493
commit
a49dac8057
@ -18,6 +18,8 @@ esac
|
||||
|
||||
BIN=$PREFIX/bin
|
||||
|
||||
PATH=$PREFIX/bin:$PATH
|
||||
|
||||
if test -f $BIN/cmake && ($BIN/cmake --version | grep -q "$VERSION"); then
|
||||
echo "CMake $VERSION already installed in $BIN"
|
||||
else
|
||||
|
@ -40,6 +40,12 @@ if ! type git &>/dev/null; then
|
||||
apt-get -y install git-core
|
||||
fi
|
||||
|
||||
if ! type wget &>/dev/null; then
|
||||
# We need wget to install cmake
|
||||
apt-get update
|
||||
apt-get -y install wget
|
||||
fi
|
||||
|
||||
WORKSPACE=/root/project
|
||||
|
||||
# Increase nodejs stack size
|
||||
@ -67,6 +73,10 @@ rm -rf b2 libs doc tools more bin.v2 status
|
||||
)
|
||||
echo -en 'travis_fold:end:compiling_boost\\r'
|
||||
|
||||
echo -en 'travis_fold:start:install_cmake.sh\\r'
|
||||
source $WORKSPACE/scripts/install_cmake.sh
|
||||
echo -en 'travis_fold:end:install_cmake.sh\\r'
|
||||
|
||||
# Build dependent components and solidity itself
|
||||
echo -en 'travis_fold:start:compiling_solidity\\r'
|
||||
cd $WORKSPACE
|
||||
|
Loading…
Reference in New Issue
Block a user