Quantcast
Channel: Why would a cross-compilation build fail on openssl when openssl is not in the dependency graph? - Stack Overflow
Browsing all 4 articles
Browse latest View live

Answer by Shepmaster for Why would a cross-compilation build fail on openssl...

It is in the dependency graph for the target you are building for.When using cargo tree, you need to include the target that you are building for using the --target command line option. In addition,...

View Article



Answer by leo60228 for Why would a cross-compilation build fail on openssl...

Dependencies can be platform-specific. While native-tls depends on security-framework on your macOS host, it instead depends on openssl for your Linux target.You might be able to solve this by telling...

View Article

Answer by Ibraheem Ahmed for Why would a cross-compilation build fail on...

Reqwest lists OpenSSL as a requirement on Linux due to it using native-tls, which depends on openssl. You need to install the pkg-config and libssl-dev packages:sudo apt-get install pkg-config libssl-dev

View Article

Why would a cross-compilation build fail on openssl when openssl is not in...

When building my Rust lambda using cross, I get this error:error: failed to run custom build command for `openssl-sys v0.9.58`When I look at my dependency graph, openssl isn't even listed! How is this...

View Article
Browsing all 4 articles
Browse latest View live




Latest Images