我按照rust-bindgen教程为the scrypt C library制作了绑定。由于链接错误,我无法运行我的测试:
/home/user/project/rust-scrypt/src/lib.rs:32: undefined reference to `crypto_scrypt'
collect2: error: ld returned 1 exit status
和我的测试:
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
// ...
// ...
#[test]
fn test_script() {
let mut kdf_salt = to_bytes("fd4acb81182a2c8fa959d180967b374277f2ccf2f7f401cb08d042cc785464b4");
let passwd = "1234567890";
let mut buf = [0u8; 32];
unsafe {
crypto_scrypt(passwd.as_ptr(), passwd.len(), kdf_salt.as_mut_ptr(), kdf_salt.len(),
2, 8, 1, buf.as_mut_ptr(), 32);
}
println!(">> DEBUG: {:?}", buf);
// "52a5dacfcf80e5111d2c7fbed177113a1b48a882b066a017f2c856086680fac7");
}
绑定已生成并存在于bindings.rs
中。我不知道链接器为什么会抛出错误。
这是我的builds.rs
extern crate bindgen;
use std::env;
use std::path::PathBuf;
fn main() {
let out_path = PathBuf::from(env::var("OUT_DIR").unwrap());
let bindings = bindgen::Builder::default()
.no_unstable_rust()
.header("wrapper.h")
.generate()
.expect("Unable to generate bindings");
bindings
.write_to_file(out_path.join("bindings.rs"))
.expect("Couldn't write bindings!");
}
[package]
name = "rust-scrypt"
version = "0.0.1"
build = "build.rs"
[build-dependencies]
bindgen = "0.23"
答案 0 :(得分:3)
请重新熟悉the "Building some native code" case study。具体来说,您已通知Rust库的接口,但您还没有告诉编译器代码。这就是你得到的错误:"我无法找到crypto_scrypt
"
您需要将库添加到链接器路径并指示它与之链接。
从链接的案例研究中,您的构建脚本可以通知编译器库的位置以及链接的内容:
println!("cargo:rustc-link-search=native={}", path_to_library);
println!("cargo:rustc-link-lib=static=hello"); // the name of the library
请请 阅读有关*-sys
packages的部分,其中记录了此类集成的最佳做法。也就是说,你的Cargo.toml缺少links key,如果有人试图多次在这个库中链接,这将导致问题。
-