File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,15 @@ RUN apt-get update \
10
10
&& apt-get install -y git cmake build-essential byacc libpcre3 libpcre3-dev grep lsb-release wget software-properties-common gnupg libcurl4-openssl-dev unzip lcov --no-install-recommends # skipcq: DOK-DL3018
11
11
12
12
# Get LLVM
13
- ARG LLVM_VER=15
13
+ ARG LLVM_VER=16
14
14
RUN wget --no-verbose https://apt.llvm.org/llvm.sh
15
15
RUN chmod +x ./llvm.sh \
16
16
&& ./llvm.sh ${LLVM_VER} \
17
17
&& apt-get -y install libclang-${LLVM_VER}-dev libclang-cpp${LLVM_VER}-dev --no-install-recommends \
18
18
&& apt-get clean \
19
- && rm -rf /var/lib/apt/lists/*
19
+ && rm -rf /var/lib/apt/lists/* \
20
+ && ln -s /usr/lib/x86_64-linux-gnu/libclang-16.so.16.0.6 /usr/lib/x86_64-linux-gnu/libclang-16.so.16
21
+
20
22
21
23
# Add environment variables for build
22
24
ENV PATH="$PATH:/usr/lib/llvm-${LLVM_VER}/bin"
You can’t perform that action at this time.
0 commit comments