archlinux / alpm.rs

Rust bindings for libalpm
GNU General Public License v3.0
112 stars 21 forks source link

alpm.rs 3.0.4 fails to build with pacman 6.1.0 #40

Closed Ramenu closed 5 months ago

Ramenu commented 5 months ago

since libalpm.so.13 has been replaced with libalpm.so.14, the alpm crate fails to compile: error while loading shared libraries: libalpm.so.13: cannot open shared object file: No such file or directory

Morganamilo commented 5 months ago

That's a runtime error from a binary that was linked against libalpm 13. Alpm V3 targets libalpm 14 and should compile fine.

Ramenu commented 5 months ago

You're right. I had to rebuild the entire project from scratch in order for it to work. Thanks.