[PATCH] D106416: [analyzer] Fix build dependency issues for SATest
Manas Gupta via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jul 20 19:31:27 PDT 2021
manas created this revision.
Herald added subscribers: steakhal, ASDenysPetrov, dkrupp, donat.nagy, Szelethus, mikhail.ramalho, a.sidorin, szepet, baloghadamsoftware, xazax.hun.
Herald added a reviewer: teemperor.
manas requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
It comprises of two specific changes:
1. Fixes cmake's unmet dependency by upgrading it.
2. Adds ccache to the build dependency list, which can be used for LLVM_CCACHE_BUILD cmake option for boosting rebuilds.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D106416
Files:
clang/utils/analyzer/Dockerfile
Index: clang/utils/analyzer/Dockerfile
===================================================================
--- clang/utils/analyzer/Dockerfile
+++ clang/utils/analyzer/Dockerfile
@@ -17,8 +17,9 @@
gettext=0.19.8.1* \
python3=3.6.7-1~18.04 \
python3-pip=9.0.1-2.3* \
- cmake=3.20.5* \
- ninja-build=1.8.2-1
+ cmake=3.21.0* \
+ ninja-build=1.8.2-1 \
+ ccache=3.4*
# box2d dependencies
RUN apt-get install -y \
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D106416.360345.patch
Type: text/x-patch
Size: 442 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210721/ec7299b0/attachment.bin>
More information about the cfe-commits
mailing list