我必须使用 CCS 编译器 3.0 在 UNIX、Unixware 2.1.3 上构建一个应用程序,并且一直出现此错误:
UX:acomp: ERROR: "//home/dino/treeit.h", line 32: internal compiler error: storage failure
*** Error code 1 (bu21)
UX:make: ERROR: fatal error.
我查看了系统上的可用空间,这很好。
这是 C++ 中的代码部分,从第 23 行到第 36 行:
public:
bool operator != (iterator_impl const &p_iterator) const
{
return m_pNode != p_iterator.m_pNode;
}
__BTL_ITERATOR_IMPL_NAME()
:m_pNode(0)
{} //Line 32 is here!!!!!!!
__BTL_ITERATOR_IMPL_NAME(iterator_impl const &p_iterator)
:m_pNode(p_iterator.m_pNode)
{}
我在 UNIX 上不是很好,不知道这是否是与操作系统相关的问题。有人能帮我吗 ?:)
谢谢!