Changes between Version 11 and Version 12 of OSXUniversalDependencies
- Timestamp:
- 05/21/2007 05:05:08 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OSXUniversalDependencies
v11 v12 8 8 9 9 {{{ 10 configure --prefix=/usr/local/qt/4. 1.4-qt-libpng -system-zlib -qt-libjpeg -qt-gif -qt-libmng -fast -confirm-license -universal10 configure --prefix=/usr/local/qt/4.2.3 -qt-libpng -system-zlib -qt-libjpeg -qt-gif -qt-libmng -fast -confirm-license -universal 11 11 }}} 12 12 … … 19 19 Boost unfortunately uses its own unique build system and getting the options right isn't nearly as easy. 20 20 21 This blob of bjam options wil build boost as a universal binary with optimization and debugging on. 21 To 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 {{{ 24 using 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 30 To configure boost 1.33.1 as a universal binary with optimization and debugging on I used the following 22 31 23 32 {{{