diff --git a/.github/workflows/linux_debug.yml b/.github/workflows/linux_debug.yml index 9849152..777f2d6 100644 --- a/.github/workflows/linux_debug.yml +++ b/.github/workflows/linux_debug.yml @@ -46,7 +46,7 @@ jobs: run: sudo apt-get install ccache - name: Install post-link dependencies - run: sudo apt-get install -y patchelf + run: sudo apt-get install -y binutils patchelf - name: Prepare ccache timestamp id: ccache_cache_timestamp diff --git a/.github/workflows/linux_release.yml b/.github/workflows/linux_release.yml index abe7f35..f0351db 100644 --- a/.github/workflows/linux_release.yml +++ b/.github/workflows/linux_release.yml @@ -47,7 +47,7 @@ jobs: run: sudo apt-get install ccache - name: Install post-link dependencies - run: sudo apt-get install -y patchelf + run: sudo apt-get install -y binutils patchelf - name: Prepare ccache timestamp id: ccache_cache_timestamp diff --git a/deploy/docker/Dockerfile-build-linux b/deploy/docker/Dockerfile-build-linux index 6c31b9a..907db59 100644 --- a/deploy/docker/Dockerfile-build-linux +++ b/deploy/docker/Dockerfile-build-linux @@ -20,6 +20,7 @@ ENV PATH /usr/lib/ccache:$QT_DESKTOP/bin:$PATH RUN apt update && apt -y --quiet --no-install-recommends install \ apt-utils \ + binutils \ build-essential \ ca-certificates \ ccache \