Adamcake / Bolt

An alternative launcher for your favourite MMO
GNU Affero General Public License v3.0
159 stars 22 forks source link

Won't launch after libfmt update to version 11 #67

Open Courie opened 1 week ago

Courie commented 1 week ago

Trying to launch bolt-launcher gives me the error: ./bolt: error while loading shared libraries: libfmt.so.10: cannot open shared object file: No such file or directory

Downgrading to fmt version 10 fixes the issue, but is not ideal.

Using Arch Linux.

Thank you.

Adamcake commented 1 week ago

You need to rebuild Bolt. Bolt links libfmt.so using -lfmt when compiling, which, at the time when you first installed it, resolved to libfmt.so.10. So now you have a Bolt binary with a hard dependency on libfmt.so.10, even though that no longer exists on your system. Building it again will update those references.

Arch doesn't seem to have any solution to this problem, unfortunately.