From 823df07a0775f111c892cfa93dac8fdcd20fe1b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Thu, 16 Dec 2021 08:23:18 +0000 Subject: [PATCH] Updated configuration for BOLT --- containers/base-debian/Dockerfile | 1 + scripts/llvm-dependencies.yaml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/containers/base-debian/Dockerfile b/containers/base-debian/Dockerfile index 6e12d9f..68bd481 100644 --- a/containers/base-debian/Dockerfile +++ b/containers/base-debian/Dockerfile @@ -13,6 +13,7 @@ RUN echo 'intall build dependencies'; \ python3 python3-psutil \ python3-pip python3-setuptools \ lsb-release software-properties-common \ + libjemalloc-dev \ swig python3-dev libedit-dev libncurses5-dev libxml2-dev liblzma-dev golang rsync jq; RUN wget https://apt.llvm.org/llvm.sh; \ chmod +x llvm.sh; \ diff --git a/scripts/llvm-dependencies.yaml b/scripts/llvm-dependencies.yaml index 73eef15..87f0033 100644 --- a/scripts/llvm-dependencies.yaml +++ b/scripts/llvm-dependencies.yaml @@ -4,6 +4,8 @@ dependencies: llvm: [] + bolt: + - llvm clang: - llvm clang-tools-extra: @@ -47,6 +49,7 @@ dependencies: # llvm/CMakeLists.txt in "set(LLVM_ALL_PROJECTS ..." # The value for all project is the list of ninja targets to run. allprojects: + bolt: ["check-bolt"] clang: ["check-clang"] clang-tools-extra: ["check-clang-tools"] compiler-rt: ["check-all"] # check-compiler-rt seems to exist only in standalone builds.