Skip to content
Snippets Groups Projects
Commit daf88f85 authored by Robert Martin-Legene's avatar Robert Martin-Legene
Browse files

No soportado por BFA. Proba el docker que tiene solc.

parent 52b72ab6
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
trap "exit 1" ERR
set -x
source ${BFAHOME}/lib/versions
test -d ~/new || mkdir ~/new
cd ~/new
if [ -d "solidity" ]
then
cd solidity
git checkout develop
git pull
else
git clone --recursive https://github.com/ethereum/solidity.git
cd solidity
fi
git checkout ${solidity_tag}
scripts/install_deps.sh
mkdir -p build
cd build
cmake .. -DUSE_Z3=OFF
make solc
install --owner=bfa --target-directory=$( echo ~bfa )/bin solc/solc
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment