SetDebugMessageDispatchHandler OpenSuse上的node.js 0.6.6错误

SUSE Linux Enterprise Server 11 (x86_64)上运行node时遇到以下错误

 node --version v0.6.6 node hello-console.js FATAL ERROR: v8::Debug::SetDebugMessageDispatchHandler Error initializing V8 

我使用以下命令来安装它:

 ./configure --without-ssl --without-snapshot make make install 

任何帮助,将不胜感激。

默认情况下,V8试图分配512 MB。 您可能需要使用以下方式调整您的地址空间:

 ulimit -v unlimited 

否则,你将需要在源代码中调整v8::internal::Heap::code_range_size

同样的问题可能会导致它不能完成编译,如果你在configure中省略--without-snapshot