]> git.saurik.com Git - wxWidgets.git/blame - wxPython/BUILD.osx.txt
Lots of fixes for OS/2
[wxWidgets.git] / wxPython / BUILD.osx.txt
CommitLineData
b6e5c445
RD
1Building wxPython on Mac OS X
2-----------------------------
3
4NOTE: OS X support is HIGHLY EXPERIMENTAL at this time. Most things
5 don't work correctly (or at all) yet.
6
7These are the steps I have used for building wxPython on Mac OS X 10.1
8with the Apple Developer Tools, a.k.a the Darwin version. I assume
9that you know your way around a command line and that you know how to
10get things from various CVS repositories as needed.
11
12
5ff5710d
RD
131. Python 2.2 is required. Get the source from www.python.org and
14 build Python.app and install it as described in the Mac/OSX/README
15 file.
b6e5c445
RD
16
172. You may want to make a symlink or two in /usr/local/bin so that
18 this version of Python can be found from the command line. For
19 example:
20
21 cd /usr/local/bin
5ff5710d 22 sudo ln -s /Library/Frameworks/Python.framework/Versions/2.2/bin/python2.2 python2.2
b6e5c445
RD
23 sudo ln -s python2.2 python
24
253. In a wxWindows CVS tree make a build directory.
26
27 cd ~/proj/wxWindows # or wherever you put it
28 mkdir build
29
304. Run configure from that build directory.
31
32 cd build
33 ../configure --with-mac --with-opengl --enable-debug
34
355. Make and install wxMac.
36
37 make
38 sudo make install
39
406. Build wxPython for testing (without installing it.)
41
42 cd ../wxPython
43 python setup.py IN_CVS_TREE=1 build_ext --inplace --debug
44
457. Test. The easiest way to do this from the CVS tree (witout having
46 to reinstall after every build) is to make a symlink in the demo
47 directory to the wxPython package dir, and then run stuff directly
48 from the demo.
49
50 cd demo
51 ln -s ../wxPython .
52
538. Now just navigate in the Finder to the demo directory and double
54 click demo.py, or simple.py, or whatever you want to run.
55 (Unfortunately it can't be done from the commandline in a terminal
56 window. You can open the Console app to see any tracebacks or
57 other output.)
58
599. Figure out what's wrong, figure out how to fix it, and then send
60 the patches to me. <wink>
61
62--Robin
63
64
65
66
67
68