mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
$ pkg-config --libs spdlog
-lspdlog -pthread -lfmt
$ lddtree /usr/bin/mumble
mumble => /usr/bin/mumble (interpreter => /lib64/ld-linux-x86-64.so.2)
libspdlog.so.1.15 => /usr/lib64/libspdlog.so.1.15
libfmt.so.12 => /usr/lib64/libfmt.so.12
ld-linux-x86-64.so.2 => /lib64/ld-linux-x86-64.so.2
libfmt.so.11 => /usr/lib64/libfmt.so.11
libprotobuf.so.31.1.0 => /usr/lib64/libprotobuf.so.31.1.0
[...]
We have to depend on libfmt:= because we link against it even though
we don't directly use it (because of spdlog headers).
Bug: https://bugs.gentoo.org/970739
Signed-off-by: Sam James <sam@gentoo.org>