0

我的 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,为什么还是这样?

4

1 回答 1

0

正如克里斯所说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
于 2013-11-10T05:04:24.997 回答