feat: add LLVM toolchain dependencies to Windows desktop client build workflow

Add clang, lld, and llvm packages to apt-get install step to provide complete LLVM toolchain for cross-compilation build process.
This commit is contained in:
2026-03-18 11:18:27 +01:00
parent caec578985
commit 74d8fc28cc

View File

@@ -32,6 +32,9 @@ jobs:
sudo apt-get update sudo apt-get update
sudo apt-get install -y \ sudo apt-get install -y \
build-essential \ build-essential \
clang \
lld \
llvm \
curl \ curl \
wget \ wget \
file \ file \