BUILD.WINDOWS.txt 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. Building with Visual C++, prerequises
  2. =====================================
  3. This document describes how to compile, build and install curl and libcurl
  4. from sources using the Visual C++ build tool. To build with VC++, you will
  5. of course have to first install VC++. The minimum required version of
  6. VC is 6 (part of Visual Studio 6). However using a more recent version is
  7. strongly recommended.
  8. VC++ is also part of the Windows Platform SDK. You do not have to install
  9. the full Visual Studio or Visual C++ if all you want is to build curl.
  10. The latest Platform SDK can be downloaded freely from:
  11. http://msdn.microsoft.com/en-us/windows/bb980924
  12. If you are building with VC6 then you will also need the February 2003
  13. Edition of the Platform SDK which can be downloaded from:
  14. http://www.microsoft.com/en-us/download/details.aspx?id=12261
  15. If you wish to support zlib, openssl, ssh2, you will have to download
  16. them separately and copy them to the deps directory as shown below:
  17. somedirectory\
  18. |_curl-src
  19. | |_winbuild
  20. |
  21. |_deps
  22. |_ lib
  23. |_ include
  24. |_ bin
  25. It is also possible to create the deps directory in some other random
  26. places and tell the Makefile its location using the WITH_DEVEL option.
  27. Building with Visual C++
  28. ========================
  29. Open a Visual Studio Command prompt or the SDK CMD shell.
  30. Using the CMD Shell:
  31. choose the right environment via the setenv command (see setenv /?)
  32. for the full list of options. setenv /xp /x86 /release for example.
  33. Using the Visual Studio command prompt Shell:
  34. Everything is already pre-configured by calling one of the command
  35. prompt.
  36. Once you are in the console, go to the winbuild directory in the Curl
  37. sources:
  38. cd curl-src\winbuild
  39. Then you can call nmake /f Makefile.vc with the desired options (see below).
  40. The builds will be in the top src directory, builds\ directory, in
  41. a directory named using the options given to the nmake call.
  42. nmake /f Makefile.vc mode=<static or dll> <options>
  43. where <options> is one or many of:
  44. VC=<6,7,8,9,10,11,12> - VC versions
  45. WITH_DEVEL=<path> - Paths for the development files (SSL, zlib, etc.)
  46. Defaults to sibbling directory deps: ../deps
  47. Libraries can be fetched at http://windows.php.net/downloads/php-sdk/deps/
  48. Uncompress them into the deps folder.
  49. WITH_SSL=<dll or static> - Enable OpenSSL support, DLL or static
  50. WITH_ZLIB=<dll or static> - Enable zlib support, DLL or static
  51. WITH_SSH2=<dll or static> - Enable libSSH2 support, DLL or static
  52. ENABLE_SSPI=<yes or no> - Enable SSPI support, defaults to yes
  53. ENABLE_IPV6=<yes or no> - Enable IPv6, defaults to yes
  54. ENABLE_IDN=<yes or no> - Enable use of Windows IDN APIs, defaults to yes
  55. Requires Windows Vista or later, or installation from:
  56. http://www.microsoft.com/downloads/details.aspx?FamilyID=AD6158D7-DDBA-416A-9109-07607425A815
  57. ENABLE_WINSSL=<yes or no> - Enable native Windows SSL support, defaults to yes
  58. GEN_PDB=<yes or no> - Generate Program Database (debug symbols for release build)
  59. DEBUG=<yes or no> - Debug builds
  60. MACHINE=<x86 or x64> - Target architecture (default is x86)