BUILD.WINDOWS.txt 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 like
  7. 2008 (vc9) is 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 Platform SDK can be fetched here, freely:
  11. http://msdn.microsoft.com/en-us/windows/bb980924
  12. If you wish to support zlib, openssl, ssh2, you will have to download
  13. them separately and copy them to the deps directory as shown below:
  14. somedirectory\
  15. |_curl-src
  16. | |_winbuild
  17. |
  18. |_deps
  19. |_ lib
  20. |_ include
  21. |_ bin
  22. It is also possible to create the deps directory in some other random
  23. places and tell the Makefile its location using the WITH_DEVEL option.
  24. Building with Visual C++
  25. ========================
  26. Open a Visual Studio Command prompt or the SDK CMD shell.
  27. Using the CMD Shell:
  28. choose the right environment via the setenv command (see setenv /?)
  29. for the full list of options. setenv /xp /x86 /release for example.
  30. Using the Visual Studio command prompt Shell:
  31. Everything is already pre-configured by calling one of the command
  32. prompt.
  33. Once you are in the console, go to the winbuild directory in the Curl
  34. sources:
  35. cd curl-src\winbuild
  36. Then you can call nmake /f makefile with the desired options (see below).
  37. The builds will be in the top src directory, builds\ directory, in
  38. a directory named using the options given to the nmake call.
  39. nmake /f makefile.vc mode=<static or dll> <options>
  40. where <options> is one or many of:
  41. VC=<6,7,8,9,10> - VC versions
  42. WITH_DEVEL=<path> - Paths for the development files (SSL, zlib, etc.)
  43. Default to sibbling directory deps: ../deps
  44. Libraries can be fetched at http://pecl2.php.net/downloads/php-windows-builds/
  45. Uncompress them into the deps folder.
  46. WITH_SSL=<dll or static> - Enable OpenSSL support, DLL or static
  47. WITH_ZLIB=<dll or static> - Enable ZLib support, DLL or static
  48. WITH_SSH2=<dll or static> - Enable LIbSSH2 support, DLL or static
  49. USE_SSSPI=<yes or no> - Enable SSPI support, default to yes
  50. USE_IPV6=<yes or no> - Enable IPV6, default to yes
  51. DEBUG=<yes or no> - Debug builds
  52. USE_IDN=<yes or no> - Wheter or not to use IDN Windows APIs. Requires Windows Vista or later.
  53. or to install http://www.microsoft.com/downloads/details.aspx?FamilyID=AD6158D7-DDBA-416A-9109-07607425A815
  54. GEN_PDB=<yes or no> - Generate Program Database (debug symbols release build)