From 9f04d168cb1c1e16c97a108a5a6a01fff8e95c71 Mon Sep 17 00:00:00 2001 From: Scott McMillan Date: Wed, 11 Oct 2023 09:09:47 -0500 Subject: [PATCH] Update LLVM trunk version to 18 (#472) --- hpccm/building_blocks/llvm.py | 2 +- test/test_llvm.py | 32 ++++++++++++++++---------------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/hpccm/building_blocks/llvm.py b/hpccm/building_blocks/llvm.py index f0d68fcb..5897a997 100644 --- a/hpccm/building_blocks/llvm.py +++ b/hpccm/building_blocks/llvm.py @@ -104,7 +104,7 @@ def __init__(self, **kwargs): self.__runtime_rpms = [] # Filled in below self.__toolset = kwargs.get('toolset', False) # Current LLVM trunk version - self.__trunk_version = kwargs.get('_trunk_version', '17') + self.__trunk_version = kwargs.get('_trunk_version', '18') self.__upstream = kwargs.get('upstream', False) self.__version = kwargs.get('version', None) diff --git a/test/test_llvm.py b/test/test_llvm.py index c6c0f2e5..f1527a67 100644 --- a/test/test_llvm.py +++ b/test/test_llvm.py @@ -361,15 +361,15 @@ def test_upstream_ubuntu18(self): echo "deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic main" >> /etc/apt/sources.list.d/hpccm.list && \ apt-get update -y && \ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - clang-17 \ - clang-format-17 \ - clang-tidy-17 \ - libomp-17-dev && \ + clang-18 \ + clang-format-18 \ + clang-tidy-18 \ + libomp-18-dev && \ rm -rf /var/lib/apt/lists/* -RUN update-alternatives --install /usr/bin/clang clang $(which clang-17) 30 && \ - update-alternatives --install /usr/bin/clang++ clang++ $(which clang++-17) 30 && \ - update-alternatives --install /usr/bin/clang-format clang-format $(which clang-format-17) 30 && \ - update-alternatives --install /usr/bin/clang-tidy clang-tidy $(which clang-tidy-17) 30''') +RUN update-alternatives --install /usr/bin/clang clang $(which clang-18) 30 && \ + update-alternatives --install /usr/bin/clang++ clang++ $(which clang++-18) 30 && \ + update-alternatives --install /usr/bin/clang-format clang-format $(which clang-format-18) 30 && \ + update-alternatives --install /usr/bin/clang-tidy clang-tidy $(which clang-tidy-18) 30''') @x86_64 @ubuntu20 @@ -391,15 +391,15 @@ def test_upstream_ubuntu20(self): echo "deb-src http://apt.llvm.org/focal/ llvm-toolchain-focal main" >> /etc/apt/sources.list.d/hpccm.list && \ apt-get update -y && \ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - clang-17 \ - clang-format-17 \ - clang-tidy-17 \ - libomp-17-dev && \ + clang-18 \ + clang-format-18 \ + clang-tidy-18 \ + libomp-18-dev && \ rm -rf /var/lib/apt/lists/* -RUN update-alternatives --install /usr/bin/clang clang $(which clang-17) 30 && \ - update-alternatives --install /usr/bin/clang++ clang++ $(which clang++-17) 30 && \ - update-alternatives --install /usr/bin/clang-format clang-format $(which clang-format-17) 30 && \ - update-alternatives --install /usr/bin/clang-tidy clang-tidy $(which clang-tidy-17) 30''') +RUN update-alternatives --install /usr/bin/clang clang $(which clang-18) 30 && \ + update-alternatives --install /usr/bin/clang++ clang++ $(which clang++-18) 30 && \ + update-alternatives --install /usr/bin/clang-format clang-format $(which clang-format-18) 30 && \ + update-alternatives --install /usr/bin/clang-tidy clang-tidy $(which clang-tidy-18) 30''') @aarch64 @ubuntu