From: Matthew B. <mat...@gm...> - 2013-10-23 21:10:26
|
Hi, On Wed, Oct 23, 2013 at 12:37 PM, Chris Barker <chr...@no...> wrote: > On Wed, Oct 23, 2013 at 11:30 AM, Russell E. Owen <ro...@uw...> wrote: >> The last ones I got from you worked very well: just a few test failures >> and the current one seems to be doing about the same. > > worked well for me too (something odd with wx back end re-rendering, > but I doubt that's a Mac build issue...) > > I tok a quick look at your waf scripts and I couldn't tell how you are > handling the external compiled dependencies (png, zlib, freetype) -- > are these statically linked in? Yup: https://github.com/matthew-brett/mpl-osx-binaries/blob/master/wscript#L20 through line 44 define the build rules for the libraries. I then (this came from John H's make script I think) delete any shared libraries: https://github.com/matthew-brett/mpl-osx-binaries/blob/master/wscript#L183 and force mpl to link against these libraries first by setting 'basedir' in 'setup.cfg': https://github.com/matthew-brett/mpl-osx-binaries/blob/master/wscript#L183 I should probably disable building the shared libraries as Matt T does in his builds. Cheers, Matthew |