Skip to content
Snippets Groups Projects
Commit 4d0845e1 authored by fireice-uk's avatar fireice-uk
Browse files

Build packages for Arch + extra cleanup

parent aa8eb186
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
## Install Dependencies ## 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: From the root shell, run the following commands:
...@@ -17,4 +17,4 @@ Type 'y' and hit enter to proceed with installing the packages. ...@@ -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. 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. 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
...@@ -5,17 +5,23 @@ ...@@ -5,17 +5,23 @@
# Ubuntu / Debian # Ubuntu / Debian
sudo apt-get install libmicrohttpd-dev libssl-dev cmake build-essential libhwloc-dev sudo apt-get install libmicrohttpd-dev libssl-dev cmake build-essential libhwloc-dev
cmake . cmake .
make install
# Arch
sudo pacman -S base-devel hwloc openssl cmake libmicrohttpd
cmake .
make install
# Fedora # Fedora
sudo dnf install gcc gcc-c++ hwloc-devel libmicrohttpd-devel openssl-devel cmake sudo dnf install gcc gcc-c++ hwloc-devel libmicrohttpd-devel openssl-devel cmake
cmake . cmake .
make install
# CentOS # CentOS
sudo yum install centos-release-scl cmake3 hwloc-devel libmicrohttpd-devel openssl-devel sudo yum install centos-release-scl cmake3 hwloc-devel libmicrohttpd-devel openssl-devel
sudo yum install devtoolset-4-gcc* sudo yum install devtoolset-4-gcc*
sudo scl enable devtoolset-4 bash sudo scl enable devtoolset-4 bash
cmake3 . cmake3 .
make install make install
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment