Skip to content

Instantly share code, notes, and snippets.

@agjunior
Forked from marcinwol/compile_monero.sh
Created June 30, 2017 01:25
Show Gist options
  • Save agjunior/7823be7f764773f4ea6bfa2496ed0e48 to your computer and use it in GitHub Desktop.
Save agjunior/7823be7f764773f4ea6bfa2496ed0e48 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