blob: 4d2f9b6173dd01e8a35f2c86cf9edee05ae31dff [file] [log] [blame]
Christian Heimes5b5e81c2007-12-31 16:14:33 +00001Building Python using VC++ 9.0
2------------------------------
Christian Heimes57dddfb2008-01-02 18:30:52 +00003
Tim Peters4b5fb072000-07-01 00:03:43 +00004This directory is used to build Python for Win32 platforms, e.g. Windows
Christian Heimes5b5e81c2007-12-31 16:14:33 +000052000, XP and Vista. It requires Microsoft Visual C++ 9.0
6(a.k.a. Visual Studio .NET 2008).
Guido van Rossum15b239f1998-05-26 14:16:23 +00007(For other Windows platforms and compilers, see ../PC/readme.txt.)
8
Christian Heimes5b5e81c2007-12-31 16:14:33 +00009All you need to do is open the workspace "pcbuild.sln" in Visual Studio,
10select the desired combination of configuration and platform and eventually
11build the solution. Unless you are going to debug a problem in the core or
12you are going to create an optimized build you want to select "Release" as
13configuration.
Guido van Rossum15b239f1998-05-26 14:16:23 +000014
Christian Heimes5b5e81c2007-12-31 16:14:33 +000015The PCbuild directory is compatible with all versions of Visual Studio from
16VS C++ Express Edition over the standard edition up to the professional
17edition. However the express edition does support features like solution
18folders or profile guided optimization (PGO). The missing bits and pieces
19won't stop you from building Python.
Guido van Rossum15b239f1998-05-26 14:16:23 +000020
Christian Heimes5b5e81c2007-12-31 16:14:33 +000021The solution is configured to build the projects in the correct order. "Build
Christian Heimesa8223142008-02-09 20:58:00 +000022Solution" or F7 takes care of dependencies except for x64 builds. To make
Christian Heimes5b5e81c2007-12-31 16:14:33 +000023cross compiling x64 builds on a 32bit OS possible the x64 builds require a
2432bit version of Python.
Guido van Rossum15b239f1998-05-26 14:16:23 +000025
Christian Heimes5b5e81c2007-12-31 16:14:33 +000026NOTE:
27 You probably don't want to build most of the other subprojects, unless
28 you're building an entire Python distribution from scratch, or
29 specifically making changes to the subsystems they implement, or are
30 running a Python core buildbot test slave; see SUBPROJECTS below)
Guido van Rossum15b239f1998-05-26 14:16:23 +000031
32When using the Debug setting, the output files have a _d added to
Christian Heimesa8223142008-02-09 20:58:00 +000033their name: python30_d.dll, python_d.exe, parser_d.pyd, and so on. Both
34the build and rt batch files accept a -d option for debug builds.
Guido van Rossume79cf321998-07-07 22:35:03 +000035
Christian Heimes5b5e81c2007-12-31 16:14:33 +000036The 32bit builds end up in the solution folder PCbuild while the x64 builds
37land in the amd64 subfolder. The PGI and PGO builds for profile guided
38optimization end up in their own folders, too.
39
Christian Heimes57dddfb2008-01-02 18:30:52 +000040Legacy support
41--------------
42
43You can find build directories for older versions of Visual Studio and
44Visual C++ in the PC directory. The legacy build directories are no longer
45actively maintained and may not work out of the box.
46
47PC/VC6/
48 Visual C++ 6.0
49PC/VS7.1/
50 Visual Studio 2003 (7.1)
51PCbuild8/
52 Visual Studio 2005 (8.0)
53
54
55C RUNTIME
56---------
57
58Visual Studio 2008 uses version 9 of the C runtime (MSVCRT9). The executables
59are linked to a CRT "side by side" assembly which must be present on the target
60machine. This is avalible under the VC/Redist folder of your visual studio
61distribution. On XP and later operating systems that support
62side-by-side assemblies it is not enough to have the msvcrt80.dll present,
63it has to be there as a whole assembly, that is, a folder with the .dll
64and a .manifest. Also, a check is made for the correct version.
65Therefore, one should distribute this assembly with the dlls, and keep
66it in the same directory. For compatibility with older systems, one should
67also set the PATH to this directory so that the dll can be found.
68For more info, see the Readme in the VC/Redist folder.
69
Tim Peters4b5fb072000-07-01 00:03:43 +000070SUBPROJECTS
71-----------
Tim Peters610a8272000-07-01 02:51:23 +000072These subprojects should build out of the box. Subprojects other than the
Tim Petersbefc97c2001-01-18 19:01:39 +000073main ones (pythoncore, python, pythonw) generally build a DLL (renamed to
Tim Peters610a8272000-07-01 02:51:23 +000074.pyd) from a specific module so that users don't have to load the code
Tim Peters4b5fb072000-07-01 00:03:43 +000075supporting that module unless they import the module.
Guido van Rossume79cf321998-07-07 22:35:03 +000076
Tim Peters97c96402001-01-17 23:23:13 +000077pythoncore
Tim Peters4b5fb072000-07-01 00:03:43 +000078 .dll and .lib
79python
80 .exe
81pythonw
82 pythonw.exe, a variant of python.exe that doesn't pop up a DOS box
83_socket
84 socketmodule.c
Tim Petersd66595f2001-02-04 03:09:53 +000085_testcapi
Tim Petersb16c56f2001-02-02 21:24:51 +000086 tests of the Python C API, run via Lib/test/test_capi.py, and
Tim Petersd66595f2001-02-04 03:09:53 +000087 implemented by module Modules/_testcapimodule.c
Tim Petersb012a152002-02-13 23:56:46 +000088pyexpat
89 Python wrapper for accelerated XML parsing, which incorporates stable
90 code from the Expat project: http://sourceforge.net/projects/expat/
Tim Peters4b5fb072000-07-01 00:03:43 +000091select
92 selectmodule.c
Tim Peters19f52c22001-01-24 10:07:22 +000093unicodedata
Tim Peters4b5fb072000-07-01 00:03:43 +000094 large tables of Unicode data
Tim Peters4b5fb072000-07-01 00:03:43 +000095winsound
96 play sounds (typically .wav files) under Windows
97
Christian Heimes5b5e81c2007-12-31 16:14:33 +000098The following subprojects will generally NOT build out of the box. They
Tim Peters4b5fb072000-07-01 00:03:43 +000099wrap code Python doesn't control, and you'll need to download the base
Tim Petersaff12842000-08-25 06:52:44 +0000100packages first and unpack them into siblings of PCbuilds's parent
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000101directory; for example, if your PCbuild is ..\dist\py3k\PCbuild\,
102unpack into new subdirectories of ..\dist\.
Tim Peters4b5fb072000-07-01 00:03:43 +0000103
104_tkinter
Tim Peters077736b2002-11-14 23:24:40 +0000105 Python wrapper for the Tk windowing system. Requires building
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000106 Tcl/Tk first. Following are instructions for Tcl/Tk 8.4.16.
107
108 NOTE: The 64 build builds must land in tcltk64 instead of tcltk.
Tim Peters077736b2002-11-14 23:24:40 +0000109
110 Get source
111 ----------
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000112 In the dist directory, run
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000113 svn export http://svn.python.org/projects/external/tcl8.4.16
114 svn export http://svn.python.org/projects/external/tk8.4.16
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000115 svn export http://svn.python.org/projects/external/tix-8.4.0
Tim Peters077736b2002-11-14 23:24:40 +0000116
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000117 Build with build_tkinter.py
118 ---------------------------
119 The PCbuild directory contains a Python script which automates all
Christian Heimes25bb7832008-01-11 16:17:00 +0000120 steps. Run the script in a Visual Studio 2008 command prompt with
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000121
122 python build_tkinter.py Win32
123
124 Use x64 instead of Win32 for the x64 platform.
125
Christian Heimesa8223142008-02-09 20:58:00 +0000126 NOTE: Tcl/Tk 8.4 doesn't compile for x64.
127
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000128 Build Tcl first
Tim Peters6c629952002-11-15 18:36:11 +0000129 ---------------
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000130 Use "Start -> All Programs -> Microsoft Visual Studio 2008
131 -> Visual Studio Tools -> Visual Studio 2008 Command Prompt"
Guido van Rossumd54357d2004-03-20 21:00:26 +0000132 to get a shell window with the correct environment settings
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000133 cd dist\tcl8.4.16\win
Tim Peters077736b2002-11-14 23:24:40 +0000134 nmake -f makefile.vc
Martin v. Löwis6de2d4d2004-08-30 09:22:04 +0000135 nmake -f makefile.vc INSTALLDIR=..\..\tcltk install
Tim Peters077736b2002-11-14 23:24:40 +0000136
137 XXX Should we compile with OPTS=threads?
138
Tim Peters011de6cc2004-04-11 17:29:12 +0000139 Optional: run tests, via
140 nmake -f makefile.vc test
141
Martin v. Löwis6de2d4d2004-08-30 09:22:04 +0000142 On WinXP Pro, wholly up to date as of 30-Aug-2004:
Tim Peterse82b00f2004-08-30 21:14:51 +0000143 all.tcl: Total 10678 Passed 9969 Skipped 709 Failed 0
Tim Peters011de6cc2004-04-11 17:29:12 +0000144 Sourced 129 Test Files.
Tim Peters077736b2002-11-14 23:24:40 +0000145
Tim Peters077736b2002-11-14 23:24:40 +0000146 Build Tk
Tim Peters6c629952002-11-15 18:36:11 +0000147 --------
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000148 cd dist\tk8.4.16\win
149 nmake -f makefile.vc TCLDIR=..\..\tcl8.4.16
150 nmake -f makefile.vc TCLDIR=..\..\tcl8.4.16 INSTALLDIR=..\..\tcltk install
Tim Peters077736b2002-11-14 23:24:40 +0000151
152 XXX Should we compile with OPTS=threads?
153
Tim Peters077736b2002-11-14 23:24:40 +0000154 XXX Our installer copies a lot of stuff out of the Tcl/Tk install
155 XXX directory. Is all of that really needed for Python use of Tcl/Tk?
156
Tim Peters011de6cc2004-04-11 17:29:12 +0000157 Optional: run tests, via
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000158 nmake -f makefile.vc TCLDIR=..\..\tcl8.4.16 test
Tim Peters011de6cc2004-04-11 17:29:12 +0000159
Martin v. Löwis6de2d4d2004-08-30 09:22:04 +0000160 On WinXP Pro, wholly up to date as of 30-Aug-2004:
Tim Peterse82b00f2004-08-30 21:14:51 +0000161 all.tcl: Total 8420 Passed 6826 Skipped 1581 Failed 13
Martin v. Löwis6de2d4d2004-08-30 09:22:04 +0000162 Sourced 91 Test Files.
Tim Peterse82b00f2004-08-30 21:14:51 +0000163 Files with failing tests: canvImg.test scrollbar.test textWind.test winWm.test
Tim Peters63db6282005-08-07 02:47:12 +0000164
Martin v. Löwis3cf21632004-08-31 16:22:09 +0000165 Built Tix
166 ---------
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000167 cd dist\tix-8.4.0\win
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000168 nmake -f python9.mak
169 nmake -f python9.mak install
Tim Peters4b5fb072000-07-01 00:03:43 +0000170
Tim Petersb0ead4e2002-11-09 04:48:58 +0000171bz2
172 Python wrapper for the libbz2 compression library. Homepage
173 http://sources.redhat.com/bzip2/
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000174 Download the source from the python.org copy into the dist
175 directory:
176
Martin v. Löwis14c1cf82006-03-13 10:52:04 +0000177 svn export http://svn.python.org/projects/external/bzip2-1.0.3
Tim Peters077736b2002-11-14 23:24:40 +0000178
Thomas Heller46a007e2003-08-20 18:27:36 +0000179 A custom pre-link step in the bz2 project settings should manage to
Tim Peters7ccbb072006-03-13 19:43:34 +0000180 build bzip2-1.0.3\libbz2.lib by magic before bz2.pyd (or bz2_d.pyd) is
Thomas Heller46a007e2003-08-20 18:27:36 +0000181 linked in PCbuild\.
182 However, the bz2 project is not smart enough to remove anything under
Martin v. Löwis14c1cf82006-03-13 10:52:04 +0000183 bzip2-1.0.3\ when you do a clean, so if you want to rebuild bzip2.lib
184 you need to clean up bzip2-1.0.3\ by hand.
Tim Peters077736b2002-11-14 23:24:40 +0000185
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000186 All of this managed to build libbz2.lib in
187 bzip2-1.0.3\$platform-$configuration\, which the Python project links in.
Tim Petersb0ead4e2002-11-09 04:48:58 +0000188
189
Tim Peters78e35f92002-11-22 20:00:34 +0000190_bsddb
Tim Peters7ccbb072006-03-13 19:43:34 +0000191 To use the version of bsddb that Python is built with by default, invoke
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000192 (in the dist directory)
Tim Petersb0ead4e2002-11-09 04:48:58 +0000193
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000194 svn export http://svn.python.org/projects/external/db-4.4.20
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000195
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000196 Next open the solution file db-4.4.20\build_win32\Berkeley_DB.sln with
Christian Heimes292d3512008-02-03 16:51:08 +0000197 Visual Studio and convert the projects to the new format. VS 2008
198 builds the necessary libraries in a pre-link step of _bsddb. You
199 have to add "$(VCInstallDir)vcpackages" to the search path first
200 (Tools -> Options -> Projects and Solutions -> VC++ Directories,
201 Platform: Win32, Show directories for: Executable files).
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000202
203 The _bsddb subprojects depends only on the db_static project of
204 Berkeley DB. You have to choose either "Release", "Release AMD64", "Debug"
205 or "Debug AMD64" as configuration.
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000206
Tim Peters32d996f2006-03-13 19:35:53 +0000207 Alternatively, if you want to start with the original sources,
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000208 go to Sleepycat's download page:
209 http://www.sleepycat.com/downloads/releasehistorybdb.html
210
211 and download version 4.4.20.
Tim Peters011de6cc2004-04-11 17:29:12 +0000212
213 With or without strong cryptography? You can choose either with or
214 without strong cryptography, as per the instructions below. By
Thomas Heller81391402004-07-02 08:58:46 +0000215 default, Python is built and distributed WITHOUT strong crypto.
Tim Peters011de6cc2004-04-11 17:29:12 +0000216
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000217 Unpack the sources; if you downloaded the non-crypto version, rename
218 the directory from db-4.4.20.NC to db-4.4.20.
Tim Peters011de6cc2004-04-11 17:29:12 +0000219
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000220 Now apply any patches that apply to your version.
Tim Petersa0d781a2004-04-11 18:23:06 +0000221
Tim Peters00640262003-01-24 15:31:31 +0000222 Open
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000223 db-4.4.20\docs\ref\build_win\intro.html
Tim Peters00640262003-01-24 15:31:31 +0000224
Mark Hammond2362da82004-01-06 04:04:01 +0000225 and follow the "Windows->Building Berkeley DB with Visual C++ .NET"
226 instructions for building the Sleepycat
Tim Peters00640262003-01-24 15:31:31 +0000227 software. Note that Berkeley_DB.dsw is in the build_win32 subdirectory.
Martin v. Löwisf6f79252006-03-13 13:48:05 +0000228 Build the "db_static" project, for "Release" mode.
Tim Peters78e35f92002-11-22 20:00:34 +0000229
Tim Peters00640262003-01-24 15:31:31 +0000230 To run extensive tests, pass "-u bsddb" to regrtest.py. test_bsddb3.py
231 is then enabled. Running in verbose mode may be helpful.
232
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000233_sqlite3
234 Python wrapper for SQLite library.
235
236 Get the source code through
237
238 svn export http://svn.python.org/projects/external/sqlite-source-3.3.4
239
240 To use the extension module in a Python build tree, copy sqlite3.dll into
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000241 the PCbuild folder. The source directory in svn also contains a .def file
242 from the binary release of sqlite3.
Martin v. Löwisb0912412006-03-13 15:37:40 +0000243
Mark Hammondf229f9f2002-12-03 05:47:26 +0000244_ssl
Tim Peterse8bcb252002-12-04 02:39:52 +0000245 Python wrapper for the secure sockets library.
Tim Peters4b5fb072000-07-01 00:03:43 +0000246
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000247 Get the source code through
Mark Hammondf229f9f2002-12-03 05:47:26 +0000248
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000249 svn export http://svn.python.org/projects/external/openssl-0.9.8g
Tim Peterse8bcb252002-12-04 02:39:52 +0000250
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000251 Alternatively, get the latest version from http://www.openssl.org.
Mark Hammondf229f9f2002-12-03 05:47:26 +0000252 You can (theoretically) use any version of OpenSSL you like - the
253 build process will automatically select the latest version.
254
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000255 You must install the NASM assembler from
256 http://www.kernel.org/pub/software/devel/nasm/binaries/win32/
257 for x86 builds. Put nasmw.exe anywhere in your PATH.
258
259 You can also install ActivePerl from
Mark Hammondf229f9f2002-12-03 05:47:26 +0000260 http://www.activestate.com/Products/ActivePerl/
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000261 if you like to use the official sources instead of the files from
262 python's subversion repository. The svn version contains pre-build
263 makefiles and assembly files.
264
265 The build process makes sure that no patented algorithms are included.
266 For now RC5, MDC2 and IDEA are excluded from the build. You may have
267 to manually remove $(OBJ_D)\i_*.obj from ms\nt.mak if the build process
268 complains about missing files or forbidden IDEA. Again the files provided
269 in the subversion repository are already fixed.
Mark Hammondf229f9f2002-12-03 05:47:26 +0000270
271 The MSVC project simply invokes PCBuild/build_ssl.py to perform
Tim Peterse8bcb252002-12-04 02:39:52 +0000272 the build. This Python script locates and builds your OpenSSL
Mark Hammondf229f9f2002-12-03 05:47:26 +0000273 installation, then invokes a simple makefile to build the final .pyd.
274
275 build_ssl.py attempts to catch the most common errors (such as not
276 being able to find OpenSSL sources, or not being able to find a Perl
277 that works with OpenSSL) and give a reasonable error message.
278 If you have a problem that doesn't seem to be handled correctly
279 (eg, you know you have ActivePerl but we can't find it), please take
280 a peek at build_ssl.py and suggest patches. Note that build_ssl.py
281 should be able to be run directly from the command-line.
282
Tim Peterse8bcb252002-12-04 02:39:52 +0000283 build_ssl.py/MSVC isn't clever enough to clean OpenSSL - you must do
284 this by hand.
Tim Peters4b5fb072000-07-01 00:03:43 +0000285
Martin v. Löwis13e50fe2004-07-20 14:37:48 +0000286Building for Itanium
287--------------------
288
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000289NOTE:
290Official support for Itanium builds have been dropped from the build. Please
Christian Heimesa8223142008-02-09 20:58:00 +0000291contact us and provide patches if you are interested in Itanium builds.
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000292
Tim Peterse82b00f2004-08-30 21:14:51 +0000293The project files support a ReleaseItanium configuration which creates
Martin v. Löwis13e50fe2004-07-20 14:37:48 +0000294Win64/Itanium binaries. For this to work, you need to install the Platform
295SDK, in particular the 64-bit support. This includes an Itanium compiler
296(future releases of the SDK likely include an AMD64 compiler as well).
297In addition, you need the Visual Studio plugin for external C compilers,
298from http://sf.net/projects/vsextcomp. The plugin will wrap cl.exe, to
Tim Peterse82b00f2004-08-30 21:14:51 +0000299locate the proper target compiler, and convert compiler options
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000300accordingly. The project files require atleast version 0.9.
Martin v. Löwis13e50fe2004-07-20 14:37:48 +0000301
Martin v. Löwis856bf9a2006-02-14 20:42:55 +0000302Building for AMD64
303------------------
304
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000305The build process for AMD64 / x64 is very similar to standard builds. You just
Martin v. Löwis1561bab2008-02-29 19:39:25 +0000306have to set x64 as platform. In addition, the HOST_PYTHON environment variable
307must point to a Python interpreter (at least 2.4), to support cross-compilation.
Martin v. Löwis856bf9a2006-02-14 20:42:55 +0000308
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000309Building Python Using the free MS Toolkit Compiler
310--------------------------------------------------
311
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000312Microsoft has withdrawn the free MS Toolkit Compiler, so this can no longer
313be considered a supported option. Instead you can use the free VS C++ Express
314Edition.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000315
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000316Profile Guided Optimization
317---------------------------
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000318
Christian Heimes25bb7832008-01-11 16:17:00 +0000319The solution has two configurations for PGO. The PGInstrument
320configuration must be build first. The PGInstrument binaries are
321lniked against a profiling library and contain extra debug
322information. The PGUpdate configuration takes the profiling data and
323generates optimized binaries.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000324
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000325The build_pgo.bat script automates the creation of optimized binaries. It
326creates the PGI files, runs the unit test suite or PyBench with the PGI
327python and finally creates the optimized files.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000328
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000329http://msdn2.microsoft.com/en-us/library/e7k32f4k(VS.90).aspx
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000330
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000331Static library
332--------------
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000333
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000334The solution has no configuration for static libraries. However it is easy
335it build a static library instead of a DLL. You simply have to set the
336"Configuration Type" to "Static Library (.lib)" and alter the preprocessor
337macro "Py_ENABLE_SHARED" to "Py_NO_ENABLE_SHARED". You may also have to
338change the "Runtime Library" from "Multi-threaded DLL (/MD)" to
339"Multi-threaded (/MT)".
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000340
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000341Visual Studio properties
342------------------------
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000343
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000344The PCbuild solution makes heavy use of Visual Studio property files
345(*.vsprops). The properties can be viewed and altered in the Property
346Manager (View -> Other Windows -> Property Manager).
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000347
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000348 * debug (debug macro: _DEBUG)
349 * pginstrument (PGO)
350 * pgupdate (PGO)
351 +-- pginstrument
352 * pyd (python extension, release build)
353 +-- release
354 +-- pyproject
355 * pyd_d (python extension, debug build)
356 +-- debug
357 +-- pyproject
358 * pyproject (base settings for all projects, user macros like PyDllName)
359 * release (release macro: NDEBUG)
360 * x64 (AMD64 / x64 platform specific settings)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000361
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000362The pyproject propertyfile defines _WIN32 and x64 defines _WIN64 and _M_X64
363although the macros are set by the compiler, too. The GUI doesn't always know
364about the macros and confuse the user with false information.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000365
Tim Petersf9a4a6e2000-07-01 20:38:27 +0000366YOUR OWN EXTENSION DLLs
Tim Peters4b5fb072000-07-01 00:03:43 +0000367-----------------------
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000368
Tim Peters4b5fb072000-07-01 00:03:43 +0000369If you want to create your own extension module DLL, there's an example
370with easy-to-follow instructions in ../PC/example/; read the file
371readme.txt there first.