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)
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

index 274069eb9e9d5e7fa336e62c26643ab362a7abf0..e3ed04afa14119a483a703d5cdb877606d43ddc5 100644 (file)
@@ -37,5 +37,5 @@ fn main() {
     generate_bindings();
 
     println!("cargo:rustc-link-search=./../../lib/.libs/");
-    println!("cargo:rustc-link-lib=static=gpiod");
+    println!("cargo:rustc-link-lib=gpiod");
 }