Changes between Version 11 and Version 12 of OSXUniversalDependencies


Ignore:
Timestamp:
05/21/2007 05:05:08 PM (17 years ago)
Author:
diane
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OSXUniversalDependencies

    v11 v12  
    88
    99{{{
    10 configure --prefix=/usr/local/qt/4.1.4 -qt-libpng -system-zlib -qt-libjpeg -qt-gif -qt-libmng -fast -confirm-license -universal
     10configure --prefix=/usr/local/qt/4.2.3 -qt-libpng -system-zlib -qt-libjpeg -qt-gif -qt-libmng -fast -confirm-license -universal
    1111}}}
    1212
     
    1919Boost unfortunately uses its own unique build system and getting the options right isn't nearly as easy.
    2020
    21 This blob of bjam options wil build boost as a universal binary with optimization and debugging on.
     21To configure boost 1.34.1 to build as universal binary, I ran their configure script which generated a user-config.jam. There I changed {{{ using darwin : ; }}} to
     22
     23{{{
     24using darwin : 4.0 : g++-4.0 :
     25  <cflags>"-isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386"
     26  <linkflags>"-Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk -arch ppc -arch i386"
     27;
     28}}}
     29
     30To configure boost 1.33.1 as a universal binary with optimization and debugging on I used the following
    2231
    2332{{{