Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit)

Okay so I had trouble running this on Debian. Some of the lib files are not exported as links. Im not sure how you can create installation work but I had to do following commands to get it work:

cd /lib

rm -f libOpenImageDenoise.so libOpenImageDenoise.so.1
ln -sf libOpenImageDenoise.so.1.4.3 libOpenImageDenoise.so
ln -sf libOpenImageDenoise.so.1.4.3 libOpenImageDenoise.so1

rm -f libtbb.so libtbb.so.12
ln -sf libtbb.so.12.5 libtbb.so
ln -sf libtbb.so.12.5 libtbb.so.12

This navigates to the lib folder, removes broken files and creates new links.

Interesting! I’m not creating the links myself; they just come as part of Intel’s Open Image Denoise library. I also have a laptop with a recent Debian version for testing and haven’t run into this issue so far. But I’m still learning how to properly deploy software on Linux, so have mercy on me! :P I’ll try to look into it. Thank you for letting me know.

Best regards,
Sascha

If you have some time to spare, you could try replacing the library with the one from their GitHub page and let me know if the issue still persists.

When I download current OpenImage release v2.3.2 I get this error:
./SDFModeler: error while loading shared libraries: libOpenImageDenoise.so.1: cannot open shared object file: No such file or directory
If I create symlink "libOpenImageDenoise.so.1" to latest library "libOpenImageDenoise.so.2.3.2" I get this error:
./SDFModeler: symbol lookup error: ./SDFModeler: undefined symbol: oidnSetFilter1b

Its likely latest library is not compatible with application

Version v1.4.3 works fine. There is no need to remake symlinks they work when extracted.

Yes, that is expected—the OIDN interface changed after version 1.4.3 and the library even became more bloated with all the GPU support. I haven’t been able to reproduce the issue so far, but I might try reuploading the release to see if that helps. Thanks for trying it out!

Issue is with the way its unzipped. Some file managers might have handy right click unzip archive option but that might fail to recreate links when its extracted.

Unziping archive with works:
unzip "SDFModeler - Linux.zip"