Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: GitHub noreply@github.com Date: Wed, 11 Oct 2023 10:44:54 UTC Commit: 4554624f1b6a10e1b0877ccd660358d9af386a55 https://github.com/geany/infrastructure/commit/4554624f1b6a10e1b0877ccd66035...
Log Message: ----------- Merge pull request #11 from geany/use_mingw_posix_crosscompiler
Builders: Use "posix" variant of the mingw64 cross compiler
Modified Paths: -------------- builders/Dockerfile.mingw64
Modified: builders/Dockerfile.mingw64 8 lines changed, 7 insertions(+), 1 deletions(-) =================================================================== @@ -50,7 +50,13 @@ RUN set -ex && \ # install NSIS and exiftool to inspect binary metadata nsis libimage-exiftool-perl osslsigncode \ # Geany build dependencies \ - python3-lxml python3-docutils + python3-lxml python3-docutils && \ + # Use the "posix" variant of the mingw64 cross compiler to have support for recent C++ features + # like "std:future", see + # https://salsa.debian.org/mingw-w64-team/gcc-mingw-w64/-/blob/master/debian/g... + # and https://sourceforge.net/p/mingw-w64/bugs/959/ for details. + update-alternatives --set x86_64-w64-mingw32-gcc /usr/bin/x86_64-w64-mingw32-gcc-posix && \ + update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix
# copy scripts
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).