]> git.saurik.com Git - wxWidgets.git/blame - wxPython/docs/BUILD.txt
Add Resize, SetRGBRect, Size, and GetOrFindMaskColour methods to wx.Image
[wxWidgets.git] / wxPython / docs / BUILD.txt
CommitLineData
d14a1e28
RD
1Building wxPython 2.5 for Development and Testing
2=================================================
3
e8a71fa0 4This file describes how I build wxWidgets and wxPython while doing
d14a1e28
RD
5development and testing, and is meant to help other people that want
6to do the same thing. I'll assume that you are using either a CVS
e8a71fa0 7snapshot from http://wxWidgets.org/snapshots/, a checkout from CVS, or
4efdef2c 8one of the released wxPython-src-2.5.* tarballs. I'll also assume that
d11c3d64
RD
9you know your way around your system, the compiler, etc. and most
10importantly, that you know what you are doing! ;-)
7d3000f8
RD
11
12If you want to also install the version of wxPython you build to be in
13your site-packages dir and be your default version of wxPython, then a
14few additional steps are needed, and you may want to use slightly
2e957aae
RD
15different options. See the INSTALL_ document for more details. If
16you only use the instructions in this BUILD_ document file then you
17will end up with a separate installation of wxPython and you can
18switch back and forth between this and the release version that you
19may already have installed.
20
21.. _INSTALL: INSTALL.html
22.. _BUILD: BUILD.html
7d3000f8 23
4efdef2c
RD
24If you want to make changes to any of the ``*.i`` files, (SWIG
25interface definition files,) or to regenerate the extension sources or
26renamer modules, then you will need an up to date version of SWIG,
27plus some patches. Get the sources for version 1.3.22, and then apply
28the patches in wxPython/SWIG and then build SWIG like normal. See the
29README.txt in the wxPython/SWIG dir for details about each patch and
30also info about those that may already have been applied to the SWIG
31sources. If you install this build of SWIG to a location that is not
32on the PATH (so it doesn't interfere with an existing SWIG install for
33example) then you can set a setup.py command-line variable named SWIG
34to be the full path name of the executable and the wxPython build will
35use it. See below for an example.
d14a1e28 36
2e957aae 37In the text below I'll use WXDIR with environment variable syntax
4efdef2c 38(either $WXDIR or %WXDIR%) to refer to the top level directory where
2e957aae
RD
39your wxWidgerts and wxPython sources are located. It will equate to
40whereever you checked out the wxWidgets module from CVS, or untarred
4efdef2c 41the wxPython-src tarball to. You can either substitute the $WXDIR text
2e957aae
RD
42below with your actual dir, or set the value in the environment and
43use it just like you see it below.
d14a1e28 44
b14395e4
RD
45If you run into what appears to be compatibility issues between
46wxWidgets and wxPython while building wxPython, be sure you are using
4efdef2c
RD
47the wxWidgets sources included with the wxPython-src tarball or the
48CVS snapshot, and not a previously installed version or a version
b14395e4
RD
49installed from one of the standard wxWidgets installers. With the
50"unstable" releases (have a odd-numbered minor release value, where
51the APIs are allowed to change) there are often significant
52differences between the W.X.Y release of wxWidgets and the W.X.Y.Z
53release of wxPython.
54
d14a1e28
RD
55
56
7d3000f8
RD
57Building on Unix-like Systems (e.g. Linux and OS X)
58---------------------------------------------------
d14a1e28 59
7d3000f8 60These platforms are built almost the same way while in development
d14a1e28 61so I'll combine the descriptions about their build process here.
e8a71fa0 62First we will build wxWidgets and install it to an out of the way
d14a1e28
RD
63place, then do the same for wxPython.
64
65
e8a71fa0
RD
661. Create a build directory in the main wxWidgets dir, and configure
67 wxWidgets. If you want to have multiple builds with different
d14a1e28
RD
68 configure options, just use different subdirectories. I normally
69 put the configure command in a script named ".configure" in each
70 build dir so I can easily blow away everything in the build dir and
71 rerun the script without having to remember the options I used
72 before::
73
2e957aae 74 cd $WXDIR
7f997e3f
RD
75 mkdir bld
76 cd bld
77 ../configure --prefix=/opt/wx/2.5 \
78 --with-gtk \
79 --with-opengl \
7f997e3f
RD
80 --enable-debug \
81 --enable-geometry \
82 --enable-sound --with-sdl \
83 --enable-display \
84
d14a1e28
RD
85
86 On OS X of course you'll want to use --with-mac instead of
5924e48d
RD
87 --with-gtk.
88
4efdef2c
RD
89 **NOTE**: Due to a recent change there is currently a dependency
90 problem in the multilib builds of wxWidgets on OSX, so I have
91 switched to using a monolithic build. That means that all of the
92 core wxWidgets code is placed in in one shared library instead of
93 several. wxPython can be used with either mode, so use whatever
94 suits you on Linux and etc. but use monolithic on OSX. To switch
eac928f0
RD
95 to the monolithic build of wxWidgets just add this configure flag::
96
97 --enable-monolithic \
98
4efdef2c
RD
99 By default GTK2 will be selected if its development pacakge is
100 installed on your build system. To force the use of GTK 1.2.x
101 instead add this flag::
5924e48d
RD
102
103 --disable-gtk2 \
104
4efdef2c
RD
105 To make the wxWidgets build be unicode enabled (strongly
106 recommended if you are building with GTK2) then add the following.
107 When wxPython is unicode enabled then all strings that are passed
108 to wx functions and methods will first be converted to unicode
109 objects, and any 'strings' returned from wx functions and methods
110 will actually be unicode objects.::
7f997e3f 111
7f997e3f 112 --enable-unicode \
d14a1e28
RD
113
114 Notice that I used a prefix of /opt/wx/2.5. You can use whatever
7d3000f8
RD
115 path you want, such as a path in your HOME dir or even one of the
116 standard prefix paths such as /usr or /usr/local if you like, but
117 using /opt this way lets me easily have multiple versions and ports
e8a71fa0
RD
118 of wxWidgets "installed" and makes it easy to switch between them,
119 without impacting any versions of wxWidgets that may have been
7d3000f8
RD
120 installed via an RPM or whatever. For the rest of the steps below
121 be sure to also substitute "/opt/wx/2.5" with whatever prefix you
122 choose for your build.
123
124 If you want to use the image and zlib libraries included with
e8a71fa0 125 wxWidgets instead of those already installed on your system, (for
7d3000f8
RD
126 example, to reduce dependencies on 3rd party libraries) then you
127 can add these flags to the configure command::
128
129 --with-libjpeg=builtin \
130 --with-libpng=builtin \
131 --with-libtiff=builtin \
132 --with-zlib=builtin \
133
134
e8a71fa0
RD
1352. To build and install wxWidgets you could just use the "make"
136 command but there are other libraries besides the main wxWidgets
7d3000f8
RD
137 libs that also need to be built so again I make a script to do it
138 all for me so I don't forget anything. This time it is called
5f8d3b6c 139 ".make" (I use the leading "." so when I do ``rm -r *`` in my build
7d3000f8 140 dir I don't lose my scripts too.) This is what it looks like::
d14a1e28
RD
141
142 make $* \
143 && make -C contrib/src/gizmos $* \
4efdef2c 144 && make -C contrib/src/stc $*
d14a1e28
RD
145
146 So you just use .make as if it where make, but don't forget to set
147 the execute bit on .make first!::
148
149 .make
7f997e3f 150 .make install
d14a1e28
RD
151
152 When it's done you should have an installed set of files under
e8a71fa0
RD
153 /opt/wx/2.5 containing just wxWidgets. Now to use this version of
154 wxWidgets you just need to add /opt/wx/2.5/bin to the PATH and set
d14a1e28
RD
155 LD_LIBRARY_PATH (or DYLD_LIBRARY_PATH on OS X) to /opt/wx/2.5/lib.
156
157
1583. I also have a script to help me build wxPython and it is checked in
2e957aae
RD
159 to the CVS as wxWidgets/wxPython/b, but you probably don't want to
160 use it as it's very cryptic and expects that you want to run SWIG,
161 so if you don't have the latest patched up version of SWIG then
162 you'll probably get stuck. So I'll just give the raw commands
163 instead.
d14a1e28
RD
164
165 We're not going to install the development version of wxPython with
166 these commands, so it won't impact your already installed version
167 of the latest release. You'll be able test with this version when
168 you want to, and use the installed release version the rest of the
653d2f0c 169 time. If you want to install the development version please read
7d3000f8
RD
170 INSTALL.txt.
171
172 If you have more than one version of Python on your system then be
173 sure to use the version of Python that you want to use when running
174 wxPython programs to run the setup.py commands below. I'll be
175 using python2.3.
d14a1e28
RD
176
177 Make sure that the first wx-config found on the PATH is the one you
2e957aae 178 installed above, and then change to the $WXDIR/wxPython dir and
d14a1e28
RD
179 run the this command::
180
2e957aae 181 cd $WXDIR/wxPython
7f997e3f 182 python2.3 setup.py build_ext --inplace --debug
d14a1e28 183
7d3000f8
RD
184 If your new wx-config script is not on the PATH, or there is some
185 other version of it found first, then you can add this to the
186 command line to ensure your new one is used instead::
187
7f997e3f 188 WX_CONFIG=/opt/wx/2.5/bin/wx-config
7d3000f8 189
5924e48d
RD
190 By default setup.py will assume that you built wxWidgets to use
191 GTK2. If you built wxWidgets to use GTK 1.2.x then you should add
192 this flag to the command-line::
193
dd7cd4a0 194 WXPORT=gtk
5924e48d 195
df73e099 196 If you would like to do a Unicode enabled build (all strings sent
5924e48d 197 to or retruned from wx functions are Unicode objects) and your
551d48ed 198 wxWidgets was built with unicode enabled then add this flag::
d14a1e28 199
5924e48d 200 UNICODE=1
d14a1e28
RD
201
202 If you are wanting to have the source files regenerated with swig,
203 then you need to turn on the USE_SWIG flag and optionally tell it
204 where to find the new swig executable, so add these flags::
205
7f997e3f 206 USE_SWIG=1 SWIG=/opt/swig/bin/swig
d14a1e28 207
644e1683
RD
208 If you get errors about being unable to find libGLU, wxGLCanvas
209 being undeclared, or something similar then you can add
55deb208
RD
210 BUILD_GLCANVAS=0 to the setup.py command line to disable the
211 building of the glcanvas module.
7d3000f8 212
d14a1e28 213 When the setup.py command is done you should have fully populated
2e957aae
RD
214 wxPython and wx packages locally in $WXDIR/wxPython/wxPython and
215 $WXDIR/wxPython/wx, with all the extension modules (``*.so`` files)
216 located in the wx package.
d14a1e28
RD
217
218
653d2f0c 2194. To run code with the development version of wxPython, just set the
2e957aae
RD
220 PYTHONPATH to the wxPython dir located in the source tree. For
221 example::
d14a1e28 222
2e957aae
RD
223 export LD_LIBRARY_PATH=/opt/wx/2.5/lib
224 export PYTHONPATH=$WXDIR/wxPython
225 cd $WXDIR/wxPython/demo
7f997e3f 226 python2.3 demo.py
d14a1e28 227
7d3000f8
RD
228 OS X NOTE: You need to use "pythonw" on the command line to run
229 wxPython applications. This version of the Python executable is
230 part of the Python Framework and is allowed to interact with the
d11c3d64 231 display. You can also double click on a .py or a .pyw file from
2e957aae 232 the finder (assuming that the PythonLauncher app is associated with
7d3000f8
RD
233 these file extensions) and it will launch the Framework version of
234 Python for you. For information about creating Applicaiton Bundles
235 of your wxPython apps please see the wiki and the mail lists.
236
237 SOLARIS NOTE: If you get unresolved symbol errors when importing
238 wxPython and you are running on Solaris and building with gcc, then
239 you may be able to work around the problem by uncommenting a bit of
240 code in setup.py and building again. Look for 'SunOS' in setup.py
241 and uncomment the block containing it. The problem is that Sun's ld
242 does not automatically add libgcc to the link step.
d14a1e28
RD
243
244
245
246
247Building on Windows
248-------------------
249
250The Windows builds currently require the use of Microsoft Visual C++.
251Theoretically, other compilers (such as mingw32 or the Borland
252compilers) can also be used but I've never done the work to make that
253happen. If you want to try that then first you'll want to find out if
254there are any tricks that have to be done to make Python extension
255modules using that compiler, and then make a few changes to setup.py
34621cc5 256to accommodate that. (And send the patches to me.) If you plan on
d14a1e28
RD
257using VisualStudio.Net (a.k.a. MSVC 7.1) keep in mind that you'll also
258have to build Python and any other extension modules that you use with
2e957aae 259that compiler because a different version of the C runtime library is
d14a1e28 260used. The Python executable that comes from PythonLabs and the
7d3000f8 261wxPython extensions that I distribute are built with MSVC 6 with all
2e957aae
RD
262the Service Packs applied. This policy will change with Python 2.4
263and MSVC 7.1 will be used starting with that version.
d14a1e28 264
653d2f0c 265If you want to build a debuggable version of wxWidgets and wxPython you
d14a1e28
RD
266will need to have also built a debug version of Python and any other
267extension modules you need to use. You can tell if you have them
268already if there is a _d in the file names, for example python_d.exe
269or python23_d.dll. If you don't need to trace through the C/C++ parts
270of the code with the debugger then building the normal (or hybrid)
271version is fine, and you can use the regular python executables with
272it.
273
4efdef2c
RD
274Starting with 2.5.3.0 wxPython can be built for either the monlithic
275or the multi-lib wxWidgets builds. (Monolithic means that all the
276core wxWidgets code is in one DLL, and multi-lib means that the core
277code is divided into multiple DLLs.) To select which one to use
278specify the MONOLITHIC flag for both the wxWidgets build and the
279wxPython build as shown below, setting it to either 0 or 1.
280
d14a1e28 281Just like the unix versions I also use some scripts to help me build
a8dc2317
RD
282wxWidgets, but I use some non-standard stuff to do it. So if you have
283bash (cygwin or probably MSYS too) or 4NT plus unix-like cat and sed
284programs then there is a copy of my wxWidgets build scripts in
285%WXDIR%\\wxPython\\distrib\\msw. Just copy them to
286%WXDIR%\\build\\msw and you can use them to do your build, otherwise
287you can do everything by hand as described below. But if you do work
288by hand and something doesn't seem to be working correctly please
289refer to the build scripts to see what may need to be done
290differently.
291
64316568 292The \*.btm files are for 4NT and the others are for bash. They are::
a8dc2317
RD
293
294 .make/.make.btm Builds the main lib and the needed contribs
295 .mymake/.mymake.btm Builds just one lib, use by .make
296 .makesetup.mk A makefile that will copy and edit setup.h
297 as needed for the different types of builds
298
299Okay. Here's what you've been waiting for, the instructions! Adapt
300accordingly if you are using the bash shell.
d14a1e28 301
e8a71fa0 3021. Set an environment variable to the root of the wxWidgets source
2e957aae 303 tree. This is used by the makefiles::
d14a1e28 304
2e957aae 305 set WXWIN=%WXDIR%
d14a1e28 306
b14395e4 3072. Copy setup0.h to setup.h::
d14a1e28 308
2e957aae 309 cd %WXDIR%\include\wx\msw
7f997e3f 310 copy setup0.h setup.h
d14a1e28 311
7d3000f8 312
a8dc2317 3133. Edit %WXDIR%\\include\\wx\\msw\\setup.h and change a few settings::
d14a1e28 314
7f997e3f
RD
315 wxDIALOG_UNIT_COMPATIBILITY 0
316 wxUSE_DEBUG_CONTEXT 1
317 wxUSE_MEMORY_TRACING 1
318 wxUSE_DIALUP_MANAGER 0
319 wxUSE_GLCANVAS 1
320 wxUSE_POSTSCRIPT 1
321 wxUSE_AFM_FOR_POSTSCRIPT 0
322 wxUSE_DISPLAY 1
a8dc2317
RD
323
324 If you are using my build scripts then a few more settings will be
325 changed and then a copy of setup.h is placed in a subdir of
326 %WXWIN%\\lib\vc_dll. If you are doing it by hand and making a
327 UNICODE build, then also change these::
328
329 wxUSE_UNICODE 1
330 wxUSE_UNICODE_MSLU 1
331
332 If you are doing a "hybrid" build (which is the same as the
333 binaries that I release) then also change these::
334
335 wxUSE_MEMORY_TRACING 0
336 wxUSE_DEBUG_CONTEXT 0
337
d14a1e28 338
b14395e4 3394. Make sure that %WXDIR%\\lib\\vc_dll directory is on the PATH. The
312cca17
RD
340 wxWidgets DLLs will end up there as part of the build and so you'll
341 need it on the PATH for them to be found at runtime.
d14a1e28 342
7d3000f8 343
a8dc2317
RD
3445. Change to the %WXDIR%\\build\\msw directory
345
346 cd %WXDIR%\\build\\msw
d14a1e28 347
7d3000f8 348
a8dc2317
RD
3496. If using my scripts then use the .make.btm command to build
350 wxWidgets. It needs one command-line parameter which controls what
351 kind of build(s) to do. Use one of the following::
d14a1e28 352
7f997e3f
RD
353 debug Build debug version
354 hybrid Build hybrid version
355 both Both debug and hybrid
356 debug-uni Build a debug unicode library
357 hybrid-uni Hybrid unicode (see the pattern yet? ;-)
358 both-uni and finally both unicode libraries
d14a1e28
RD
359
360 For example::
361
362 .make hybrid
363
a8dc2317
RD
364 You can also pass additional command line parameters as needed and
365 they will all be passed on to the nmake commands, for example to
366 clean up the build::
7d3000f8
RD
367
368 .make hybrid clean
369
a8dc2317
RD
370 If *not* using my scripts then you can do it by hand by directly
371 executing nmake with a bunch of extra command line parameters.
372 The base set are::
373
4efdef2c 374 -f makefile.vc OFFICIAL_BUILD=1 SHARED=1 MONOLITHIC=1 USE_OPENGL=1
a8dc2317
RD
375
376 If doing a debug build then add::
377
378 BUILD=debug
379
380 otherwise add these::
381
382 DEBUG_FLAG=1 CXXFLAGS=/D__NO_VC_CRTDBG__ WXDEBUGFLAG=h BUILD=release
383
384 If doing a Unicode build then add these flags::
385
386 UNICODE=1 MSLU=1
387
388 Now, from the %WXDIR%\\build\\msw directory run nmake with your
389 selection of command-line flags as described above. Repeat this
390 same command from the following directories in order to build the
391 contrib libraries::
392
393 %WXDIR%\contrib\build\gizmos
a8dc2317 394 %WXDIR%\contrib\build\stc
a8dc2317 395
d14a1e28 396
a8dc2317
RD
3977. When that is all done it will have built the main wxWidgets DLLs
398 and also some of the contribs DLLs. There should be a ton of DLLs
399 and lots of lib files and other stuff in %WXDIR%\\lib\\vc_dll.
d14a1e28
RD
400
401
4028. Building wxPython on Windows is very similar to doing it for the
403 unix systems. We're not going to install the development version
404 of wxPython with these commands, so it won't impact your already
7d3000f8
RD
405 installed version of the latest release. You'll be able to test
406 with this version when you want to, and use the installed release
d14a1e28 407 version the rest of the time. If you ever do want to install the
653d2f0c 408 development version please refer to INSTALL.txt.
d14a1e28 409
b14395e4 410 Change to the %WXDIR%\\wxPython dir and run the this command,
a8dc2317 411 making sure that you use the version of python that you want to
4efdef2c
RD
412 build for (if you have more than one on your system) and to match
413 the MONOLITHIC flag with how you built wxWidgets::
d14a1e28 414
2e957aae 415 cd %WXDIR%\wxPython
4efdef2c 416 python setup.py build_ext --inplace MONOLITHIC=1
d14a1e28
RD
417
418 If you are wanting to have the source files regenerated with swig,
419 then you need to turn on the USE_SWIG flag and optionally tell it
420 where to find the new swig executable, so add these flags::
421
7f997e3f 422 USE_SWIG=1 SWIG=e:\projects\SWIG-cvs\swig.exe
d14a1e28 423
e8a71fa0 424 If you built a Unicode version of wxWidgets and want to also build
7d3000f8
RD
425 the Unicode version of wxPython then add this flag::
426
427 UNICODE=1
428
e8a71fa0 429 If you have a debug version of Python and wxWidgets and want to
d14a1e28 430 build a debug version of wxPython too, add the --debug flag to the
8eda5e35
RD
431 command line. You should then end up with a set of ``*_d.pyd``
432 files in the wx package and you'll have to run ``python_d.exe`` to
433 use them. The debug and hybrid(release) versions can coexist.
d14a1e28 434
d1a6e2b7 435 When the setup.py command is done you should have fully populated
2e957aae
RD
436 wxPython and wx packages locally in %WXDIR%/wxPython/wxPython and
437 %WXDIR%/wxPython/wx, with all the extension modules (``*.pyd``
8eda5e35 438 files) located in the wx package.
d14a1e28
RD
439
440
653d2f0c 4419. To run code with the development version of wxPython, just set the
d14a1e28
RD
442 PYTHONPATH to the wxPython dir in the CVS tree. For example::
443
2e957aae
RD
444 set PYTHONPATH=%WXDIR%\wxPython
445 cd %WXDIR\wxPython\demo
7f997e3f 446 python demo.py
d14a1e28 447
7d3000f8 448