Greetings, I compiled lzdoom for RG351P handled device (RK3326 chipset), I moved all the needed libraries, wad, pk3 and config (latest stable release, https://github.com/drfrag666/gzdoom/releases/tag/3.87c), however now I got this issue:
```
*** Fatal Error ***
librga:RGA_GET_VERSION:4.00,4.000000
ctx=0x558c3cde70,ctx->rgaFd=4
Rga built version:version:+2017-09-28 10:12:42
Address not mapped to object (signal 11)
Address: 0x74532e00000016
```
My launch command is:
```
LD_LIBRARY_PATH=/storage/roms/ports/lzdoom/lib:/usr/lib /storage/roms/ports/lzdoom/lzdoom "+fullscreen 1" +"snd_mididevice -3" +"vid_vsync 1" -width 480 -height 320 -config "/storage/roms/gamedata/lzdoom/lzdoom.ini" -iwad "/storage/roms/doom/iwads/plutonia.wad"
```
but I tried all the non opengl related parameters here:
```
local params=("+fullscreen 1")
local launcher_prefix="DOOMWADDIR=$romdir/ports/doom"
if isPlatform "mesa" || isPlatform "gl"; then
params+=("+vid_renderer 1")
elif isPlatform "gles"; then
params+=("+vid_renderer 0")
fi
# FluidSynth is too memory/CPU intensive
if isPlatform "arm"; then
params+=("+'snd_mididevice -3'")
fi
if isPlatform "kms"; then
params+=("+vid_vsync 1" "-width %XRES%" "-height %YRES%")
fi
```
How can I fix this?
logfile: https://we.tl/t-bx4niNncUj