diff --git a/FREEBSDCOMPILE.md b/FREEBSDCOMPILE.md index af70fb80..230ce73a 100644 --- a/FREEBSDCOMPILE.md +++ b/FREEBSDCOMPILE.md @@ -2,7 +2,7 @@ ## Install Dependencies -*Note: This guide is tested for FreeBSD 11.0-RELEASE using the 'dev' branch* +*Note: This guide is tested for FreeBSD 11.0-RELEASE* From the root shell, run the following commands: @@ -17,4 +17,4 @@ Type 'y' and hit enter to proceed with installing the packages. Now you have the binary located at "bin/xmr-stak-cpu". Either move this file to your desired location or run "make install" to install it to your path. -You can edit the prebuilt [config.txt](config.txt) file found in the root of the repository or you can make your own. This file is required to run xmr-stak-cpu. \ No newline at end of file +You can edit the prebuilt [config.txt](config.txt) file found in the root of the repository or you can make your own. This file is required to run xmr-stak-cpu. diff --git a/LINUXCOMPILE.md b/LINUXCOMPILE.md index 396d2784..75b6769c 100644 --- a/LINUXCOMPILE.md +++ b/LINUXCOMPILE.md @@ -5,17 +5,23 @@ # Ubuntu / Debian sudo apt-get install libmicrohttpd-dev libssl-dev cmake build-essential libhwloc-dev cmake . + make install + + # Arch + sudo pacman -S base-devel hwloc openssl cmake libmicrohttpd + cmake . + make install # Fedora sudo dnf install gcc gcc-c++ hwloc-devel libmicrohttpd-devel openssl-devel cmake cmake . + make install # CentOS sudo yum install centos-release-scl cmake3 hwloc-devel libmicrohttpd-devel openssl-devel sudo yum install devtoolset-4-gcc* sudo scl enable devtoolset-4 bash cmake3 . - make install ```