sage
sage
@fischermario Could you do the same thing you did before, manually setting the `vipsffm.libpath.vips.override` option, using 1.5.2 please? I'm hoping the improved error logging includes something more explicit about what's...
Damn, the underlying error is just "Cannot open library" from `SymbolLookup.libraryLookup` 🤔 Out of curiosity, what does `ls -l /usr/lib/x86_64-linux-gnu/libvips.so.42` show for you? My best guess would be a permission...
Those permissions look sensible to me. Is it possible for you to share the entire command used to run the application? I'm also curious what the `LD_LIBRARY_PATH` environment variable looks...
And a couple more sense checks: * What does `ls -l /usr/lib/x86_64-linux-gnu/libvips.so.42.17.1` look like - does the symlinked file definitely exist/have the right permissions? * Does the same error happen...
Ran out of time today but will take a look as time permits after work this week. The glib error suggests that it did successfully load libvips, and glib was...
Could you give this command a try please - I found it mentioned for debugging where libraries are linked from: https://github.com/libvips/libvips/issues/712#issuecomment-322719454 `ldd `which vips` | grep libvips` I'm interested where...
Just to sense check, on macOS with a couple of tweaks to the run configuration, this worked OK: ``` org.springframework.boot spring-boot-maven-plugin /opt/homebrew/lib --enable-native-access=ALL-UNNAMED ``` You could also try this configuration,...
@fischermario Sorry this is proving tricky to debug. Could you share the output of: * `ls -al /usr/lib/x86_64-linux-gnu | grep vips` * `ls -al /usr/lib/x86_64-linux-gnu | grep glib-2.0` * `ls...
Still not sure what could be wrong here. I am wondering if `./mvnw` is stripping out library locations or something (like macOS does), but that wouldn't explain why the library...
Doing some more sense checking - I made a Dockerfile based on Ubuntu 24.04, that downloads a JDK, installs libvips, and runs the demo project without any extra options -...