10

我在构建带有 rust 的可移植可执行文件时遇到问题。

运行cargo build在 Ubuntu 上简单构建的可执行文件失败

./test: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found (required by ./test)

构建时rustc ... -C link-args=-static无法正确链接(的输出ld ./test):

ld: error in ./test(.eh_frame); no .eh_frame_hdr table will be created.

除了在具有旧 glibc 版本的旧系统上构建之外,还有其他方法吗?

4

2 回答 2

5

为避免 GLIBC 错误,您可以针对静态替代 libc musl 编译您自己的 Rust版本

获取 musl 的最新稳定版本并使用选项构建它--disable-shared

$ mkdir musldist
$ PREFIX=$(pwd)/musldist
$ ./configure --disable-shared --prefix=$PREFIX

然后针对 musl 构建 Rust:

$ ./configure --target=x86_64-unknown-linux-musl --musl-root=$PREFIX --prefix=$PREFIX

然后构建你的项目

$ echo 'fn main() { println!("Hello, world!"); }' > main.rs
$ rustc --target=x86_64-unknown-linux-musl main.rs
$ ldd main
    not a dynamic executable

有关更多信息,请查看文档的高级链接部分。

如原始文档中所述:

但是,您可能需要针对 musl 重新编译本机库,然后才能链接它们。


您也可以使用rustup

删除由 rustup.sh 安装的旧 Rust

$ sudo /usr/local/lib/rustlib/uninstall.sh # only if you have 
$ rm $HOME/.rustup

安装生锈

$ curl https://sh.rustup.rs -sSf | sh
$ rustup default nightly  #just for ubuntu 14.04 (stable Rust 1.11.0 has linking issue)
$ rustup target add x86_64-unknown-linux-musl
$ export PATH=$HOME/.cargo/bin:$PATH
$ cargo new --bin hello && cd hello
$ cargo run --target=x86_64-unknown-linux-musl
$ ldd target/x86_64-unknown-linux-musl/debug/hello
    not a dynamic executable
于 2016-08-30T11:43:53.763 回答
4

Glibc 不是静态链接的(就像我们可能喜欢的那样,它竭尽全力防止这种情况发生)。因此,系统库(libstd 等)总是依赖于构建它们的 glibc 版本。这就是为什么 linux 集群 mozilla 使用的 buildbots 是/是旧版本的 centos。

请参阅https://github.com/rust-lang/rust/issues/9545https://github.com/rust-lang/rust/issues/7283

不幸的是,目前我认为除了确保您在具有比您要部署的旧 glibc 的系统上构建之外,没有其他解决方法。

于 2015-02-24T18:10:16.673 回答