我的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,为什么它仍然像这样发生?答案 0 :(得分: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