Hi, when compiling my app on OS X 10.11 with Xcode 7 and then trying to run it on OS X 10.10, it crashes shortly after launch with the message
Dyld Error Message:
Symbol not found: _AudioUnitGetProperty
Referenced from: /Users/USER/Amadeus Pro.app/Contents/MacOS/Amadeus Pro
Expected in: /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
Indeed, when I dump the symbols of AudioToolbox on 10.11, I see _AudioUnitGetProperty, while on 10.10 I see __AT_AudioUnitGetProperty instead. For what it's worth, in Xcode 7 my app is linked against the 10.11 SDK, but targets OS X 10.6. Compiling the same project with Xcode 6.3 on 10.10 against the 10.10 SDK works fine and results in a binary that indeed runs on all versions of OS X down to 10.6. I would be very grateful for any idea of how to fix this, thanks in advance!