Changes between Version 85 and Version 86 of Getting-Started/iPhone


Ignore:
Timestamp:
Mar 11, 2016 1:03:20 PM (8 years ago)
Author:
riza
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Getting-Started/iPhone

    v85 v86  
    218218There are several issues with the use of Voice Processing IO Audio Unit in iOS 7, such as unable to mute the volume using the side volume button, unable to synchronize with the control center volume slide bar, significantly reduced volume for audio playback to speaker after a call. Currently there is no workaround for this. Please refer to ticket #1697 for more details. 
    219219 
    220 === Supporting multiple architectures (armv6, armv7, armv7s, and so on) === 
     220=== Supporting multiple architectures (armv6, armv7, armv7s, arm64, and so on) === 
    221221 
    222222You need to compile separately for each architecture. If your iPhone SDK has '''{{{llvm-gcc}}}''' compiler (which is the supported compiler starting iOS SDK 5) or '''{{{clang}}}''', then you need to set '''{{{ARCH}}}''' environment variable to the desired architecture before running {{{configure-iphone}}}, for example: 
    223223{{{ 
    224 export ARCH="-arch armv6" 
     224export ARCH="-arch arm64" 
    225225}}} 
    226226