Changes between Version 16 and Version 17 of OSXUniversalDependencies
- Timestamp:
- 09/10/2008 01:47:10 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified OSXUniversalDependencies
v16 v17 22 22 23 23 {{{ 24 bjam --toolset=darwin macosx-version=10.4architecture=combined link=static24 bjam --toolset=darwin architecture=combined link=static 25 25 }}} 26 26 27 * macosx-version=10.4 allows the resulting binary to run on a 10.4 system, you'll probably need /Developer/SDKs/MacOSX10.4u available.28 27 * link=static gives you static libraries which means not having to fix-up the *.dylibs when installed into an app bundle. 29 28 * architecture=combined builds fat libraries with both i386 and ppc code. 29 30 Problems with boost 1.36 31 * macosx-version=10.4 was supposed the resulting binary to run on a 10.4 system, unfortunately the serialization library wouldn't link with the 10.4 SDK. 30 32 31 33 To configure boost 1.34.0 to build as universal binary, I ran their configure script which generated a user-config.jam. There I changed {{{ using darwin ; }}} to