Im working with C++ application. I want to load my shared library to be loaded before any shared library loaded to my application.
One way is to use LD_PRELOAD
in the code. But is it possible to do above scenario without using LD_PRELOAD
?
Im working with C++ application. I want to load my shared library to be loaded before any shared library loaded to my application.
One way is to use LD_PRELOAD
in the code. But is it possible to do above scenario without using LD_PRELOAD
?