Community Q&A

Welcome to Audiokinetic’s community-driven Q&A forum. This is the place where Wwise and Strata users help each other out. For direct help from our team, please use the Support Tickets page. To report a bug, use the Bug Report option in the Audiokinetic Launcher. (Note that Bug Reports submitted to the Q&A forum will be rejected. Using our dedicated Bug Report system ensures your report is seen by the right people and has the best chance of being fixed.)

To get the best answers quickly, follow these tips when posting a question:

  • Be Specific: What are you trying to achieve, or what specific issue are you running into?
  • Include Key Details: Include details like your Wwise and game engine versions, operating system, etc.
  • Explain What You've Tried: Let others know what troubleshooting steps you've already taken.
  • Focus on the Facts: Describe the technical facts of your issue. Focusing on the problem helps others find a solution quickly.

+1 vote

Hi Wwisers !!!

I have installed Wwise Launcher and built a version for Linux (on Windows laptop).

Inside SDK directory we have Linux_x64 and Linux_x32 containing respectively static and shared librairies for 64bits and 32bits architectures.

I used the Linux_x64 to build a custom sound engine and it works well.

I have a problem to build it on a raspberry 4 (Raspbian 32 bits/ ARMv7l) using Linux_x32 static and shared librairies.

arm-linux-gnueabihf-g++ -o bin/sound-engine obj/sound-engine.o obj/SoundEngine/AkDefaultIOHookBlocking.o obj/SoundEngine/AkDefaultIOHookDeferred.o obj/SoundEngine/AkFileLocationBase.o obj/SoundEngine/AkFilePackage.o obj/SoundEngine/stdafx.o obj/SoundEngine/AkDefaultLowLevelIODispatcher.o obj/SoundEngine/AkMultipleFileLocation.o obj/SoundEngine/AkFilePackageLUT.o -L./lib/static/armv7l -lAkMemoryMgr -lAkStreamMgr -lAkMusicEngine -lAkSoundEngine -lCommunicationCentral -lAkSpatialAudio -L./lib/shared/armv7l -lAkAudioInput -lAkCompressor -lAkDelay -lAkExpander -lAkFlanger -lAkGain -lAkGuitarDistortion -lAkHarmonizer -lAkMatrixReverb -lAkMotion -lAkParametricEQ -lAkPeakLimiter -lAkPitchShifter -lAkRecorder -lAkReflect -lAkRoomVerb -lAkSilenceGenerator -lAkSineTone -lAkSoundSeedAir -lAkSoundSeedImpact -lAkStereoDelay -lAkSynthOne -lAkTimeStretch -lAkToneGen -lAkTremolo -lAuro -lMasteringSuite -lMcDSP -liZotope -lpthread -ldl

/usr/bin/ld: skipping incompatible ./lib/static/armv7l/libAkMemoryMgr.a when searching for -lAkMemoryMgr
/usr/bin/ld: cannot find -lAkMemoryMgr

and so on with every library.

I think I need to use Linux_arm SDK librairies but Wwise Launcher doesn't offer such a target.

Any ideas ?

Saïd

in General Discussion by Saïd L. (160 points)

1 Answer

+2 votes
 
Best answer
We do not provide prebuilt binaries for Linux ARM at the moment; only x86 and x86_64 are provided.

You can ask for L2 source code access and then it would then be possible to compile the Sound Engine with an ARM toolchain using the provided Makefiles.
by Samuel L. (Audiokinetic) (23.6k points)
selected by Saïd L.
...