如题,在Qt中使用了C++标准库中的异常处理机制,即try catch语句,在编译时报错error: exception handling disabled, use -fexceptions to enable catch(std::exception excp)
解决方法:在Qt的工程文件中添加 CONFIG += exceptions或者CONFIG -= exceptions_off,然后再重新编译就可以了。
更加详细的说明请参考https://www.cnblogs.com/findumars/p/4898360.html。
标签:exception,handling,Qt,use,disabled,编译,enable,报错 From: https://www.cnblogs.com/Gregg/p/17472892.html