Jak opravit cargo build chybu: The system library required by crate was not found

Problém

Při build Rust projektu s Cargo se můžete setkat s chybou jako je tato:

cargo_libpcsclite_hint.sh
The system library `libpcsclite` required by crate `pcsc-sys` was not found.
The file `libpcsclite.pc` needs to be installed and the PKG_CONFIG_PATH environment variable must contain its parent directory.
The PKG_CONFIG_PATH environment variable is not set.

Řešení

Řešení je pod chybovou zprávou ve výstupu cargo. V závislosti na vaší linuxové distribuci potřebujete nainstalovat příslušný vývojářský balíček, který poskytuje soubor libpcsclite.pc.

cargo_libpcsclite_hint.sh
HINT: if you have installed the library, try setting PKG_CONFIG_PATH to the directory containing `libpcsclite.pc`.

If you are using Debian (or a derivative), try:

    $ sudo apt install pkgconf libpcsclite-dev

If you are using Arch (or a derivative), try:

    $ sudo pacman -S pkgconf pcsclite

If you are using Fedora (or a derivative), try:

    $ sudo dnf install pkgconf pcsc-lite-devel

Podívejte se na podobné články podle kategorie: Rust