Skip to content

Instantly share code, notes, and snippets.

@gladiopeace
Forked from marcinwol/compile_monero.sh
Created December 14, 2017 18:45
Show Gist options
  • Save gladiopeace/f7b53e07038b7cfae8979cb247c59b02 to your computer and use it in GitHub Desktop.
Save gladiopeace/f7b53e07038b7cfae8979cb247c59b02 to your computer and use it in GitHub Desktop.
Ubuntu 14:04: compile CPUMiner/minerd (forked by LucasJones & Wolf) for Monero mining
# get git to install it
sudo apt-get install git
# dependencies
sudo apt-get install build-essential autotools-dev autoconf libcurl3 libcurl4-gnutls-dev
# download latest version
git clone https://github.com/wolf9466/cpuminer-multi
cd cpuminer-multi/
# compile
./autogen.sh
CFLAGS="-march=native" ./configure
make
#install
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment