我使用pugixml解析xml,它在ios上工作正常。但是,当我更改为android时,使用'./build_native.sh'(cocos2d-x for android)来构建我的项目。有一些错误:
pugi/pugixml.cpp: In member function 'void* pugi::impl::(anonymous namespace)::xpath_allocator::allocate(size_t)'
pugi/pugixml.cpp:5722:26: error: exception handling disabled, use -fexceptions to enable
有人可以帮助我。非常感谢你!
答案 0 :(得分:0)
您有两种选择:
#define PUGIXML_NO_EXCEPTIONS
添加到pugiconfig.hpp
或您的构建设置,禁用pugixml中的异常处理。