gpt4 book ai didi

c++ - 创建链接到 Rust dylib 的共享 C 对象以在 R 中使用

转载 作者:太空狗 更新时间:2023-10-29 21:18:06 26 4
gpt4 key购买 nike

我正在尝试创建一个可以加载到 R 中的共享对象,它通过 R 的 C API 调用 Rust 函数。要从 C 调用 Rust,我遵循这个 blog post .当我尝试创建共享库并链接到 Rust 库时,我的问题出现了。链接器提示找不到我的 Rust 函数。我对编译语言很陌生,在转向 SO 之前已经付出了几天的努力。在那段时间里,我学到了很多关于编译器标志的知识,但并没有接近解决方案。我认为这可能是显而易见的事情。

我的 C++ 代码:

#include "Rinternals.h"
#include "R.h"
#include "treble.h"

// test.cpp
extern "C" {

SEXP triple(SEXP val) {

int32_t ival = *INTEGER(val);
Rprintf("9 tripled is %d\n", treble(ival));
return R_NilValue;
}

}

高音.h:

#include <stdint.h>

int32_t treble(int32_t value);

我的 Rust 代码:

#![crate_type = "dylib"]

#[no_mangle]
pub extern fn treble(value: i32) -> i32 {
value * 3
}

这是我在命令行上做的:

$ rustc glue.rs
$ g++ -shared test.cpp -o test.so -I/Library/Frameworks/R.framework/Headers -L/Library/Frameworks/R.framework/Libraries -L. -lR -lglue
Undefined symbols for architecture x86_64:
"treble(int)", referenced from:
_triple in test-dac64b.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

检查 rust 创建的目标文件:

$ nm -gU libglue.dylib
...
0000000000001750 T _treble

最佳答案

在 C++ 代码中,您需要将 Rust 函数(可通过 C ABI 获得)声明为 extern "C"

高音.h

#include <stdint.h>

extern "C" {
int32_t treble(int32_t value);
}

您收到的错误是因为 C++ 编译器在尝试链接到它之前名称修改方法trebleextern "C" 禁用重整。

此外,您的 Rust FFI 代码应始终使用 libc crate 中的类型;在您的情况下,您需要 libc::int32_t

关于c++ - 创建链接到 Rust dylib 的共享 C 对象以在 R 中使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30904870/

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