我有libstdc++6-dev,但仍然有stl链接错误

I have libstdc++6-dev but still have stl linked error

本文关键字:stl 链接 错误 libstdc++6-dev 我有      更新时间:2023-10-16

我的 gcc 版本是 4.7

这是我的简单源代码:我安装了libstdc++6-dev,我认为它应该包括stl

#include <iostream>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/convex_hull_2.h>
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef K::Point_2 Point_2;
using namespace std;
int main()
{
Point_2 points[5] = { Point_2(0,0), Point_2(10,0), Point_2(10,10), Point_2(6,5), Point_2(4,1) };
Point_2 result[5];
Point_2 *ptr = CGAL::convex_hull_2( points, points+5, result );
std::cout << ptr - result << " points on the convex hull" << std::endl;
return 0;
}

我的编译命令是:

gcc -c hello.cpp -o hello.o
gcc -o hello hello.o 1>info.txt 2>error.txt

错误是:

hello.o: In function `main':
hello.cpp:(.text+0x156): undefined reference to `std::cout'
hello.cpp:(.text+0x15b): undefined reference to `std::ostream::operator<<(long)'
hello.cpp:(.text+0x168): undefined reference to `std::basic_ostream<char, std::char_traits<char> >& std::operator<< <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*)'

....

似乎 stl 库仍然不起作用,但我安装了 libstdc++6-dev,为什么它仍然这样发生?

正如克里斯所说gcc不适合C++。您可以使用两种不同的方法解决问题

gcc -c hello.cpp -o hello.o
gcc -lstdc++ -o hello hello.o 1>info.txt 2>error.txt

g++ -c hello.cpp -o hello.o
g++ -o hello hello.o 1>info.txt 2>error.txt