Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

xcode7-beta symbol not found

0 votes

Seems the current wWise libraries on OSX don't play well with Xcode Beta 7...

While calling AK::SoundEngine::Init I'm seeing 'Symbol not found' errors on runtime binding for '_AudioUnitSetProperty' against the AudioToolbox framework.

It isn't clear if this functionality has been removed from the AudioToolbox framework (which would require changes to Wwise) or if it's simply the nature of beta development tools, and perhaps entirely something that will be resolved by an update to Xcode..

Anyone else having issues?

asked Jun 22, 2015 in General Discussion by Tim K. (480 points)

1 Answer

0 votes

Resolved.

This is indeed a problem with the xcode7 beta, something to do with how the symbols are ordered within their own frameworks.

This issue will occur if you are including both the AudioToolbox and the AudioUnit frameworks. You need to ensure that the AudioUnit framework is listed above the AudioToolbox framework, and this problem goes away. (Note that a clean + build, nor cleaning out cached or derived data will help here, it really is down to the ordering of the aforementioned libraries).

 

 

 

answered Jun 24, 2015 by Tim K. (480 points)
...