SN-0384 已核对来源,附原文与上下文。
你用的是 wxWidgets 2.9.0 吗?我建议除了 2.9.0 别用其他版本。
Are you using wxWidgets 2.9.0? I don't recommend using anything other than 2.9.0.
看起来是 wx 头文件(arrstr.h)里引用了 wxBase 之外的某个东西。
It looks like they've got a reference in the wx headers (arrstr.h) to something outside of wxBase.
从 bitcoin 的 makefile 里去掉 -D__WXDEBUG__ 大概就能解决。
Removing -D__WXDEBUG__ from bitcoin's makefile would probably solve it.
如果那样还不行、而你只求能跑起来,可以编辑 wxWidgets 的 include/wx/arrstr.h 第 167 行,把 wxASSERT_MSG 注释掉。
If that doesn't work and you just want to get it working, you could edit wxWidgets include/wx/arrstr.h, line 167 and comment out the wxASSERT_MSG.