精通
英语
和
开源
,
擅长
开发
与
培训
,
胸怀四海
第一信赖
近期开发一个特殊环境产品升级到64位平台任务,这个平台里有boost的正则部分的代码,这里把升级过程里的一些过程描述下。
无法打开文件“libboost_regex-vc80-mt-1_34.lib”,包含了boost的头文件,最终就需要一个lib才能编译通过,没lib就报上面的错误。
看正则的目录下有mak,就想用namke编译:\regex\build>nmake -f vc8.mak,出下面问题
error C3861: “unchecked_equal”: 找不到标识符,转bjam方式来编译boost,
bjam No toolset specified,到有.jam目录下执行
>bjam --toolset=msvc --with-regex target
notice: could not find main target target
notice: assuming it's a name of file to create
bjam --toolset=msvc --with-regex --with-thread --link=static --threading=multi --runtime-link=shared debug stage
bjam stage --toolset=msvc --stagedir=”d:\boost\lib” link=static runtime-link= static threading=multi release
bjam stage --toolset=msvc --with-regex --stagedir=d:\\boost\\lib --build-dir=d:\\boolst\\temp link=static runtime-link=static threading=multi release address-model=64
bjam.exe --build-dir=E:/Boost/Boost_1.55.0_VC2013_X64/temp --stagedir=E:/Boost/Boost_1.55.0_VC2013_X64 link=static runtime-link=static address-model=64
bjam --toolset=msvc --prefix=D:\05_Computer\04_3rdPatry\02Boost\boost_1_44_0\output --without-python --build-type=complete link=shared threading=multi install
上面都是试着解决notice: could not find main target target的命令,但是都不行,一气之下,就放弃boost了,不就是正则吗?在VC2010里的C++库里已经有正则了,就把代码全改为C++标准库里的正则。当然boost正则和标准库正则用法不一样,不过也解决了。
解决问题要能跨出环境之外,俗话说,降维打击,谁都抗不住,何况一个小小的平台。当然换模式就需要代码精通才可。
有兴趣用开源提升工作能力,找锐英源啊。