Comment 8 for bug 2063207

Revision history for this message
Guilhem Lettron (guilhem-fr) wrote (last edit ):

Problem is more deep.
Both package are not properly done, using both a non-standard path for libraries: "/usr/lib/llvm-18/lib/"
So it makes import failing and conflict between i386 and amd64 packages.

I had to:
sudo cp /usr/lib/llvm-18/lib/libLLVM.so.18.1 /usr/lib/x86_64-linux-gnu/
sudo ln -s /usr/lib/x86_64-linux-gnu/libLLVM.so.18.1 /usr/lib/x86_64-linux-gnu/libLLVM.so.1

(the same for i386 after some packaging hacking to bypass overwrite like in #5)