- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Rust 库,它为 FFI
公开了一些函数。我假设我必须将 crate-type
设置为 cdylib
- 因为我想从 Ruby 和 PHP 调用这些函数(例如通过 ffi
ruby gem ).但是我无法将它从 OSX 交叉编译到 Linux。我试着关注一些 tutorials使用 musl libc
- 这是用于静态库的,但我还没有找到其他任何东西。
所以链接器是这样定义的:
# .cargo/config
[target.x86_64-unknown-linux-musl]
linker = "x86_64-linux-musl-gcc"
我试着编译它:
cargo build --release --target x86_64-unknown-linux-musl
但是立即出现错误:
error: cannot produce cdylib for `my-crate-name` as the target `x86_64-unknown-linux-musl` does not support these crate types
我的问题是:什么目标/链接器对可用于交叉编译 cdylib
?为什么 musl 不支持这些 crate 类型?有可能吗?
最佳答案
I have a Rust library that exposes few functions for
FFI
. Therefore I must set crate-type tocdylib
.
你从哪里得到这些信息的?您可以创建动态库 (.so
) 或静态库 (.a
)。 Alex 有一个包含大量示例的存储库:rust-ffi-examples .
musl用于您确实想要创建二进制文件的情况,该二进制文件是静态链接的并且根本没有依赖项 (staticlib
)。一切都在二进制文件中。你把它扔到 Linux 机器上,它就会工作。
动态链接用于您知道所有依赖项都将得到满足、您想要较小的二进制文件等的情况(cdylib
)。但是,您必须确保依赖项确实存在,否则它将无法工作。
我通常不关心交叉编译,因为如果您需要动态链接到其他 Linux 库,这可能会非常棘手。对于这些情况,我有:
有很多方法可以实现您想要的。请参阅@Shepmaster 评论:使用 CI 并在某处上传构建工件。
你真的需要交叉编译吗?没有其他方法可以实现您的目标吗?尽可能避免它。
$ brew tap SergioBenitez/osxct
$ brew install x86_64-unknown-linux-gnu
$ rustup target add x86_64-unknown-linux-gnu
将以下行添加到 ~/.cargo/config
:
[target.x86_64-unknown-linux-gnu]
linker = "x86_64-unknown-linux-gnu-gcc"
Cargo.toml
内容:
[package]
name = "sample"
version = "0.1.0"
edition = "2018"
[lib]
crate-type = ["cdylib"]
src/lib.rs
内容:
#[no_mangle]
pub extern fn hello() {
println!("Rust here");
}
编译:
$ cargo build --release --target x86_64-unknown-linux-gnu
检查输出:
$ file target/x86_64-unknown-linux-gnu/release/libsample.so
target/x86_64-unknown-linux-gnu/release/libsample.so: ELF 64-bit LSB pie executable x86-64, version 1 (SYSV), dynamically linked, with debug_info, not stripped
检查库符号:
x86_64-unknown-linux-gnu-nm -D target/x86_64-unknown-linux-gnu/release/libsample.so | grep hello
0000000000003900 T hello
复制 target/x86_64-unknown-linux-gnu/release/libsample.so
到你的 Linux 机器。
手动加载
sample.c
内容:
#include <stdlib.h>
#include <stdio.h>
#include <dlfcn.h>
int main(int argc, char**argv) {
void *lib;
void (*hello)(void);
char *error;
lib = dlopen("./libsample.so", RTLD_NOW);
if (!lib) {
fprintf(stderr, "%s\n", dlerror());
exit(-1);
}
dlerror();
*(void **)(&hello) = dlsym(lib, "hello");
if ((error = dlerror()) != NULL) {
fprintf(stderr, "%s\n", error);
dlclose(lib);
exit(-1);
}
(*hello)();
dlclose(lib);
exit(0);
}
用gcc -rdynamic -o sample sample.c -ldl
编译并运行:
$ ./sample
Rust here
检查它是否是动态链接的:
$ ldd ./sample
linux-vdso.so.1 (0x00007ffe609eb000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007fc7bdd69000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fc7bd978000)
/lib64/ld-linux-x86-64.so.2 (0x00007fc7be16f000)
动态链接
sample.c
内容:
extern void hello(void);
int main(int argc, char **argv) {
hello();
}
用 gcc sample.c -o sample -lsample -L.
编译并运行:
$ LD_LIBRARY_PATH=. ./sample
Rust here
检查它是否是动态链接的:
$ LD_LIBRARY_PATH=. ldd ./sample
linux-vdso.so.1 (0x00007ffc6fef6000)
libsample.so => ./libsample.so (0x00007f8601ba3000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f86017b2000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f86015ae000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007f86013a6000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f8601187000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f8600f6f000)
/lib64/ld-linux-x86-64.so.2 (0x00007f8601fd5000)
$ rustup target add x86_64-unknown-linux-musl
$ brew install filosottile/musl-cross/musl-cross
将以下行添加到 ~/.cargo/config
:
[target.x86_64-unknown-linux-musl]
linker = "x86_64-linux-musl-gcc"
Cargo.toml
内容:
[package]
name = "sample"
version = "0.1.0"
edition = "2018"
[lib]
crate-type = ["staticlib"]
src/lib.rs
内容:
#![crate_type = "staticlib"]
#[no_mangle]
pub extern fn hello() {
println!("Rust here");
}
编译:
$ cargo build --release --target x86_64-unknown-linux-musl
将 target/x86_64-unknown-linux-musl/release/libsample.a
复制到您的 Linux 机器中。
sample.c
内容:
extern void hello(void);
int main(int argc, char **argv) {
hello();
}
用gcc sample.c libsample.a -o sample
编译并运行:
$ ./sample
Rust here
检查它是否是静态链接:
$ ldd ./sample
statically linked
关于rust - 使用 cargo 和 rust 在 macOS for Linux 上交叉编译和链接动态库 (cdylib),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57655697/
我有一个 Rust 库,它为 FFI 公开了一些函数。我假设我必须将 crate-type 设置为 cdylib - 因为我想从 Ruby 和 PHP 调用这些函数(例如通过 ffi ruby g
Rust reference states : A dynamic system library will be produced. This is used when compiling a dyn
我一直在尝试编译一个简单的 rust cdylib在 windows 中创建 crate 并将其与一个简单的 c 程序链接。尽管我做了很多努力,我还是没有链接 dll文件。 最小示例 首先我的rust
这个问题在这里已经有了答案: CMake link to external library (5 个回答) 1年前关闭。 我使用 Rust (crate type = "cdylib") 创建了一个动
我是一名优秀的程序员,十分优秀!