From 06a6c0fc9c34afc89b640e41dc8cac5fbd6dfbc3 Mon Sep 17 00:00:00 2001 From: mikee47 Date: Tue, 16 Jun 2020 15:33:04 +0100 Subject: [PATCH] Attempting fix by rebasing msys-1.0.dll to 0x50000000 (previously attempted 0x30000000) --- .appveyor/install.cmd | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.appveyor/install.cmd b/.appveyor/install.cmd index 4f67546242..cd1c1147b7 100644 --- a/.appveyor/install.cmd +++ b/.appveyor/install.cmd @@ -4,6 +4,12 @@ rmdir /s /q c:\MinGW curl -LO %SMINGTOOLS%/MinGW.7z 7z -oC:\ x MinGW.7z +REM Rebase MSYS DLL to mitigate heap "out of memory" errors +mingw-get install msys-rebase +copy /b c:\MinGW\msys\1.0\bin\msys-1.0.dll +rebase -b 0x50000000 msys-1.0.dll +copy /b /y msys-1.0.dll c:\MinGW\msys\1.0\bin + goto :%SMING_ARCH% :Esp8266