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