Skip to content

Compilation & Installation on the Raspberry Pi 3

Fiddy Bux edited this page Feb 9, 2019 · 15 revisions

:::Prerequisites:::

Use the latest version of Raspbian (I only tested this with it).

:::Compilation of Miner:::

First Install Poco by using the command ./install-poco.sh with the shell-script in the creepMiner-folder.

After this open the Makefile with an editor and change under CFLAGS -march=native to -march=armv6 or -march=armv7

Now you can compile by using make command, and the miner should be compiled into the subdirectory /bin

Then edit the run.sh file to:

#!/bin/sh
export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
./creepMiner

Then use sudo ldconfig to update the library cache.

Now you can cd into creepMiner/bin and start the Miner using ./creepMiner.

Clone this wiki locally