forked from jprjr/turtlecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1d355d5
commit bdc869f
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env bash | ||
# rocksteady, turtlecoin developers 2017-2018 | ||
# use this installer to clone-and-compile turtlecoin in one line | ||
# supports Ubuntu 16 LTS | ||
|
||
sudo apt-get update | ||
yes "" | sudo apt-get install build-essential python-dev gcc-4.9 g++-4.9 git cmake libboost1.58-all-dev librocksdb-dev | ||
export CXXFLAGS="-std=gnu++11" | ||
git clone https://github.com/turtlecoin/turtlecoin | ||
cd turtlecoin | ||
mkdir build && cd $_ | ||
cmake .. | ||
make |