Skip to content

Commit

Permalink
Build packages for Arch + extra cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
fireice-uk committed Jul 17, 2017
1 parent aa8eb18 commit 4d0845e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions FREEBSDCOMPILE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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.
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.
8 changes: 7 additions & 1 deletion LINUXCOMPILE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down

0 comments on commit 4d0845e

Please sign in to comment.