menu
 

AudiokineticのコミュニティQ&AはWwiseやStrataのコミュニティ内でユーザ同士が質問・回答をし合うことができるフォーラムです。Audiokineticテクニカルサポートチームからの回答をご希望の場合は、必ず サポートチケットページ をご利用ください。

0 支持

I have define the path var "WWISESDK" in the xcode project

and add the "$(WWISESDK)" to the header search paths

when I compile the code 

    AkMemSettings memSettings;

    memSettings.uMaxNumPools = 20;

    

    if ( AK::MemoryMgr::Init( &memSettings ) != AK_Success )

    {

        assert( !"Could not create the memory manager." );

        return false;

    }

it break out the err under

Undefined symbols for architecture x86_64:

  "AK::MemoryMgr::Init(AkMemSettings*)", referenced from:

      AppDelegate::applicationDidFinishLaunching() in AppDelegate.o

ld: symbol(s) not found for architecture x86_64

clang: error: linker command failed with exit code 1 (use -v to see invocation)

is anything I haven't add to the project?

tuo c. (100 ポイント) General Discussion

Please sign-in or register to answer this question.

...