diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2025-03-13 12:02:46 +0200 |
---|---|---|
committer | GStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org> | 2025-03-13 10:47:45 +0000 |
commit | edeebac29ea440cfaa2f4f00fc9c1ddee65935c4 (patch) | |
tree | 38a7c90fd938be340eb318029ed1e12a4a545a31 | |
parent | d8178f84358aef33d15a8043eae6d9c34e3f14fb (diff) |
bootstrap: linux: Install libatomic on RedHat-based distros1.26.0
It doesn't necessarily come with the toolchain as it should, e.g. on F40.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1751>
-rw-r--r-- | cerbero/bootstrap/linux.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cerbero/bootstrap/linux.py b/cerbero/bootstrap/linux.py index 2e6c91a4..4ab1cf9b 100644 --- a/cerbero/bootstrap/linux.py +++ b/cerbero/bootstrap/linux.py @@ -184,6 +184,7 @@ class RedHatBootstrapper(UnixBootstrapper): 'openssl-devel', 'alsa-lib-devel', 'perl-IPC-Cmd', + 'libatomic', ] def __init__(self, config, offline, assume_yes): |