diff options
author | Duncan Bristow <duncbristow@msn.com> | 2017-07-08 16:12:29 -0600 |
---|---|---|
committer | Duncan Bristow <duncbristow@msn.com> | 2017-07-08 16:12:29 -0600 |
commit | d221adad2ba388a96a9adf75c94dfc7b3d0a6003 (patch) | |
tree | 0af056cfa9c46f3f34213a18b75a0d11b6d0a4b9 | |
parent | 3aeed1431fe62272e85ff5e4ef6a64c4c6bb4455 (diff) | |
download | xmr-stak-d221adad2ba388a96a9adf75c94dfc7b3d0a6003.zip xmr-stak-d221adad2ba388a96a9adf75c94dfc7b3d0a6003.tar.gz |
Added instructions for FreeBSD
-rw-r--r-- | FREEBSDCOMPILE.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/FREEBSDCOMPILE.md b/FREEBSDCOMPILE.md new file mode 100644 index 0000000..af70fb8 --- /dev/null +++ b/FREEBSDCOMPILE.md @@ -0,0 +1,20 @@ +# Compile **xmr-stak** for FreeBSD + +## Install Dependencies + +*Note: This guide is tested for FreeBSD 11.0-RELEASE using the 'dev' branch* + +From the root shell, run the following commands: + + pkg install git libmicrohttpd hwloc cmake + +Type 'y' and hit enter to proceed with installing the packages. + + git clone https://github.com/fireice-uk/xmr-stak-cpu.git + cd xmr-stak-cpu + cmake . + make + +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 |