Skip to content

Commit

Permalink
Docker: only install the posix-version of Mingw.
Browse files Browse the repository at this point in the history
The version of Mingw provided with Ubuntu 22.04 comes with two alternatives (posix and win32) for handling low-level things like threads and file-access.
It seems as if the win32-version does not yet support C17/C++17.
Thus, we use the posix-pendant.
  • Loading branch information
kfriedberger committed May 30, 2024
1 parent ee5ffe0 commit f0c1958
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docker/ubuntu2204.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ ENV LANGUAGE en_US.UTF-8
RUN apt-get update \
&& apt-get install -y \
wget curl git build-essential cmake patchelf \
openjdk-11-jdk ant maven mingw-w64 zlib1g-dev m4 \
openjdk-11-jdk ant maven \
gcc-mingw-w64-x86-64-posix g++-mingw-w64-x86-64-posix \
zlib1g-dev m4 \
&& apt-get clean

# Yices2 requires some dependencies
Expand Down

0 comments on commit f0c1958

Please sign in to comment.