aboutsummaryrefslogtreecommitdiffstats
path: root/tools/docker/syzbot/Dockerfile
diff options
context:
space:
mode:
authorAlexander Potapenko <glider@google.com>2022-06-17 13:37:44 +0200
committerAlexander Potapenko <ramosian.glider@gmail.com>2022-06-17 15:07:33 +0200
commit8f633d840e3eb6454f036e9da3285bcf27345616 (patch)
tree2bbd87d547ae457b6ed1225e865099f6cc246387 /tools/docker/syzbot/Dockerfile
parentcb58b3b231a677b1a6c89cd2af59e4fab10f9144 (diff)
tools/docker: update Clang for KMSAN
Switch to the upstream Clang version 610139d2d9ce. This retires the custom -msan-pass-caller-to-runtime flag, but instead allows us to use -fsanitize-memory-param-retval on syzbot.
Diffstat (limited to 'tools/docker/syzbot/Dockerfile')
-rw-r--r--tools/docker/syzbot/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/docker/syzbot/Dockerfile b/tools/docker/syzbot/Dockerfile
index 65e09b7a3..56a87f441 100644
--- a/tools/docker/syzbot/Dockerfile
+++ b/tools/docker/syzbot/Dockerfile
@@ -48,7 +48,7 @@ RUN sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/b
# Download and install the custom Clang required to build KMSAN.
# TODO(@ramosian-glider): switch to stable Clang once KMSAN is upstreamed.
-ENV CLANG_KMSAN_VER 9ffb5944a699
+ENV CLANG_KMSAN_VER 610139d2d9ce
RUN curl https://storage.googleapis.com/syzkaller/clang-${CLANG_KMSAN_VER}.tar.gz | tar -C /usr/local/ -xz
RUN ln -s /usr/local/clang-${CLANG_KMSAN_VER} /usr/local/clang-kmsan