Closed
Description
Hi guys!
I'm packing latest git version of Julia and today I noticed the following warning:
julia-unstable-debug.x86_64: W: no-soname /usr/lib64/libjulia-debug.so.0.5.0
Indeed, using objdump
I can see that there is no SONAME in the -debug
library:
# objdump -x libjulia-debug.so.0.5.0 |grep SONAME
#
Notice that everything is fine with libjulia.so.0.5.0
:
# objdump -x libjulia.so.0.5.0 |grep SONAME
SONAME libjulia.so.0.5
#
Is there anyway to fix this problem?
Activity