locale::facet::_S_create_c_locale name not valid(LC_ALL=C没用的)问题解决方法

c++编译的库文件再运行是报

terminate called after throwing an instance of 'std::runtime_error'

what(): locale::facet::_S_create_c_locale name not valid

原因:接口库文件在接口调用时有返回GBK字段,但是由于本地机器没有安装相应的语言包支持。所以程序出错崩溃。

解决方法:安装中文语言包支持

$sudo dpkg-reconfigure locales

Generating locales (this might take a while)...

en_US.UTF-8... done

zh_CN.GB2312... done

zh_CN.GB18030... done

zh_CN.GBK... done

zh_CN.UTF-8... done

Generation complete.

你可能感兴趣的:(linux,c++)