Changes between Version 79 and Version 80 of FAQ


Ignore:
Timestamp:
Oct 29, 2009 4:52:03 AM (15 years ago)
Author:
nanang
Comment:

Updated info for building universal binary for MacOS X

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v79 v80  
    13731373 
    13741374Universal binary means one binary that will work for both Intel and PPC version of OSX. Ruud Klaver reported that the following configure command will build universal binary: 
    1375  
    13761375 {{{ 
    1377 $ CFLAGS="-arch ppc -arch i386 -O2" ./configure 
     1376CFLAGS="-arch ppc -arch i386" \ 
     1377LDFLAGS="-arch ppc -arch i386" \ 
     1378./configure 
    13781379 }}} 
    1379  
    1380  
     1380Notes: 
     1381 - Specify additional option "{{{-isysroot /Developer/SDKs/MacOSX10.4u.sdk}}}" in above {{{CFLAGS}}} when building from PPC, please also make sure that the SDK is installed. 
     1382 - Do not do '{{{make dep}}}' as it won't work for multiple -archs targets. 
     1383 - Apply patch r2975 when working with the new [wiki:Audio_Dev_API Audio Device API], the patch will be included in 1.5 onward. 
    13811384 
    13821385=== Are there any ready to use softphone or open source SIP client for MacOS X? === #osx-client