Set DT_SONAME when building dylibs
authorAngus Lees <gus@debian.org>
Thu, 4 Aug 2022 07:50:12 +0000 (08:50 +0100)
committerEmilio Pozuelo Monfort <pochu@debian.org>
Thu, 4 Aug 2022 07:50:12 +0000 (08:50 +0100)
commit1a457e9dd6495e4032c6367fc24c5a6941d63a45
tree8a43287c259ef0d605b7c9b030f78c33cc06a2e3
parent25e4022c88998be88fa62fb06423812cf23a4bbf
Set DT_SONAME when building dylibs

Forwarded: no

In Rust, library filenames include a version-specific hash to help
the run-time linker find the correct version.  Unlike in C/C++, the
compiler looks for all libraries matching a glob that ignores the
hash and reads embedded metadata to work out versions, etc.

The upshot is that there is no need for the usual "libfoo.so ->
libfoo-1.2.3.so" symlink common with C/C++ when building with Rust,
and no need to communicate an alternate filename to use at run-time
vs compile time.  If linking to a Rust dylib from C/C++ however, a
"libfoo.so -> libfoo-$hash.so" symlink may well be useful and in
this case DT_SONAME=libfoo-$hash.so would be required.  More
mundanely, various tools (eg: dpkg-shlibdeps) complain if they don't
find DT_SONAME on shared libraries in public directories.

This patch passes -Wl,-soname=$outfile when building dylibs (and
using a GNU linker).

Gbp-Pq: Name d-rustc-add-soname.patch
compiler/rustc_codegen_ssa/src/back/link.rs