From 59268f039106a9a93334d6445d4abd5d5a95c91f Mon Sep 17 00:00:00 2001 From: Siavash Sameni Date: Sat, 28 Mar 2026 15:00:20 +0400 Subject: [PATCH] fix: add libssl-dev to Linux build deps (openssl-sys needs it) Co-Authored-By: Claude Opus 4.6 (1M context) --- scripts/build-linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-linux.sh b/scripts/build-linux.sh index e873417..c77c918 100755 --- a/scripts/build-linux.sh +++ b/scripts/build-linux.sh @@ -94,7 +94,7 @@ do_prepare() { # Install build dependencies echo "[3/5] Installing build dependencies..." - ssh_cmd "apt-get update -qq && apt-get install -y -qq build-essential cmake pkg-config libasound2-dev curl git libstdc++-12-dev > /dev/null 2>&1" + ssh_cmd "apt-get update -qq && apt-get install -y -qq build-essential cmake pkg-config libasound2-dev libssl-dev curl git libstdc++-12-dev > /dev/null 2>&1" # Install Rust echo "[4/5] Installing Rust..."