You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN cd /tmp && wget https://apt.llvm.org/llvm.sh && chmod a+x llvm.sh
40
-
RUN cd /tmp && ./llvm.sh 12
40
+
# install clang and llvm release
41
+
ARG CLANG_VER=13.0.0
42
+
RUN wget https://github.com/llvm/llvm-project/releases/download/llvmorg-${CLANG_VER}/clang+llvm-${CLANG_VER}-x86_64-linux-gnu-ubuntu-20.04.tar.xz -P /opt
43
+
RUN cd /opt \
44
+
&& tar xf clang+llvm-${CLANG_VER}-x86_64-linux-gnu-ubuntu-20.04.tar.xz \
0 commit comments