I’m trying to solve keyboard issues on the RPi, more info here:
One approach I’m trying is to use RetroPie’s SDL mirror instead of the SDL files Urho3d comes with. (They had similar issues by the looks of things and changed SDL source a bit)
What I’ve tried so far is replacing the SDL src and include folders and trying to build Urho3d as one would normally.
I’m getting to [77%] stage (SDL builds) then I get loads of errors like:
undefined reference to 'SDL_ShowSimpleMessageBox'
So I did an:
nm libSDL.a > funcsDefined.txt
to see if the functions that have undefined references are there. They were there (some with the suffix _REAL, not sure what that means?)
Any ideas what avenues I could explore to fix this? I’ve been pulling my hair out for 2 days