I have written a dynamic library, let me call it "libX", which uses a dynamic openSSL library and another dynamic library "libY". The latter one is obviously statically linked against openSSL.
When I call a function of libY I get a Bus Error in the openSLL library loaded by libX! Obviously libY does not use its own static openssl but the dynamic one loaded by libX. I think this might be the reason for the Bus Error.
So my question is, what can I do to let libY use the static openssl version which it is linked to? I should note that libY is a proprietary binary of an external company which I cannot change.
Some notes:
libX does not export openSSL symbols, because it has been build with the -fvisibility=hidden option. It has been compiled with llvm-g++-4.2.1.
libY exports openSSL symbols. Looking at those with "nm" shows me that they are all defined (symbol type 'T').
The problem remains if I link libX to openSSL statically, too. libY still calls into libX' openSSL then.