Zhu Zihao schreef op zo 13-03-2022 om 00:06 [+0800]: > Can you show me the link of the libcairo conflict example you said? > > I don't know what cause the segfaults in your example. C linker will > embed the full path of the library into the RUNPATH, unless > LD_LIBRARY_PATH is set, C library will use the dependencies they > found in > link time. It will embed the full path of the library. The problem is, it might embed multiple variants of the same library in the same binary. For the libcairo problem, see . Turns out it wasn't a segfault but another kind of problem. And it wasn't due to deduplication but rather buggy grafting. Still, I suppose something similar can happen with propagation. Greetings, Maxime.