使用cmake和vs2010链接到静态增强库而不进行自动链接

时间:2012-06-27 22:57:34

标签: c++ visual-studio-2010 boost cmake

我有一个链接到boost_program_options的应用,其CMakeLists.txt看起来像

FIND_PACKAGE(Boost COMPONENTS program_options REQUIRED)
INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIRS})
TARGET_LINK_LIBRARIES( ${SUBPROJECT_NAME} ${Boost_LIBRARIES} )

我在我的代码中使用#define BOOST_ALL_NO_LIB之前包含<boost/program_options.hpp>来禁用vs2010中boost的自动链接,因为我想通过cmake指定它以使其与linux兼容。

在Linux中,此代码编译得很好(使用cmake,make和gcc)。 但是在使用VS2010的Windows中,我得到了一个

2>App.obj : error LNK2001: unresolved external symbol "public: static unsigned int const boost::program_options::options_description::m_default_line_length" (?m_default_line_length@options_description@program_options@boost@@2IB)
2>App.obj : error LNK2001: unresolved external symbol "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > boost::program_options::arg" (?arg@program_options@boost@@3V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@A)

请注意链接器找到lib - 如果找不到它,我会得到更多未解决的外部错误。

我将问题追溯到以下问题: http://lists.boost.org/boost-users/2009/11/54015.php非常好地描述了正在发生的事情(这两个是全局变量)。现在提出的解决方案是启用动态链接并链接到DLL。但这不是我想要做的,我想链接静态boost lib(我实际上是想做的,在VS中的App属性中Linker-&gt;输入它列出{{1} }。

我也尝试添加

D:\boost\boost_1_47\lib\boost_program_options-vc100-mt-gd-1_47.lib

到我的CMakeLists.txt但它没有改变任何东西。

任何想法如何解决这个问题?

更新: 当与boost_program_options-vc100-mt-sgd-1_47.lib链接时,我得到了一大堆关于已经在boost-lib中定义的CRT符号的新链接器错误。 按照panickal的建议更改VS Runtime选项后,这些错误也消失了,并且正在运行。

1 个答案:

答案 0 :(得分:7)

您必须链接到静态库。尝试链接到boost_program_options-vc100-mt-sgd-1_47.lib而不是boost_program_options-vc100-mt-gd-1_47.lib

s表示库的静态版本。您可以查看Boost Library Naming以获取有关命名约定的更多详细信息。

更新: 要修复多定义链接器错误,请将Configuration Properties / C/C++ / Code Generation / Runtime Library中的Visual Studio运行时库选项从Multi-threaded Debug DLL (/MDd)更改为Multi-threaded Debug (/MTd)