From 0d4e08b1bc1526cae55432cfda9b00830e66c979 Mon Sep 17 00:00:00 2001 From: DMG Date: Wed, 16 Oct 2024 09:43:25 -0700 Subject: [PATCH] Fix: Install latest libstdc++ in workflow for debian:testing/clang Intermittently, debian:testing fails with clang, saying that libstdc++ cannot be found. In debian:testing/clang, normally libstdc++-dev is installed as a dependency of meson. In the situation where the build breaks, the meson dependency is different to the latest available libstdc++; for instance, installing meson dependencies might install libstdc++-13-dev, whereas apt has access to libstdc++-14-dev. In other situations, the meson dependency libstdc++-..-dev may be the same as the latest libstdc++-..-dev to which apt has access. To prevent the build breaking, we need to install the latest libstdc++-..-dev to which apt has access - not the N-1 version which may be installed as a meson dependency. We do this now in linux.yaml. --- version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.txt b/version.txt index f44e3c087..9d534fd67 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.4.8.20241016 +0.4.9.20241016