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.

Can't Link wwise library to cocos2d-x project on ios

0 votes

when I try to run the projecg for iOS using compiler libc++ (LLVM c++ standard library with c++11 support) the library libAutoPannerMixer.a is not able to find some STL types at linking (e.g. std::allocator)


when I run installing process like in the example of the project WWise ios, cocos2d-x stops compiling as it is not able to find the thread.


Screenshots are attached. I suppose the problem is because library and cocos2d-x are builded with two compilers that are not compatible


 

asked Apr 5, 2018 in General Discussion by Vasiliy B. (140 points)

1 Answer

0 votes
I Added in project libstdc++.6.dylib and problem solved, but need solved analog problem on android

04-06 00:59:42.484  6596  6596 I AEE/AED :     #02 pc 0023aeb1  /system/lib/libart.so (_ZN3art9JavaVMExt17LoadNativeLibraryEP7_JNIEnvRKNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEP8_jobjectP8_jstringPS9_+1844)
04-06 00:59:42.484  6596  6596 I AEE/AED :     #03 pc 000036a3  /system/lib/libopenjdkjvm.so (JVM_NativeLoad+178)
04-06 00:59:42.484  6596  6596 I AEE/AED :     #04 pc 005dda35  /system/framework/arm/boot.oat (offset 0x56d000) (java.lang.Runtime.nativeLoad+144)
04-06 00:59:42.484  6596  6596 I AEE/AED :     #05 pc 005dd68d  /system/framework/arm/boot.oat (offset 0x56d000) (java.lang.Runtime.doLoad+136)
04-06 00:59:42.484  6596  6596 I AEE/AED :     #06 pc 005deb49  /system/framework/arm/boot.oat (offset 0x56d000) (java.lang.Runtime.loadLibrary0+540)
04-06 00:59:42.484  6596  6596 I AEE/AED :     #07 pc 005f2653  /system/framework/arm/boot.oat (offset 0x56d000) (java.lang.System.loadLibrary+78)
04-06 00:59:42.484  6596  6596 I AEE/AED :     #08 pc 000a94c1  /system/lib/libart.so (art_quick_invoke_stub_internal+64)
answered Apr 6, 2018 by Vasiliy B. (140 points)
...