Trying out doxygen Problems building new wx

building wx

Below are the steps I sussed out in the waning days of 0.7alpha2 for building wx from scratch, assuming a fresh checkout. I put in lines between directory changes.

cd chandler
svn update

cd chandler
make install; make DEBUG=1 install

cd ../external
make compilers; make world; make DEBUG=1 world
make to-python      
(Note: can ln -s ../chandler/release . instead)

cd swig
make
cd ../../internal/wx
make build; make drop

This is likely overkill since you won’t always want release and debug versions of everything, but I find it handy to have around.

2 Responses to “building wx”

  1. bear Says:
    it is a lot of overkill :)

    I would try this instead:

    cd chandler
    svn up; make install; make DEBUG=1 install

    cd ../external
    make compilers   (note this only needs to be done once)
    make to-python; make DEBUG=1 to-python

    cd ../internal/wx
    make build drop
    you don’t need to do swig as a seperate step as will be done as part of the to-python sequence
    [Edited by Reid 2006-06-03 02:54 EDT]
  2. Reid Says:
    I assume you meant to add a “cd chandler” after that “svn up“, right? :-D

Leave a Reply