Git Extensions: Win32 error 487: Couldn't reserve space for cygwin's heap, Win32 error 0

后端 未结 14 1742
天命终不由人
天命终不由人 2020-11-27 09:25

Git Extensions: Everything was working fine until yesterday.

But suddenly I am get this error when I try to pull some repositories using git e

相关标签:
14条回答
  • 2020-11-27 09:54

    I ran into this today. Led by Greg Hewgill's answer, I looked at running processes on my system to see if anything was "stuck" or if other users were logged into the machine doing anything with git. I then launched cygwin (installed separately) on this particular machine. It launched ok. I closed it and then tried the Git Extensions again (I was trying a pull operation) and it worked. Not sure if the launching of cygwin cleared something that was shared but this is the first time I ran into this error and this seemed to fix it for me.

    0 讨论(0)
  • 2020-11-27 09:55

    Just want to share my experience here. I came across the same issue while cross compiling for MTK platform on a Windows 64 bit machine. MinGW and MSYS are involved in the building process and this issue popped up. I solved it by changing the msys-1.0.dll file. Neither rebase.exe nor system reboot worked for me.

    Since there is no rebase.exe installed on my computer. I installed cygwin64 and used the rebase.exe inside:

    C:\cygwin64\bin\rebase.exe -b 0x50000000 msys-1.0.dll
    

    Though rebasing looked successful, the error remained. Then I ran rebase command inside Cygwin64 terminal and got an error:

    $ rebase -b 0x50000000 msys-1.0.dll
    rebase: Invalid Baseaddress 0x50000000, must be > 0x200000000
    

    I later tried a couple address but neither of them worked. So I ended up changing the msys-1.0.dll file and it solved the problem.

    0 讨论(0)
提交回复
热议问题