Ore*_*ago 7 openssl build pkg-config rust rust-cargo
尝试从 mac 编译 linux 会引发此错误,我已经从brew安装了openssl和pkg-config。
在文件 ~/.cargo/config 中我有这个配置。
[target.x86_64-unknown-linux-musl]
linker = "x86_64-linux-musl-gcc"
Run Code Online (Sandbox Code Playgroud)
错误:
error: failed to run custom build command for `openssl-sys v0.9.72`
Caused by:
process didn't exit successfully: `/Users/Proyect/cvm/target/release/build/openssl-sys-66182f9fe15cdddc/build-script-main` (exit status: 101)
run pkg_config fail: "`\"pkg-config\" \"--libs\" \"--cflags\" \"openssl\"` did not exit successfully: exit status: 1\nerror: could not find system library 'openssl' required by the 'openssl-sys' crate\n\n--- stderr\nPackage openssl was not found in the pkg-config search path.\nPerhaps you should add the directory containing `openssl.pc'\nto the PKG_CONFIG_PATH environment variable\nNo package 'openssl' found\n"
--- stderr
thread 'main' panicked at '
Could not find directory of OpenSSL installation, and this `-sys` crate cannot
proceed without this knowledge. If OpenSSL is installed and this crate had
trouble finding it, you can set the `OPENSSL_DIR` environment variable for the
compilation process.
Make sure you also have the development packages of openssl installed.
For example, `libssl-dev` on Ubuntu or `openssl-devel` on Fedora.
If you're in a situation where you think the directory *should* be found
automatically, please open a bug at https://github.com/sfackler/rust-openssl
and include information about your system as well as this message.
$HOST = x86_64-apple-darwin
$TARGET = x86_64-unknown-linux-gnu
openssl-sys = 0.9.72
', /Users/user/.cargo/registry/src/github.com-1ecc6299db9ec823/openssl-sys-0.9.72/build/find_normal.rs:180:5
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
warning: build failed, waiting for other jobs to finish...
error: build failed
Run Code Online (Sandbox Code Playgroud)
错误消息包含三种可能的解决方案:
首先确保它确实安装,包括用于开发(如果你想针对 openssl 编译代码,这是你所需要的):
确保您还安装了 openssl 的开发包。例如,
libssl-dev
在 Ubuntu 或openssl-devel
Fedora 上。
如果已经真正安装了,那么就找不到它。可以通过将包含“openssl.pc”的目录添加到 PKG_CONFIG_PATH 环境变量来修复此问题:
在 pkg-config 搜索路径中找不到软件包 openssl。也许您应该将包含“openssl.pc”的目录添加到 PKG_CONFIG_PATH 环境变量中。
或者通过将OPENSSL_DIR
to 设置为指向 openssl 代码在系统上的位置:
无法找到 OpenSSL 安装目录,如果
-sys
不了解此信息,此箱子将无法继续。如果安装了 OpenSSL 并且此 crate 无法找到它,您可以OPENSSL_DIR
为编译过程设置环境变量。