gpt4 book ai didi

rust - 你如何在使用rust 的 Windows 上使用带有 DLL 的 DynamicLibrary?

转载 作者:行者123 更新时间:2023-11-29 07:55:29 28 4
gpt4 key购买 nike

我一直在尝试在此处使用 cmake 和 Rust 启动并运行基本的概念证明 https://github.com/shadowmint/rust-dl-example ,但无济于事。

基本思想是构建一个 DLL,然后像这样加载符号:

  let dl = DynamicLibrary::open(Some(dl_path));
match dl {
Ok(dll) => {
// Try loading symbols. Note that because of the api we can't
// directly pass T as fn(c_int) -> c_int, because the return is
// a pointer, not a pointer to a pointer.
unsafe{
rtn.foo = match dll.symbol::<c_void>("foo") {
Ok(symbol) => Some(transmute(symbol)),
Err(_) => None
};
rtn.bar = match dll.symbol::<c_void>("bar") {
Ok(symbol) => Some(transmute(symbol)),
Err(_) => None
};
trace!("Read: {}", dll.symbol::<c_void>("foo"));
trace!("Read: {}", dll.symbol::<c_void>("bar"));
rtn.lib = Some(dll);
}
}

这在 linux 和 osx 上很有用,但遗憾的是在 windows 上失败了:

Compiling dltest v0.1.0 (file:///C:/projects/rust-all/rust-dl-example)
Running target\dltest-3ed01b3dac66913e.exe

running 1 test
Pattern: Some(C:\projects\rust-all\rust-dl-example\build\*foo*.dll)
Some(C:\projects\rust-all\rust-dl-example\build\libfoo.dll)
Read: Err(Error code 127)
Read: Err(Error code 127)
Successfully loaded table
Done1
Done2
stack backtrace:
1: 0x5452c8 - main
2: 0x549525 - main
3: 0x54effd - main
4: 0x54ecc2 - main
5: 0x4d8e8d - main
6: 0x402411
7: 0x4023e3
8: 0x40238d
9: 0x40ccbc
10: 0x43d438 - main
11: 0x52e277 - main
12: 0x54d4cc - main
13: 0x54fc0f - main
14: 0x54fbe9 - main
15: 0x54d55e - main
16: 0x54d309 - main
17: 0x54d116 - main
18: 0x54e64d - main
19: 0x76fc652d - BaseThreadInitThunk
task failed during unwinding. aborting.

错误代码 127 是“未找到符号”的 Windows 魔术,但首先它没有正确返回错误,其次,我看不出我的 DLL 有任何问题。它在 c 程序中运行良好...并且没有任何奇怪的链接:

Its fine

这是怎么回事?任何人都有一个带有 Windows 和 Rust 的 DLL 的工作示例?

最佳答案

我的猜测是您没有正确匹配 calling convention你的 DLL。我使用这段代码创建了一个 DLL:

#[no_mangle]
// Note explicit calling convention
pub extern "C" fn foo_add_2(a: u32) -> u32 {
a + 2
}

编译为:

rustc --crate-type=dylib

访问方式为:

use std::dynamic_lib::DynamicLibrary;
use std::mem::transmute;

fn main() {

let lib = match DynamicLibrary::open(Some("lib")) {
Ok(x) => x,
Err(x) => panic!("{}", x),
};

// Note explicit calling convention
let meth: extern "C" fn(u32) -> u32 = unsafe {
match lib.symbol::<u8>("foo_add_2") {
Ok(x) => transmute(x),
Err(x) => panic!("{}", x),
}
};

let input = 5;
let res = meth(input);

println!("Hello, library! ({} + 2 => {})", input, res);
}

从 2014 年 12 月 8 日开始,这在装有 Windows 7 和 Rust nightly 的 32 位虚拟机上运行良好。

但是,如果我将调用约定更改为不匹配或将其关闭,我会看到您的错误 127

关于rust - 你如何在使用rust 的 Windows 上使用带有 DLL 的 DynamicLibrary?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27358938/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com