文|Seraph
-
boost_1_66_0\boost\config\auto_link.hpp(229): fatal error C1189: #error : "Build options aren't compatible with pre-built libraries"
解决:设置了不兼容的STLport,如不是必须用到STLport,可以删除相关设置,因为STLport仅是STL实现的一种,VS也是有对应的实现的。
或者重新编译能兼容的STLport版本,编译过程可能比较耗时。 -
error C2039: “regex”: 不是“boost”的成员
解决:包含头文件#include <boost/regex.hpp>,我们使用boost的时候,需要知道使用哪些类需要Include那些文件。
网友评论