From ede732418bde6f11f18ae0e7db467cd2a7823d72 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 15 Nov 2020 12:34:21 -0800 Subject: [PATCH] build-system: use gcc 10 for MXE builds It's unclear if this will be enough to use gcc 10 by default when building Subsurface using this container. Signed-off-by: Dirk Hohndel --- scripts/docker/mxe-build-container/settings.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/docker/mxe-build-container/settings.mk b/scripts/docker/mxe-build-container/settings.mk index e3f0746af..dd05849aa 100644 --- a/scripts/docker/mxe-build-container/settings.mk +++ b/scripts/docker/mxe-build-container/settings.mk @@ -8,6 +8,8 @@ JOBS := 8 # This variable controls the targets that will build. MXE_TARGETS := x86_64-w64-mingw32.shared i686-w64-mingw32.shared +MXE_PLUGIN_DIRS := plugins/gcc10 + # The three lines below makes `make` build these "local packages" instead of all packages. # The ordering of the list appears weird, but this seems to help to get the build done # faster on a massively parallel machine to get some of the bottleneck packages built as