1
0
Fork 0

Updated configuration for BOLT

This commit is contained in:
Christian Kühnel 2021-12-16 08:23:18 +00:00 committed by Mikhail Goncharov
parent 54fa9b1556
commit 823df07a07
2 changed files with 4 additions and 0 deletions

View file

@ -13,6 +13,7 @@ RUN echo 'intall build dependencies'; \
python3 python3-psutil \ python3 python3-psutil \
python3-pip python3-setuptools \ python3-pip python3-setuptools \
lsb-release software-properties-common \ lsb-release software-properties-common \
libjemalloc-dev \
swig python3-dev libedit-dev libncurses5-dev libxml2-dev liblzma-dev golang rsync jq; swig python3-dev libedit-dev libncurses5-dev libxml2-dev liblzma-dev golang rsync jq;
RUN wget https://apt.llvm.org/llvm.sh; \ RUN wget https://apt.llvm.org/llvm.sh; \
chmod +x llvm.sh; \ chmod +x llvm.sh; \

View file

@ -4,6 +4,8 @@
dependencies: dependencies:
llvm: [] llvm: []
bolt:
- llvm
clang: clang:
- llvm - llvm
clang-tools-extra: clang-tools-extra:
@ -47,6 +49,7 @@ dependencies:
# llvm/CMakeLists.txt in "set(LLVM_ALL_PROJECTS ..." # llvm/CMakeLists.txt in "set(LLVM_ALL_PROJECTS ..."
# The value for all project is the list of ninja targets to run. # The value for all project is the list of ninja targets to run.
allprojects: allprojects:
bolt: ["check-bolt"]
clang: ["check-clang"] clang: ["check-clang"]
clang-tools-extra: ["check-clang-tools"] clang-tools-extra: ["check-clang-tools"]
compiler-rt: ["check-all"] # check-compiler-rt seems to exist only in standalone builds. compiler-rt: ["check-all"] # check-compiler-rt seems to exist only in standalone builds.