From 97641113506b839eccad5feaa8add77795d7f491 Mon Sep 17 00:00:00 2001 From: Mark Brand Date: Tue, 13 Nov 2018 16:56:06 +0100 Subject: [PATCH] gcc: use --with-default-msvcrt=msvcrt As suggested by Tony in https://github.com/mxe/mxe/pull/2208. This is less disruptive for MXE users, even though, arguably, use of the new ucrt should be encouraged. --- src/gcc.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gcc.mk b/src/gcc.mk index 97333c9a..f5888ddf 100644 --- a/src/gcc.mk +++ b/src/gcc.mk @@ -76,6 +76,7 @@ define $(PKG)_BUILD_mingw-w64 cd '$(BUILD_DIR).crt' && '$(BUILD_DIR)/$(mingw-w64_SUBDIR)/mingw-w64-crt/configure' \ --host='$(TARGET)' \ --prefix='$(PREFIX)/$(TARGET)' \ + --with-default-msvcrt=msvcrt \ @gcc-crt-config-opts@ $(MAKE) -C '$(BUILD_DIR).crt' -j '$(JOBS)' || $(MAKE) -C '$(BUILD_DIR).crt' -j '$(JOBS)' $(MAKE) -C '$(BUILD_DIR).crt' -j 1 $(INSTALL_STRIP_TOOLCHAIN)