2011-01-28 16:19:44 -05:00
|
|
|
Building with Visual C++, prerequises
|
|
|
|
=====================================
|
2014-04-05 13:48:48 -04:00
|
|
|
|
2011-01-28 16:19:44 -05:00
|
|
|
This document describes how to compile, build and install curl and libcurl
|
|
|
|
from sources using the Visual C++ build tool. To build with VC++, you will
|
|
|
|
of course have to first install VC++. The minimum required version of
|
2014-04-05 13:48:48 -04:00
|
|
|
VC is 6 (part of Visual Studio 6). However using a more recent version is
|
|
|
|
strongly recommended.
|
2011-01-28 16:19:44 -05:00
|
|
|
|
|
|
|
VC++ is also part of the Windows Platform SDK. You do not have to install
|
|
|
|
the full Visual Studio or Visual C++ if all you want is to build curl.
|
|
|
|
|
2014-04-05 13:48:48 -04:00
|
|
|
The latest Platform SDK can be downloaded freely from:
|
2011-01-28 16:19:44 -05:00
|
|
|
|
|
|
|
http://msdn.microsoft.com/en-us/windows/bb980924
|
|
|
|
|
2014-04-05 13:48:48 -04:00
|
|
|
If you are building with VC6 then you will also need the February 2003
|
|
|
|
Edition of the Platform SDK which can be downloaded from:
|
|
|
|
|
|
|
|
http://www.microsoft.com/en-us/download/details.aspx?id=12261
|
|
|
|
|
2014-12-29 13:57:21 -05:00
|
|
|
If you wish to support zlib, openssl, c-ares, ssh2, you will have to download
|
2011-01-28 16:19:44 -05:00
|
|
|
them separately and copy them to the deps directory as shown below:
|
|
|
|
|
|
|
|
somedirectory\
|
|
|
|
|_curl-src
|
|
|
|
| |_winbuild
|
|
|
|
|
|
|
|
|
|_deps
|
|
|
|
|_ lib
|
|
|
|
|_ include
|
|
|
|
|_ bin
|
|
|
|
|
|
|
|
It is also possible to create the deps directory in some other random
|
|
|
|
places and tell the Makefile its location using the WITH_DEVEL option.
|
|
|
|
|
|
|
|
Building with Visual C++
|
|
|
|
========================
|
|
|
|
|
|
|
|
Open a Visual Studio Command prompt or the SDK CMD shell.
|
|
|
|
|
|
|
|
Using the CMD Shell:
|
|
|
|
choose the right environment via the setenv command (see setenv /?)
|
|
|
|
for the full list of options. setenv /xp /x86 /release for example.
|
|
|
|
|
|
|
|
Using the Visual Studio command prompt Shell:
|
|
|
|
Everything is already pre-configured by calling one of the command
|
|
|
|
prompt.
|
|
|
|
|
2011-05-20 07:35:23 -04:00
|
|
|
Once you are in the console, go to the winbuild directory in the Curl
|
2011-01-28 16:19:44 -05:00
|
|
|
sources:
|
|
|
|
cd curl-src\winbuild
|
|
|
|
|
2012-07-08 04:41:53 -04:00
|
|
|
Then you can call nmake /f Makefile.vc with the desired options (see below).
|
2011-01-28 16:19:44 -05:00
|
|
|
The builds will be in the top src directory, builds\ directory, in
|
|
|
|
a directory named using the options given to the nmake call.
|
|
|
|
|
2012-07-08 04:41:53 -04:00
|
|
|
nmake /f Makefile.vc mode=<static or dll> <options>
|
|
|
|
|
2011-01-28 16:19:44 -05:00
|
|
|
where <options> is one or many of:
|
2014-01-07 19:30:33 -05:00
|
|
|
VC=<6,7,8,9,10,11,12> - VC versions
|
2011-01-28 16:19:44 -05:00
|
|
|
WITH_DEVEL=<path> - Paths for the development files (SSL, zlib, etc.)
|
2012-07-08 04:41:53 -04:00
|
|
|
Defaults to sibbling directory deps: ../deps
|
2014-05-03 18:48:06 -04:00
|
|
|
Libraries can be fetched at http://windows.php.net/downloads/php-sdk/deps/
|
2011-01-28 16:19:44 -05:00
|
|
|
Uncompress them into the deps folder.
|
|
|
|
WITH_SSL=<dll or static> - Enable OpenSSL support, DLL or static
|
2014-12-29 13:57:21 -05:00
|
|
|
WITH_CARES=<dll or static> - Enable c-ares support, DLL or static
|
2012-07-08 04:41:53 -04:00
|
|
|
WITH_ZLIB=<dll or static> - Enable zlib support, DLL or static
|
|
|
|
WITH_SSH2=<dll or static> - Enable libSSH2 support, DLL or static
|
|
|
|
ENABLE_SSPI=<yes or no> - Enable SSPI support, defaults to yes
|
|
|
|
ENABLE_IPV6=<yes or no> - Enable IPv6, defaults to yes
|
|
|
|
ENABLE_IDN=<yes or no> - Enable use of Windows IDN APIs, defaults to yes
|
|
|
|
Requires Windows Vista or later, or installation from:
|
|
|
|
http://www.microsoft.com/downloads/details.aspx?FamilyID=AD6158D7-DDBA-416A-9109-07607425A815
|
|
|
|
ENABLE_WINSSL=<yes or no> - Enable native Windows SSL support, defaults to yes
|
|
|
|
GEN_PDB=<yes or no> - Generate Program Database (debug symbols for release build)
|
2011-01-28 16:19:44 -05:00
|
|
|
DEBUG=<yes or no> - Debug builds
|
2014-05-03 18:48:06 -04:00
|
|
|
MACHINE=<x86 or x64> - Target architecture (default is x86)
|
2015-05-08 01:09:57 -04:00
|
|
|
|
|
|
|
Static linking of Microsoft's C RunTime (CRT):
|
|
|
|
==============================================
|
|
|
|
If you are using mode=static nmake will create and link to the static build of
|
|
|
|
libcurl but *not* the static CRT. If you must you can force nmake to link in
|
|
|
|
the static CRT by passing RTLIBCFG=static. Typically you shouldn't use that
|
|
|
|
option, and nmake will default to the DLL CRT. RTLIBCFG is rarely used and
|
|
|
|
therefore rarely tested. When passing RTLIBCFG for a configuration that was
|
|
|
|
already built but not with that option, or if the option was specified
|
|
|
|
differently, you must destroy the build directory containing the configuration
|
|
|
|
so that nmake can build it from scratch.
|