Build starcoin from source.
Clone source code
git clone https://github.com/starcoinorg/starcoin.git cd starcoinSetup build environment
./scripts/dev_setup.shIf your operating system is CentOS 6.x , then use such commands to install some toolset.
yum install centos-release-scl yum install devtoolset-7 . /opt/rh/devtoolset-7/enableRun debug build
cargo buildRun release build
cargo build --release
The debug version starcoin at target/debug/starcoin, and release version at target/release/starcoin.




