2
0

INSTALL.W32 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. INSTALLATION ON THE WIN32 PLATFORM
  2. ----------------------------------
  3. Heres a few comments about building OpenSSL in Windows environments. Most
  4. of this is tested on Win32 but it may also work in Win 3.1 with some
  5. modification.
  6. You need Perl for Win32. Unless you will build on Cygwin, you will need
  7. ActiveState Perl, available from http://www.activestate.com/ActivePerl.
  8. For Cygwin users, there's more info in the Cygwin section.
  9. and one of the following C compilers:
  10. * Visual C++
  11. * Borland C
  12. * GNU C (Mingw32 or Cygwin)
  13. If you want to compile in the assembly language routines with Visual C++ then
  14. you will need an assembler. This is worth doing because it will result in
  15. faster code: for example it will typically result in a 2 times speedup in the
  16. RSA routines. Currently the following assemblers are supported:
  17. * Microsoft MASM (aka "ml")
  18. * Free Netwide Assembler NASM.
  19. MASM was at one point distributed with VC++. It is now distributed with some
  20. Microsoft DDKs, for example the Windows NT 4.0 DDK and the Windows 98 DDK. If
  21. you do not have either of these DDKs then you can just download the binaries
  22. for the Windows 98 DDK and extract and rename the two files XXXXXml.exe and
  23. XXXXXml.err, to ml.exe and ml.err and install somewhere on your PATH. Both
  24. DDKs can be downloaded from the Microsoft developers site www.msdn.com.
  25. NASM is freely available. Version 0.98 was used during testing: other versions
  26. may also work. It is available from many places, see for example:
  27. http://www.kernel.org/pub/software/devel/nasm/binaries/win32/
  28. The NASM binary nasmw.exe needs to be installed anywhere on your PATH.
  29. If you are compiling from a tarball or a CVS snapshot then the Win32 files
  30. may well be not up to date. This may mean that some "tweaking" is required to
  31. get it all to work. See the trouble shooting section later on for if (when?)
  32. it goes wrong.
  33. Visual C++
  34. ----------
  35. Firstly you should run Configure:
  36. > perl Configure VC-WIN32
  37. Next you need to build the Makefiles and optionally the assembly language
  38. files:
  39. - If you are using MASM then run:
  40. > ms\do_masm
  41. - If you are using NASM then run:
  42. > ms\do_nasm
  43. - If you don't want to use the assembly language files at all then run:
  44. > ms\do_ms
  45. If you get errors about things not having numbers assigned then check the
  46. troubleshooting section: you probably won't be able to compile it as it
  47. stands.
  48. Then from the VC++ environment at a prompt do:
  49. > nmake -f ms\ntdll.mak
  50. If all is well it should compile and you will have some DLLs and executables
  51. in out32dll. If you want to try the tests then do:
  52. > cd out32dll
  53. > ..\ms\test
  54. Tweaks:
  55. There are various changes you can make to the Win32 compile environment. By
  56. default the library is not compiled with debugging symbols. If you add 'debug'
  57. to the mk1mf.pl lines in the do_* batch file then debugging symbols will be
  58. compiled in. Note that mk1mf.pl expects the platform to be the last argument
  59. on the command line, so 'debug' must appear before that, as all other options.
  60. The default Win32 environment is to leave out any Windows NT specific
  61. features.
  62. If you want to enable the NT specific features of OpenSSL (currently only the
  63. logging BIO) follow the instructions above but call the batch file do_nt.bat
  64. instead of do_ms.bat.
  65. You can also build a static version of the library using the Makefile
  66. ms\nt.mak
  67. Borland C++ builder 5
  68. ---------------------
  69. * Configure for building with Borland Builder:
  70. > perl Configure BC-32
  71. * Create the appropriate makefile
  72. > ms\do_nasm
  73. * Build
  74. > make -f ms\bcb.mak
  75. Borland C++ builder 3 and 4
  76. ---------------------------
  77. * Setup PATH. First must be GNU make then bcb4/bin
  78. * Run ms\bcb4.bat
  79. * Run make:
  80. > make -f bcb.mak
  81. GNU C (Mingw32)
  82. ---------------
  83. To build OpenSSL, you need the Mingw32 package and GNU make.
  84. * Compiler installation:
  85. Mingw32 is available from <ftp://ftp.xraylith.wisc.edu/pub/khan/
  86. gnu-win32/mingw32/gcc-2.95.2/gcc-2.95.2-msvcrt.exe>. GNU make is at
  87. <ftp://agnes.dida.physik.uni-essen.de/home/janjaap/mingw32/binaries/
  88. make-3.76.1.zip>. Install both of them in C:\egcs-1.1.2 and run
  89. C:\egcs-1.1.2\mingw32.bat to set the PATH.
  90. * Compile OpenSSL:
  91. > ms\mingw32
  92. This will create the library and binaries in out. In case any problems
  93. occur, try
  94. > ms\mingw32 no-asm
  95. instead.
  96. libcrypto.a and libssl.a are the static libraries. To use the DLLs,
  97. link with libeay32.a and libssl32.a instead.
  98. See troubleshooting if you get error messages about functions not having
  99. a number assigned.
  100. * You can now try the tests:
  101. > cd out
  102. > ..\ms\test
  103. GNU C (Cygwin)
  104. --------------
  105. Cygwin provides a bash shell and GNU tools environment running on
  106. NT 4.0, Windows 9x and Windows 2000. Consequently, a make of OpenSSL
  107. with Cygwin is closer to a GNU bash environment such as Linux rather
  108. than other W32 makes that are based on a single makefile approach.
  109. Cygwin implements Posix/Unix calls through cygwin1.dll, and is
  110. contrasted to Mingw32 which links dynamically to msvcrt.dll or
  111. crtdll.dll.
  112. To build OpenSSL using Cygwin:
  113. * Install Cygwin (see http://sourceware.cygnus.com/cygwin)
  114. * Install Perl and ensure it is in the path (recent Cygwin perl
  115. (version 5.6.1-2 of the latter has been reported to work) or
  116. ActivePerl)
  117. * Run the Cygwin bash shell
  118. * $ tar zxvf openssl-x.x.x.tar.gz
  119. $ cd openssl-x.x.x
  120. $ ./config
  121. [...]
  122. $ make
  123. [...]
  124. $ make test
  125. $ make install
  126. This will create a default install in /usr/local/ssl.
  127. Cygwin Notes:
  128. "make test" and normal file operations may fail in directories
  129. mounted as text (i.e. mount -t c:\somewhere /home) due to Cygwin
  130. stripping of carriage returns. To avoid this ensure that a binary
  131. mount is used, e.g. mount -b c:\somewhere /home.
  132. As of version 1.1.1 Cygwin is relatively unstable in its handling
  133. of cr/lf issues. These make procedures succeeded with versions 1.1 and
  134. the snapshot 20000524 (Slow!).
  135. "bc" is not provided in the Cygwin distribution. This causes a
  136. non-fatal error in "make test" but is otherwise harmless. If
  137. desired, GNU bc can be built with Cygwin without change.
  138. Installation
  139. ------------
  140. If you used the Cygwin procedure above, you have already installed and
  141. can skip this section. For all other procedures, there's currently no real
  142. installation procedure for Win32. There are, however, some suggestions:
  143. - do nothing. The include files are found in the inc32/ subdirectory,
  144. all binaries are found in out32dll/ or out32/ depending if you built
  145. dynamic or static libraries.
  146. - do as is written in INSTALL.Win32 that comes with modssl:
  147. $ md c:\openssl
  148. $ md c:\openssl\bin
  149. $ md c:\openssl\lib
  150. $ md c:\openssl\include
  151. $ md c:\openssl\include\openssl
  152. $ copy /b inc32\openssl\* c:\openssl\include\openssl
  153. $ copy /b out32dll\ssleay32.lib c:\openssl\lib
  154. $ copy /b out32dll\libeay32.lib c:\openssl\lib
  155. $ copy /b out32dll\ssleay32.dll c:\openssl\bin
  156. $ copy /b out32dll\libeay32.dll c:\openssl\bin
  157. $ copy /b out32dll\openssl.exe c:\openssl\bin
  158. Of course, you can choose another device than c:. C: is used here
  159. because that's usually the first (and often only) harddisk device.
  160. Note: in the modssl INSTALL.Win32, p: is used rather than c:.
  161. Troubleshooting
  162. ---------------
  163. Since the Win32 build is only occasionally tested it may not always compile
  164. cleanly. If you get an error about functions not having numbers assigned
  165. when you run ms\do_ms then this means the Win32 ordinal files are not up to
  166. date. You can do:
  167. > perl util\mkdef.pl crypto ssl update
  168. then ms\do_XXX should not give a warning any more. However the numbers that
  169. get assigned by this technique may not match those that eventually get
  170. assigned in the CVS tree: so anything linked against this version of the
  171. library may need to be recompiled.
  172. If you get errors about unresolved symbols there are several possible
  173. causes.
  174. If this happens when the DLL is being linked and you have disabled some
  175. ciphers then it is possible the DEF file generator hasn't removed all
  176. the disabled symbols: the easiest solution is to edit the DEF files manually
  177. to delete them. The DEF files are ms\libeay32.def ms\ssleay32.def.
  178. Another cause is if you missed or ignored the errors about missing numbers
  179. mentioned above.
  180. If you get warnings in the code then the compilation will halt.
  181. The default Makefile for Win32 halts whenever any warnings occur. Since VC++
  182. has its own ideas about warnings which don't always match up to other
  183. environments this can happen. The best fix is to edit the file with the
  184. warning in and fix it. Alternatively you can turn off the halt on warnings by
  185. editing the CFLAG line in the Makefile and deleting the /WX option.
  186. You might get compilation errors. Again you will have to fix these or report
  187. them.
  188. One final comment about compiling applications linked to the OpenSSL library.
  189. If you don't use the multithreaded DLL runtime library (/MD option) your
  190. program will almost certainly crash because malloc gets confused -- the
  191. OpenSSL DLLs are statically linked to one version, the application must
  192. not use a different one. You might be able to work around such problems
  193. by adding CRYPTO_malloc_init() to your program before any calls to the
  194. OpenSSL libraries: This tells the OpenSSL libraries to use the same
  195. malloc(), free() and realloc() as the application. However there are many
  196. standard library functions used by OpenSSL that call malloc() internally
  197. (e.g. fopen()), and OpenSSL cannot change these; so in general you cannot
  198. rely on CYRPTO_malloc_init() solving your problem, and you should
  199. consistently use the multithreaded library.