bindings: rust: Allow reusing locally installed gpio library
authorViresh Kumar <viresh.kumar@linaro.org>
Tue, 24 Jan 2023 08:23:43 +0000 (13:53 +0530)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Tue, 24 Jan 2023 09:14:18 +0000 (10:14 +0100)
commit27b28ba156de7af257e2828e5d8ddee8099e55cb
tree62d6d256d956e6cdfd43fde19e8d29da1cf81828
parent76bedf88d17665c9dbd6f9a618437806ff119b07
bindings: rust: Allow reusing locally installed gpio library

The rust crates builds fine when built with the 'make' command, as
static linking works fine. But when referenced from a remote rust crate,
it gives following error:

error: could not find native static library `gpiod`, perhaps an -L flag is missing?

This happens since we only support 'static' LIB-KIND currently. Remove
the same to allow others to work too.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/rust/libgpiod-sys/build.rs