summaryrefslogtreecommitdiffstats
path: root/WINCOMPILE.md
blob: 603ce5cef09224d00ce8ca00a897bac810994226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# Compile **xmr-stak** for Windows

## Install Dependencies

### Preparation

- open a command line `cmd`
- run `mkdir C:\xmr-stak-dep`

### Visual Studio 2017 Community

- download VS2017 Community and install from [https://www.visualstudio.com/downloads/](https://www.visualstudio.com/downloads/)
- during the install chose the components
  - `Desktop development with C++` (left side)
  - `Toolset for Visual Studio C++ 2015.3 v140...` (right side)

### CMake for Win64

- download and install the latest version from [https://cmake.org/download/](https://cmake.org/download/)
- tested version: [cmake 3.9](https://cmake.org/files/v3.9/cmake-3.9.0-rc3-win64-x64.msi)
- during the install choose the option `Add CMake to the system PATH for all users`

### OpenSSL for Win64

- download and install the precompiled binary form [https://slproweb.com/products/Win32OpenSSL.html](https://slproweb.com/products/Win32OpenSSL.html)
- tested version: [OpenSSL 1.0.2L](https://slproweb.com/download/Win64OpenSSL-1_0_2L.exe)

### Hwloc for Win64

- download the precompiled binary from [https://www.open-mpi.org/software/hwloc/v1.11/](https://www.open-mpi.org/software/hwloc/v1.11/)
- tested version: [hwloc-win64-build-1.11.7](https://www.open-mpi.org/software/hwloc/v1.11/downloads/hwloc-win64-build-1.11.7.zip)
- unzip hwloc to `C:\xmr-stak-dep`

### Microhttpd for Win32

- download the precompiled binary from [http://ftpmirror.gnu.org/libmicrohttpd/](http://ftpmirror.gnu.org/libmicrohttpd/)
- tested version: [libmicrohttpd-0.9.55-w32-bin](http://mirror.reismil.ch/gnu/libmicrohttpd/libmicrohttpd-0.9.55-w32-bin.zip)
- unzip microhttpd to ``C:\xmr-stak-dep`

### Validate the Dependency Folder

- open a command line `cmd`
- run
   ```
   cd c:\xmr-stak-dep
   tree .
   ```
- the result should have the same structure
  ```
    C:\XMR-STAK-DEP
    ├───hwloc-win64-build-1.11.7
    │   ├───bin
    │   ├───include
    │   │   └───hwloc
    │   │       └───autogen
    │   ├───lib
    │   │   └───pkgconfig
    │   └───share
    │       ├───doc
    │       │   └───hwloc
    │       ├───hwloc
    │       └───man
    │           ├───man1
    │           ├───man3
    │           └───man7
    └───libmicrohttpd-0.9.55-w32-bin
        ├───x86
        │   ├───MinGW
        │   │   ├───shared
        │   │   │   └───mingw32
        │   │   │       ├───bin
        │   │   │       ├───include
        │   │   │       └───lib
        │   │   │           └───pkgconfig
        │   │   ├───shared-xp
        │   │   │   └───mingw32
        │   │   │       ├───bin
        │   │   │       ├───include
        │   │   │       └───lib
        │   │   │           └───pkgconfig
        │   │   ├───static
        │   │   │   └───mingw32
        │   │   │       ├───include
        │   │   │       └───lib
        │   │   │           └───pkgconfig
        │   │   └───static-xp
        │   │       └───mingw32
        │   │           ├───include
        │   │           └───lib
        │   │               └───pkgconfig
        │   ├───VS2013
        │   │   ├───Release-dll
        │   │   ├───Release-dll-xp
        │   │   ├───Release-static
        │   │   └───Release-static-xp
        │   ├───VS2015
        │   │   ├───Debug-dll
        │   │   ├───Debug-dll-xp
        │   │   ├───Debug-static
        │   │   ├───Debug-static-xp
        │   │   ├───Release-dll
        │   │   ├───Release-dll-xp
        │   │   ├───Release-static
        │   │   └───Release-static-xp
        │   └───VS2017
        │       ├───Debug-dll
        │       ├───Debug-static
        │       ├───Release-dll
        │       └───Release-static
        └───x86_64
            ├───MinGW
            │   ├───shared
            │   │   └───mingw64
            │   │       ├───bin
            │   │       ├───include
            │   │       └───lib
            │   │           └───pkgconfig
            │   └───static
            │       └───mingw64
            │           ├───include
            │           └───lib
            │               └───pkgconfig
            ├───VS2013
            │   ├───Release-dll
            │   └───Release-static
            ├───VS2015
            │   ├───Debug-dll
            │   ├───Debug-static
            │   ├───Release-dll
            │   └───Release-static
            └───VS2017
                ├───Debug-dll
                ├───Debug-static
                ├───Release-dll
                └───Release-static
  ```

## Compile

- download and unzip `xmr-stak-cpu`
- open a command line `cmd`
- `cd` to your unzipped source code directory
- execute the following commands (NOTE: path to VS2017 can be different)
  ```
  "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat"
  set CMAKE_PREFIX_PATH=C:\xmr-stak-dep\hwloc-win64-build-1.11.7;C:\xmr-stak-dep\libmicrohttpd-0.9.55-w32-bin\x86_64\VS2017\Release-static
  mkdir build
  cd build
  cmake -G "Visual Studio 15 2017 Win64" -T v141,host=x64 ..
  msbuild xmr-stak-cpu.sln /p:Configuration=Release
  cd bin\Release
  copy C:\xmr-stak-dep\hwloc-win64-build-1.11.7\bin\libhwloc-5.dll .
  copy ..\..\..\config.txt .
  ```
- customize your `config.txt` file by adding the pool, username and password
OpenPOWER on IntegriCloud