Changes between Version 85 and Version 86 of Getting-Started/iPhone
- Timestamp:
- Mar 11, 2016 1:03:20 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Getting-Started/iPhone
v85 v86 218 218 There 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. 219 219 220 === Supporting multiple architectures (armv6, armv7, armv7s, a nd so on) ===220 === Supporting multiple architectures (armv6, armv7, armv7s, arm64, and so on) === 221 221 222 222 You 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: 223 223 {{{ 224 export ARCH="-arch arm v6"224 export ARCH="-arch arm64" 225 225 }}} 226 226