win64-cross: Use GCC 13

This commit is contained in:
Matt Borgerson 2024-06-15 11:22:50 -07:00 committed by mborgerson
parent 11884a5851
commit 621908076d
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ RUN cd /opt \
&& cd mxe \
&& git checkout ${MXE_VERSION} \
&& make MXE_TARGETS=x86_64-w64-mingw32.static \
MXE_PLUGIN_DIRS=plugins/gcc10 \
MXE_PLUGIN_DIRS=plugins/gcc13 \
cc \
glib \
libepoxy \
@ -68,7 +68,7 @@ RUN rm /opt/mxe/src/sdl2*.patch
COPY sdl2.mk /opt/mxe/src/sdl2.mk
RUN V=1 MXE_VERBOSE=1 make -C /opt/mxe \
MXE_TARGETS=x86_64-w64-mingw32.static \
MXE_PLUGIN_DIRS=plugins/gcc10 \
MXE_PLUGIN_DIRS=plugins/gcc13 \
sdl2
RUN find /opt/mxe/usr -executable -type f -exec chmod a+x {} \;