内部编译器错误消息的含义是什么,我该怎么办?

Vok*_*ram 3 c++ compiler-errors compilation internal-compiler-error

我正在尝试使用pgCC编译器编译我的C++程序,该程序使用MPICH和NAG C库(我使用NAG生成随机数).

但是,编译器给了我以下错误消息:

PGCC-S-0000-Internal compiler error. linearize: bad ili #:       0 (mpisim.C: 225)
PGCC-S-0000-Internal compiler error. gen_aili: unrec. ili opcode:       0 (mpisim.C: 225)
PGCC-S-0000-Internal compiler error. linearize: bad ili #:       0 (mpisim.C: 266)
PGCC-S-0000-Internal compiler error. gen_aili: unrec. ili opcode:       0 (mpisim.C: 266)
PGCC/x86 Linux 12.4-0: compilation completed with severe errors
Run Code Online (Sandbox Code Playgroud)

我不知道这些消息是指什么.有人可以向我解释他们的意思吗?

有没有办法让我弄清楚问题线的位置?255in 是否(mpisim.C: 225)表示我的代码中的行号?

Ker*_* SB 12

内部编译器错误是编译器中的错误.没有什么可以解决编译器供应商提出的问题.

通常,当您尝试编译错误的代码时会发生ICE,但编译器也可以完全想到有效的C++.语言非常复杂,很难在所有可能的组合中测试每个可能的功能.

如果你设法找出导致崩溃的代码行,你可以尝试用更简单的术语重写它(例如通过引入额外的局部变量或typedef).