Richard Levitte | b32b896 | 2016-03-08 14:44:46 +0100 | [diff] [blame] | 1 | |
| 2 | NOTES FOR THE WINDOWS PLATFORMS |
| 3 | =============================== |
| 4 | |
Andy Polyakov | 97a479c | 2018-03-16 15:39:51 +0100 | [diff] [blame] | 5 | Windows targets can be classified as "native", ones that use Windows API |
| 6 | directly, and "hosted" which rely on POSIX-compatible layer. "Native" |
| 7 | targets are VC-* (where "VC" stems from abbreviating Microsoft Visual C |
| 8 | compiler) and mingw[64]. "Hosted" platforms are Cygwin and MSYS[2]. Even |
| 9 | though the latter is not directly supported by OpenSSL Team, it's #1 |
| 10 | popular choice for building MinGW targets. In the nutshell MinGW builds |
| 11 | are always cross-compiled. On Linux and Cygwin they look exactly as such |
| 12 | and require --cross-compile-prefix option. While on MSYS[2] it's solved |
| 13 | rather by placing gcc that produces "MinGW binary" code 1st on $PATH. |
| 14 | This is customarily source of confusion. "Hosted" applications "live" in |
| 15 | emulated file system name space with POSIX-y root, mount points, /dev |
| 16 | and even /proc. Confusion is intensified by the fact that MSYS2 shell |
| 17 | (or rather emulated execve(2) call) examines the binary it's about to |
| 18 | start, and if it's found *not* to be linked with MSYS2 POSIX-y thing, |
| 19 | command line arguments that look like file names get translated from |
| 20 | emulated name space to "native". For example '/c/some/where' becomes |
| 21 | 'c:\some\where', '/dev/null' - 'nul'. This creates an illusion that |
| 22 | there is no difference between MSYS2 shell and "MinGW binary", but |
| 23 | there is. Just keep in mind that "MinGW binary" "experiences" Windows |
| 24 | system in exactly same way as one produced by VC, and in its essence |
| 25 | is indistinguishable from the latter. (Which by the way is why |
| 26 | it's referred to in quotes here, as "MinGW binary", it's just as |
| 27 | "native" as it can get.) |
| 28 | |
| 29 | Visual C++ builds, a.k.a. VC-* |
| 30 | ============================== |
| 31 | |
| 32 | Requirement details |
| 33 | ------------------- |
Richard Levitte | b32b896 | 2016-03-08 14:44:46 +0100 | [diff] [blame] | 34 | |
Richard Levitte | 07930a7 | 2016-05-23 15:11:04 +0200 | [diff] [blame] | 35 | In addition to the requirements and instructions listed in INSTALL, |
Xiaoyin Liu | 1d7f335 | 2017-07-21 16:13:13 -0400 | [diff] [blame] | 36 | these are required as well: |
Richard Levitte | 07930a7 | 2016-05-23 15:11:04 +0200 | [diff] [blame] | 37 | |
Andy Polyakov | 97a479c | 2018-03-16 15:39:51 +0100 | [diff] [blame] | 38 | - Perl. We recommend ActiveState Perl, available from |
Andy Polyakov | 3a80bd2 | 2017-03-14 21:29:24 +0100 | [diff] [blame] | 39 | https://www.activestate.com/ActivePerl. Another viable alternative |
| 40 | appears to be Strawberry Perl, http://strawberryperl.com. |
Richard Levitte | b32b896 | 2016-03-08 14:44:46 +0100 | [diff] [blame] | 41 | You also need the perl module Text::Template, available on CPAN. |
Richard Levitte | 07930a7 | 2016-05-23 15:11:04 +0200 | [diff] [blame] | 42 | Please read NOTES.PERL for more information. |
Richard Levitte | b32b896 | 2016-03-08 14:44:46 +0100 | [diff] [blame] | 43 | |
Andy Polyakov | 97a479c | 2018-03-16 15:39:51 +0100 | [diff] [blame] | 44 | - Microsoft Visual C compiler. Since we can't test them all, there is |
| 45 | unavoidable uncertainty about which versions are supported. Latest |
| 46 | version along with couple of previous are certainly supported. On |
| 47 | the other hand oldest one is known not to work. Everything between |
| 48 | falls into best-effort category. |
Richard Levitte | b32b896 | 2016-03-08 14:44:46 +0100 | [diff] [blame] | 49 | |
| 50 | - Netwide Assembler, a.k.a. NASM, available from http://www.nasm.us, |
| 51 | is required if you intend to utilize assembler modules. Note that NASM |
| 52 | is the only supported assembler. The Microsoft provided assembler is NOT |
| 53 | supported. |
| 54 | |
| 55 | |
Richard Levitte | 8c16829 | 2016-03-17 10:08:25 +0100 | [diff] [blame] | 56 | Installation directories |
Andy Polyakov | 97a479c | 2018-03-16 15:39:51 +0100 | [diff] [blame] | 57 | ------------------------ |
Richard Levitte | 8c16829 | 2016-03-17 10:08:25 +0100 | [diff] [blame] | 58 | |
| 59 | The default installation directories are derived from environment |
| 60 | variables. |
| 61 | |
| 62 | For VC-WIN32, the following defaults are use: |
| 63 | |
| 64 | PREFIX: %ProgramFiles(86)%\OpenSSL |
| 65 | OPENSSLDIR: %CommonProgramFiles(86)%\SSL |
| 66 | |
Xiaoyin Liu | e7b6922 | 2016-09-25 21:28:02 -0400 | [diff] [blame] | 67 | For VC-WIN64, the following defaults are use: |
Richard Levitte | 8c16829 | 2016-03-17 10:08:25 +0100 | [diff] [blame] | 68 | |
| 69 | PREFIX: %ProgramW6432%\OpenSSL |
| 70 | OPENSSLDIR: %CommonProgramW6432%\SSL |
| 71 | |
| 72 | Should those environment variables not exist (on a pure Win32 |
| 73 | installation for examples), these fallbacks are used: |
| 74 | |
| 75 | PREFIX: %ProgramFiles%\OpenSSL |
| 76 | OPENSSLDIR: %CommonProgramFiles%\SSL |
| 77 | |
Richard Levitte | 1c7bfec | 2016-05-23 22:24:13 +0200 | [diff] [blame] | 78 | ALSO NOTE that those directories are usually write protected, even if |
| 79 | your account is in the Administrators group. To work around that, |
| 80 | start the command prompt by right-clicking on it and choosing "Run as |
| 81 | Administrator" before running 'nmake install'. The other solution |
| 82 | is, of course, to choose a different set of directories by using |
| 83 | --prefix and --openssldir when configuring. |
Richard Levitte | 8c16829 | 2016-03-17 10:08:25 +0100 | [diff] [blame] | 84 | |
Andy Polyakov | 97a479c | 2018-03-16 15:39:51 +0100 | [diff] [blame] | 85 | mingw and mingw64 |
| 86 | ================= |
Richard Levitte | b32b896 | 2016-03-08 14:44:46 +0100 | [diff] [blame] | 87 | |
Andy Polyakov | 97a479c | 2018-03-16 15:39:51 +0100 | [diff] [blame] | 88 | * MSYS2 shell and development environment installation: |
Richard Levitte | b32b896 | 2016-03-08 14:44:46 +0100 | [diff] [blame] | 89 | |
Andy Polyakov | 97a479c | 2018-03-16 15:39:51 +0100 | [diff] [blame] | 90 | Download MSYS2 from https://msys2.github.io/ and follow installation |
| 91 | instructions. Once up and running install even make, perl, (git if |
| 92 | needed,) mingw-w64-i686-gcc and/or mingw-w64-x86_64-gcc. You should |
| 93 | have corresponding MinGW items on your start menu, use *them*, not |
| 94 | generic MSYS2. As implied in opening note, difference between them |
| 95 | is which compiler is found 1st on $PATH. At this point ./config |
| 96 | should recognize correct target, roll as if it was Unix... |
Richard Levitte | b32b896 | 2016-03-08 14:44:46 +0100 | [diff] [blame] | 97 | |
Andy Polyakov | 97a479c | 2018-03-16 15:39:51 +0100 | [diff] [blame] | 98 | * It is also possible to build mingw[64] on Linux or Cygwin by |
| 99 | configuring with corresponding --cross-compile-prefix= option. For |
| 100 | example |
Richard Levitte | b32b896 | 2016-03-08 14:44:46 +0100 | [diff] [blame] | 101 | |
Andy Polyakov | 97a479c | 2018-03-16 15:39:51 +0100 | [diff] [blame] | 102 | ./Configure mingw --cross-compile-prefix=i686-w64-mingw32- ... |
Richard Levitte | b32b896 | 2016-03-08 14:44:46 +0100 | [diff] [blame] | 103 | |
Andy Polyakov | 97a479c | 2018-03-16 15:39:51 +0100 | [diff] [blame] | 104 | or |
Richard Levitte | b32b896 | 2016-03-08 14:44:46 +0100 | [diff] [blame] | 105 | |
Andy Polyakov | 97a479c | 2018-03-16 15:39:51 +0100 | [diff] [blame] | 106 | ./Configure mingw64 --cross-compile-prefix=x86_64-w64-mingw32- ... |
Richard Levitte | b32b896 | 2016-03-08 14:44:46 +0100 | [diff] [blame] | 107 | |
Andy Polyakov | 97a479c | 2018-03-16 15:39:51 +0100 | [diff] [blame] | 108 | This naturally implies that you've installed corresponding add-on |
| 109 | packages. |
Richard Levitte | b32b896 | 2016-03-08 14:44:46 +0100 | [diff] [blame] | 110 | |
Andy Polyakov | ad83932 | 2016-03-14 18:04:21 +0100 | [diff] [blame] | 111 | Linking your application |
Andy Polyakov | 97a479c | 2018-03-16 15:39:51 +0100 | [diff] [blame] | 112 | ======================== |
Andy Polyakov | ad83932 | 2016-03-14 18:04:21 +0100 | [diff] [blame] | 113 | |
Andy Polyakov | 97a479c | 2018-03-16 15:39:51 +0100 | [diff] [blame] | 114 | This section applies to all "native" builds. |
Andy Polyakov | ad83932 | 2016-03-14 18:04:21 +0100 | [diff] [blame] | 115 | |
| 116 | If you link with static OpenSSL libraries then you're expected to |
Richard Levitte | 531e9dc | 2016-05-12 22:32:12 +0200 | [diff] [blame] | 117 | additionally link your application with WS2_32.LIB, GDI32.LIB, |
| 118 | ADVAPI32.LIB, CRYPT32.LIB and USER32.LIB. Those developing |
| 119 | non-interactive service applications might feel concerned about |
| 120 | linking with GDI32.LIB and USER32.LIB, as they are justly associated |
| 121 | with interactive desktop, which is not available to service |
| 122 | processes. The toolkit is designed to detect in which context it's |
| 123 | currently executed, GUI, console app or service, and act accordingly, |
| 124 | namely whether or not to actually make GUI calls. Additionally those |
| 125 | who wish to /DELAYLOAD:GDI32.DLL and /DELAYLOAD:USER32.DLL and |
| 126 | actually keep them off service process should consider implementing |
| 127 | and exporting from .exe image in question own _OPENSSL_isservice not |
| 128 | relying on USER32.DLL. E.g., on Windows Vista and later you could: |
Andy Polyakov | ad83932 | 2016-03-14 18:04:21 +0100 | [diff] [blame] | 129 | |
| 130 | __declspec(dllexport) __cdecl BOOL _OPENSSL_isservice(void) |
| 131 | { DWORD sess; |
| 132 | if (ProcessIdToSessionId(GetCurrentProcessId(),&sess)) |
| 133 | return sess==0; |
| 134 | return FALSE; |
| 135 | } |
| 136 | |
| 137 | If you link with OpenSSL .DLLs, then you're expected to include into |
| 138 | your application code small "shim" snippet, which provides glue between |
| 139 | OpenSSL BIO layer and your compiler run-time. See the OPENSSL_Applink |
| 140 | manual page for further details. |
Andy Polyakov | 97a479c | 2018-03-16 15:39:51 +0100 | [diff] [blame] | 141 | |
| 142 | Cygwin, "hosted" environment |
| 143 | ============================ |
| 144 | |
| 145 | Cygwin implements a Posix/Unix runtime system (cygwin1.dll) on top of the |
| 146 | Windows subsystem and provides a bash shell and GNU tools environment. |
| 147 | Consequently, a make of OpenSSL with Cygwin is virtually identical to the |
| 148 | Unix procedure. |
| 149 | |
| 150 | To build OpenSSL using Cygwin, you need to: |
| 151 | |
| 152 | * Install Cygwin (see https://cygwin.com/) |
| 153 | |
| 154 | * Install Cygwin Perl and ensure it is in the path. Recall that |
| 155 | as least 5.10.0 is required. |
| 156 | |
| 157 | * Run the Cygwin bash shell |
| 158 | |
| 159 | Apart from that, follow the Unix instructions in INSTALL. |
| 160 | |
| 161 | NOTE: "make test" and normal file operations may fail in directories |
| 162 | mounted as text (i.e. mount -t c:\somewhere /home) due to Cygwin |
| 163 | stripping of carriage returns. To avoid this ensure that a binary |
| 164 | mount is used, e.g. mount -b c:\somewhere /home. |