From 3cd0bd9543ff26210b571fdb71128a214f091eb9 Mon Sep 17 00:00:00 2001 From: Tony Butler Date: Thu, 3 May 2018 16:00:58 +0100 Subject: Spell check --- doc/compile_Windows.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/compile_Windows.md') diff --git a/doc/compile_Windows.md b/doc/compile_Windows.md index 129596c..cbf0df4 100644 --- a/doc/compile_Windows.md +++ b/doc/compile_Windows.md @@ -83,16 +83,16 @@ - Execute the following commands (NOTE: path to Visual Studio Community 2017 can be different) ``` # Execute next line only if compiling for Cuda 9.1 and using Visual Studio 2017 >= 15.5 (released 12/04/17) - "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 -vcvars_ver=14.11 - + "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 -vcvars_ver=14.11 + "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" ``` - Sometimes Windows will change the directory to `C:\Users\USERNAME\source\` instead of `C:\Users\USERNAME\xmr-stak-\`. If that's the case execute `cd C:\Users\USERNAME\xmr-stak-` followed by: ``` mkdir build - + cd build - + set CMAKE_PREFIX_PATH=C:\xmr-stak-dep\hwloc;C:\xmr-stak-dep\libmicrohttpd;C:\xmr-stak-dep\openssl ``` @@ -104,9 +104,9 @@ - Then execute ``` cmake --build . --config Release --target install - + cd bin\Release - + copy C:\xmr-stak-dep\openssl\bin\* . ``` - Miner is by default compiled for NVIDIA GPUs (if CUDA is installed), AMD GPUs (if the AMD APP SDK is installed) and CPUs. -- cgit v1.1 From 276bb7dc81ad8aece9d9385a9e9d2935f7ec211f Mon Sep 17 00:00:00 2001 From: Tony Butler Date: Sat, 19 May 2018 04:41:35 -0600 Subject: Update for CUDA 9.2 Toolkit --- doc/compile_Windows.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/compile_Windows.md') diff --git a/doc/compile_Windows.md b/doc/compile_Windows.md index cbf0df4..59dfb1f 100644 --- a/doc/compile_Windows.md +++ b/doc/compile_Windows.md @@ -13,7 +13,7 @@ - During install choose following components: - `Desktop development with C++` (left side) - `VC++ 2015.3 v140 toolset for desktop` (right side - **NOT** needed for CUDA 9 or AMD GPU) - - Since release of VS2017 15.5 (12/04/17), require `VC++ 2017 version 15.4 v14.11 toolset` (under tab `Individual Components`, section `Compilers, build tools, and runtimes`), as CUDA 9.1 is not compatible with compiler 14.12.X + - Since release of VS2017 15.5 (12/04/17), require `VC++ 2017 version 15.4 v14.11 toolset` (under tab `Individual Components`, section `Compilers, build tools, and runtimes`), as CUDA 9.x is not compatible with compiler 14.12.X ### CMake for Win64 @@ -82,7 +82,7 @@ - Go to extracted source code directory (e.g. `cd C:\Users\USERNAME\xmr-stak-`) - Execute the following commands (NOTE: path to Visual Studio Community 2017 can be different) ``` - # Execute next line only if compiling for Cuda 9.1 and using Visual Studio 2017 >= 15.5 (released 12/04/17) + # Execute next line only if compiling for Cuda 9.x and using Visual Studio 2017 >= 15.5 (released 12/04/17) "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 -vcvars_ver=14.11 "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" -- cgit v1.1 From b183d30bef3b49fc9c362fcedbe53eb0afca9a48 Mon Sep 17 00:00:00 2001 From: psychocrypt Date: Wed, 30 May 2018 21:18:44 +0200 Subject: fix broken AMD APP SDK download links AMD has removed the AMD APP SDK links from the website. The AMD employes in the AMD formum posted links to there Dropbox where the SDK can be downloaded) --- doc/compile_Windows.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'doc/compile_Windows.md') diff --git a/doc/compile_Windows.md b/doc/compile_Windows.md index 59dfb1f..802d5c5 100644 --- a/doc/compile_Windows.md +++ b/doc/compile_Windows.md @@ -32,7 +32,8 @@ ### AMD APP SDK 3.0 (only needed for AMD GPUs) -- Download and install the latest version from http://developer.amd.com/amd-accelerated-parallel-processing-app-sdk/ +- Download and install the latest version from https://www.dropbox.com/s/gq8vqhelq0m6gj4/AMD-APP-SDKInstaller-v3.0.130.135-GA-windows-F-x64.exe + (do not wonder why it is a link to a dropbox but AMD has removed the SDK downloads, see https://community.amd.com/thread/222855) ### Dependencies OpenSSL/Hwloc and Microhttpd - For CUDA 8*: -- cgit v1.1