summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--FREEBSDCOMPILE.md4
-rw-r--r--LINUXCOMPILE.md8
2 files changed, 9 insertions, 3 deletions
diff --git a/FREEBSDCOMPILE.md b/FREEBSDCOMPILE.md
index af70fb8..230ce73 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 396d278..75b6769 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
```
OpenPOWER on IntegriCloud