diff options
author | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-11-20 22:12:59 +0100 |
---|---|---|
committer | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-11-20 22:26:31 +0100 |
commit | cf2a657abb186466d63cd00e3bea9fa9c533a89d (patch) | |
tree | 082f6be9b5775f6509655c5b1f2e191d54348cb3 | |
parent | 463ec3c10647c7962f7dcfdff94c4a80672d8bca (diff) | |
download | xmr-stak-cf2a657abb186466d63cd00e3bea9fa9c533a89d.zip xmr-stak-cf2a657abb186466d63cd00e3bea9fa9c533a89d.tar.gz |
fix windows compile guide
add explicit note that VSC v141 must be used for AMD and CPU compile.
-rw-r--r-- | doc/compile_Windows.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/compile_Windows.md b/doc/compile_Windows.md index 532348c..dd7af1e 100644 --- a/doc/compile_Windows.md +++ b/doc/compile_Windows.md @@ -81,15 +81,19 @@ mkdir build cd build ``` - - with CUDA 8 + - for CUDA 8* ``` cmake -G "Visual Studio 15 2017 Win64" -T v140,host=x64 .. ``` - - with CUDA 9 + - for CUDA 9 and/or AMD GPUs, CPU ``` cmake -G "Visual Studio 15 2017 Win64" -T v141,host=x64 .. ``` ``` cmake --build . --config Release --target install cd bin\Release + copy C:\xmr-stak-dep\openssl\bin\* . ``` + +\* Miner is also compiled for AMD GPUs (if the AMD APP SDK is installed) and CPUs. +CUDA 8 requires a downgrade to the old v140 tool chain. |