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