upgrade clang to clang 16

This commit is contained in:
walshmm 2023-04-28 13:43:53 -04:00
parent 6e6c4c0b67
commit d5ffd847bf
1 changed files with 2 additions and 2 deletions

View File

@ -31,9 +31,9 @@ RUN export DEBIAN_FRONTEND=noninteractive &&\
# add the latest clang development
RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key| apt-key add - &&\
apt-add-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-12 main'
apt-add-repository 'deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-16 main'
RUN apt-get update -y &&\
apt-get install clang-12 clang-tools-12 libomp-12-dev -y
apt-get install clang-16 clang-tools-16 libomp-16-dev -y
# must add a user different from root
# to run MPI executables