I have a binary which has a library dynamically linked to it, the binary isn't starting because the library is required to be loaded at the start of the binary. The library is listed under ldd command output for the binary too.
ldd app
libabc.so => not found
Is it possible to have the library lazy loaded which will not require the binary to resolve the library before starting?
Note: AIX has a flag -blazy
which specifies the library to be lazy loaded and binary is able to start without resolving the library.