SuperSearchEditor plugin fails to load

i’ve compiled UE for my opensuse, but it fails to start. it shows splash screen and then message box about SuperSearchPlugin. It says that file is missing. But in console there is a path to Engine/Plugins/Editor/SuperSearchEditor/Binaries/Linux/ and there is needed module.

but ldd shows that it is missing some libs:

            libUE4Editor-Core.so => not found
            libUE4Editor-CoreUObject.so => not found
            libUE4Editor-Engine.so => not found
            libUE4Editor-SuperSearch.so => not found

but those libs ofcourse located in Engine/Binaries/Linux/ from where UEditor is started.

adding main folder to LD_LABRARY_PATH does not help. may be this is not the cause?

please help me to solve this, i don’t already understand what is happening here.

Please apply the changes from this pull request: https://github.com/EpicGames/UnrealEngine/pull/2488 OpenSUSE, unlike Ubuntu, ships with ld that by default uses new DT_RUNPATH, which behaves differently than DT_RPATH.

thank you! it fixed the issue!