Skip to content
This repository has been archived by the owner on Oct 5, 2022. It is now read-only.

Commit

Permalink
Use LLVM version 13 as default. Fallback to 11 on arm.
Browse files Browse the repository at this point in the history
  • Loading branch information
dm4tze committed Apr 15, 2021
1 parent a13720b commit 5b6b57d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions theia-full-docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,11 @@ RUN apt-get update && apt-get -y install openjdk-11-jdk maven gradle
# C/C++
# public LLVM PPA, development version of LLVM
# depending on architecture, install from the public LLVM PPA (Version 13) or distribution (Version 11)
ARG LLVM=11
ARG LLVM=13

RUN dpkgArch="$(dpkg --print-architecture)" && \
case "${dpkgArch##*-}" in \
amd64) \
LLVM=13 && \
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - && \
echo "deb http://apt.llvm.org/groovy/ llvm-toolchain-groovy main" > /etc/apt/sources.list.d/llvm.list && \
apt-get update && \
Expand Down

0 comments on commit 5b6b57d

Please sign in to comment.