Skip to content

Commit

Permalink
Fix: Install latest libstdc++ in workflow for debian:testing/clang
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
dgreatwood committed Oct 17, 2024
1 parent 94146e7 commit 0d4e08b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.8.20241016
0.4.9.20241016

0 comments on commit 0d4e08b

Please sign in to comment.