我已经为这个编译问题苦苦挣扎了好几个小时,但我找不到任何解决方案:
我正在开发一个以“C with classes”风格编写并使用cmake的中型应用程序。我正在尝试将 a 添加std::multimap
到我正在扩展的部分。我已将<map>
和包含<utility>
在相应的头文件中,此代码是我的最小示例:
std::pair<int,int> y(5,10);
cout << y.first << ", " << y.second << endl;
std::map<int,int> x;
//x.insert(y);
//x[2] = 4;
cout << x.empty() << endl;
除非我启用任一注释行,否则这将按预期工作,在这种情况下,我会从链接器收到以下错误:
In function `std::_Rb_tree<int, std::pair<int const, int>, std::_Select1st<std::pair<int const, int> >, std::less<int>, std::allocator<std::pair<int const, int> > >::_M_insert_(std::_Rb_tree_node_base const*, std::_Rb_tree_node_base const*, std::pair<int const, int> const&)':
/usr/lib/gcc/x86_64-redhat-linux/4.7.2/../../../../include/c++/4.7.2/bits/stl_tree.h:981: undefined reference to `std::_Rb_tree_insert_and_rebalance(int, std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node_base&)'
collect2: error: ld returned 1 exit status
我尝试过的事情
- 一些研究指出这与 libc++ 与 libstdc++ 有关,但我认为不是,因为删除
insert()
确实有效。(我也不太明白区别) - 上面的代码在独立程序中运行良好,使用
g++
(无选项)或gcc -lstdc++
. - 我尝试添加
-lstdc++
到 cmakeCMAKE_CXX_FLAGS
,但这似乎没有任何区别。 - CMakeLists.txt 中的设置
set(CMAKE_CXX_COMPILER "g++")
似乎没有任何区别。
我想这一定与库或项目设置有关,但我会非常感谢一些关于从哪里开始寻找的建议。