On Thu, Apr 25, 2019 at 09:03:47AM +0200, tlaro...@polynum.com wrote: > The problem was that at installation time, the pkg used INSTALL_PROGRAM > instead of INSTALL_DATA for installing libraries, and INSTALL_PROGRAM is > set to install with the "-s" that is the stripped flag.
Basically: # uname -m && nm /usr/lib/libssl.so | grep SSL_library_init amd64 0000000000022411 T SSL_library_init # # uname -m && nm /usr/lib/libssl.so | grep SSL_library_init evbarm # Why this difference? Mayuresh