Skip to content

Instantly share code, notes, and snippets.

@ghosted09
Forked from marcinwol/compile_monero.sh
Created September 6, 2018 06:57
Show Gist options
  • Save ghosted09/789d482ef9acd6a39b8e9b71e7275045 to your computer and use it in GitHub Desktop.
Save ghosted09/789d482ef9acd6a39b8e9b71e7275045 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