Skip to content

Instantly share code, notes, and snippets.

@leyanlo
leyanlo / README.md
Last active February 2, 2018 08:43 — forked from quagliero/README.md
Installing cpuminer-multi on macOS 10.13.2 (High Sierra)

Installing cpuminer-multi on macOS 10.13.2 (High Sierra)

This assumes you have brew installed and are comfortable using a terminal.

Following the guide on https://github.com/tpruvot/cpuminer-multi will likely lead to errors about invalid paths to OpenSSL, and neoscrypt errors to the tune of Undefined symbols for architecture x86_64 during the build. I managed to piece together different fixes into an installation that has worked for me. So I hope it works for you.

Requirements

Ensure a c compiler is installed. Type g++ in the terminal and continue with the xcode installation if necessary. If it prints clang: error: no input files, then you can proceed.

@leyanlo
leyanlo / make-app.sh
Last active August 29, 2015 14:06 — forked from demonbane/makeapp.sh
#!/bin/sh
# Inspired by https://gist.github.com/demonbane/1065791
function pure_version() {
echo '0.1'
}
function version() {
echo "make-app $(pure_version)"
}