编写一个boost测试,看看安装是否成功演示
#include<iostream>
#include<boost/lexical_cast.hpp>
int main(){
int a = boost::lexical_cast<int>("123456");
std::cout << a <<std::endl;
return 0;
}
编译错误
test.cpp:(.text+0x24): undefined reference to `std::cout'
test.cpp:(.text+0x29): undefined reference to `std::basic_ostream<char, std::char_traits<char> >::operator<<(int)'
test.cpp:(.text+0x31): undefined reference to `std::basic_ostream<char, std::char_traits<char> >& std::endl<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&)'
test.cpp:(.text+0x39): undefined reference to `std::basic_ostream<char, std::char_traits<char> >::operator<<(std::basic_ostream<char, std::char_traits<char> >& (*)(std::basic_ostream<char, std::char_traits<char> >&))'
/tmp/ccG8Wb2k.o: In function `__static_initialization_and_destruction_0(int, int)':
test.cpp:(.text+0x61): undefined reference to `std::ios_base::Init::Init()'
test.cpp:(.text+0x66): undefined reference to `std::ios_base::Init::~Init()'
/tmp/ccG8Wb2k.o: In function `std::exception::exception()':
答案 0 :(得分:6)
如果使用gcc
而不是g++
,则不会自动链接C ++库。这来自man g++
:
但是,使用gcc不会添加C ++库。 g ++是一个 调用GCC并自动指定链接的程序 C ++库。它将.c,.h和.i文件视为C ++源文件 除非使用-x,否则不使用C源文件。这个计划也是 在使用.h扩展名预编译C头文件时很有用 在C ++编译中。在许多系统上,g ++也随之安装 name c ++。
正如其他人所说,要么直接使用g++
,要么在调用结束时链接-lstdc++
。类似于gcc main.cpp -lstdc++
。
答案 1 :(得分:0)
这对g ++ 4.8.1编译并运行没有问题。输出:
123456
答案 2 :(得分:-1)
使用此: g ++ fileName.cpp -o文件名 那将输出要运行的文件。 我希望这能帮到您。 问候 马丁Z