From 83385be03dbaf2636ccaaf7902a94be007edaf12 Mon Sep 17 00:00:00 2001 From: Leonid Plyushch Date: Thu, 9 Apr 2020 18:23:07 +0300 Subject: [PATCH] docker image: install 'clang-9' --- scripts/setup-ubuntu.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/setup-ubuntu.sh b/scripts/setup-ubuntu.sh index ec49f5f6f..15cb4592c 100755 --- a/scripts/setup-ubuntu.sh +++ b/scripts/setup-ubuntu.sh @@ -100,6 +100,9 @@ PACKAGES+=" zlib1g-dev:i386" # So we don't build llvm for build. PACKAGES+=" llvm-8-tools" +# For swift. +PACKAGES+=" clang-9" + # Needed by gitea. PACKAGES+=" npm"