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
📋 Description or bullet point outline (if proposing new content)
I followed the guide on Tauri using a Windows 11 laptop and Debian on WSL2. Everything worked fine, except for two things:
On Step 4 I found that I had to execute that command even if using Debian
After following all steps and executing the build command, it would fail with an error similar to: Failed to find OpenSSL development headers..
I was able to fix that issue by adding the following line to the /src-tauri/Cargo.toml file: openssl-sys = {version = "0.9.66", features = ["vendored"]}
The text was updated successfully, but these errors were encountered:
📋 Page(s) affected (or suggested, for new content)
https://tauri.app/v1/guides/building/linux#cross-compiling-tauri-applications-for-arm-based-devices
📋 Description or bullet point outline (if proposing new content)
I followed the guide on Tauri using a Windows 11 laptop and Debian on WSL2. Everything worked fine, except for two things:
Failed to find OpenSSL development headers.
.I was able to fix that issue by adding the following line to the
/src-tauri/Cargo.toml
file:openssl-sys = {version = "0.9.66", features = ["vendored"]}
The text was updated successfully, but these errors were encountered: