-
Notifications
You must be signed in to change notification settings - Fork 18k
gomingw's goinstall fails. #2290
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
do this help ? https://golang.org/issue/1826 |
Issue #2289 has been merged into this issue. |
Some context from https://groups.google.com/d/topic/golang-nuts/zuLRF-d3LTs/discussion >>> I compiled Go using mingw on windows, and when running goinstall.exe I get: throw: runtime: cannot reserve arena virtual address space I also tried running the goinstall included in gomingw and got the same result. <<< The message you are seeing is result of VirtualAlloc function fails to reserve address space. I agree with [email protected], it could be security related: https://golang.org/issue/1826 You could try and copy goinstall.exe into file with a different name: C:\>cd \Go\bin C:\Go\bin>copy goinstall.exe a.exe 1 file(s) copied. C:\Go\bin>a.exe usage: goinstall importpath... goinstall -a -a=false: install all previously installed packages -clean=false: clean the package directory before installing -dashboard=true: report public packages at http://godashboard.appspot.com/pack age -install=true: build and install -make=true: use make to build and install -nuke=false: clean the package directory and target before installing -u=false: update already-downloaded packages -v=false: verbose C:\Go\bin> If that works for you, then all solutions are listed here https://golang.org/issue/1826 Alex Labels changed: added os-windows. Owner changed to @alexbrainman. Status changed to WaitingForReply. |
Executable with a name that contains "install" in it ...? Sounds dangerous to me :-) Sorry, I still can't get over it. Status changed to Duplicate. Merged into issue #1826. |
This issue was closed.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
by zippoxer:
The text was updated successfully, but these errors were encountered: