在OpenBSD上编译Golang时“无法保留竞技场虚拟地址空间”

时间:2012-09-03 02:22:49

标签: go

我在使用命令“ksh all.bash”在OpenBSD上编译golang时遇到错误“无法保留竞技场虚拟地址空间”(也尝试过make.bash但是没有用)。这是输出:

$ ksh all.bash
# Building C bootstrap tool.
cmd/dist

# Building compilers and Go bootstrap tool for host, openbsd/386.
lib9
libbio
... (truncated)
pkg/go/doc
pkg/go/build
cmd/go
throw: runtime: cannot reserve arena virtual address space

我尝试按照http://code.google.com/p/go-wiki/wiki/OpenBSD上的说明操作,但也有可能我没有正确执行。任何提示将不胜感激。

2 个答案:

答案 0 :(得分:2)

似乎而不是搞“工作人员”组,更改“默认”部分的默认值解决了问题。

default:\
    :path=/usr/bin /bin /usr/sbin /sbin /usr/X11R6/bin /usr/local/bin /usr/local/sbin:\
    :umask=022:\
    :datasize-max=infinity:\
    :datasize-cur=infinity:\
    :maxproc-max=256:\
    :maxproc-cur=128:\
    :openfiles-cur=128:\
    :stacksize-cur=4M:\
    :localcipher=blowfish,6:\
    :ypcipher=old:\
    :tc=auth-defaults:\
    :tc=auth-ftp-defaults:

答案 1 :(得分:1)

您的程序无法分配虚拟地址空间

http://code.google.com/p/go/source/browse/src/pkg/runtime/malloc.goc#374

我自己不使用OpenBSD,也不知道你的问题是什么。但是,如果您在此处插入一些打印输出,您可以尝试自己收集更多信息:

http://code.google.com/p/go/source/browse/src/pkg/runtime/mem_openbsd.c#54

亚历