You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I thought is would be "fun" to try and build quiche natively on Windows. After getting a bunch of perequisites installed (mainly for BoringSSL), I tried cargo build and saw a failure about linking crypto.lib and ssl.lib. A snipped build log
I thought is would be "fun" to try and build quiche natively on Windows. After getting a bunch of perequisites installed (mainly for BoringSSL), I tried
cargo build
and saw a failure about linkingcrypto.lib
andssl.lib
. A snipped build logThis seems to be an issue caused by the way Cmake is building BoringSSL. The files are actually dumped into a
Debug
folder e.g.and for the release build, the output is dumped in a
RelWithDebInfo
folder e.g.Hacking these values manually into
src/build.rs
lets me do a successful build e.g.However, that is not a viable solution.
The text was updated successfully, but these errors were encountered: