summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJudemir Ribeiro <33242603+nioroso-x3@users.noreply.github.com>2018-04-05 12:15:09 -0300
committerGitHub <noreply@github.com>2018-04-05 12:15:09 -0300
commit47d49ef13a19ff81a280d8f92a43a935c4908f2b (patch)
treebb7a35bb72118aa66146dbe88b9b4cb7560e7e28 /doc
parentf7eb03c656226da330f3bb0a66282ed7a3b55993 (diff)
downloadxmr-stak-47d49ef13a19ff81a280d8f92a43a935c4908f2b.zip
xmr-stak-47d49ef13a19ff81a280d8f92a43a935c4908f2b.tar.gz
Delete compile_macOS.md
Diffstat (limited to 'doc')
-rw-r--r--doc/compile_macOS.md37
1 files changed, 0 insertions, 37 deletions
diff --git a/doc/compile_macOS.md b/doc/compile_macOS.md
deleted file mode 100644
index 46f1d5b..0000000
--- a/doc/compile_macOS.md
+++ /dev/null
@@ -1,37 +0,0 @@
-# Compile **xmr-stak** for macOS
-
-## Dependencies
-
-Assuming you already have [Homebrew](https://brew.sh) installed, the installation of dependencies is pretty straightforward and will generate the `xmr-stak` binary in the `bin/` directory.
-
-### For NVIDIA GPUs
-
-```shell
-brew tap caskroom/drivers
-brew cask install nvidia-cuda
-brew install hwloc libmicrohttpd gcc openssl cmake
-cmake . -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DOpenCL_ENABLE=OFF
-make install
-```
-
-[All available CMake options](compile.md#nvidia-build-options)
-
-### For AMD GPUs
-
-OpenCL is bundled with Xcode, so no other depedency then the basic ones needed. Just enable OpenCL via the `-DOpenCL_ENABLE=ON` CMake option.
-
-```shell
-brew install hwloc libmicrohttpd gcc openssl cmake
-cmake . -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DCUDA_ENABLE=OFF -DOpenCL_ENABLE=ON
-make install
-```
-
-### For CPU-only mining
-
-```shell
-brew install hwloc libmicrohttpd gcc openssl cmake
-cmake . -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DCUDA_ENABLE=OFF -DOpenCL_ENABLE=OFF
-make install
-```
-
-[All available CMake options](compile.md#cpu-build-options)
OpenPOWER on IntegriCloud