我正在尝试编写一些C++
代码(使用 C++ API),Festival
并且在尝试编译时卡住了。这是我调用的方式g++
:
g++ -Wall -pedantic -I../ -I../speech_tools/include/ helloFestival.C -o h -L../festival/src/lib/libFestival.a -L../speech_tools/lib/libestools.a -L../speech_tools/lib/libestbase.a -L../speech_tools/lib/libeststrings.a |& tee festival.runLog
我得到的错误是:
In file included from ../speech_tools/include/EST.h:48,
from ../festival/src/include/festival.h:47,
from helloFestival.C:4:
../speech_tools/include/EST_String.h:50: error: declaration of ‘void abort()’ throws different exceptions
/usr/include/stdlib.h:513: error: from previous declaration ‘void abort() throw ()’
EST_String.h 中的违规行是:
extern "C" void abort(void);
我使用的main()
功能可以在这里找到:festvox.org/docs/manual-1.4.3/festival_28.html#SEC133
这里给出的编译和链接说明是我用过的。
我在网上看过这个问题,一些解决方案表明它可能是因为向后兼容性,或者从析构函数中调用 abort() 等。我的问题是:
- 我该如何摆脱这个?
- 为什么我会看到此错误?