gcc 未定义对 `std::ios_base::Init::Init()' 的引用
Posted
技术标签:
【中文标题】gcc 未定义对 `std::ios_base::Init::Init()\' 的引用【英文标题】:gcc undefined reference to `std::ios_base::Init::Init()'gcc 未定义对 `std::ios_base::Init::Init()' 的引用 【发布时间】:2013-09-09 12:18:25 【问题描述】:写一个boost测试是否安装成功demo
#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()':
【问题讨论】:
你很可能调用的是gcc
而不是g++
,区别在于后者默认情况下会在调用链接器时引入相关的c++数据。如果您出于某种未知原因想要使用gcc
,请使用类似以下的gcc test.cpp -lstdc++
你能粘贴你的编译命令吗?你不是用 gcc 代替 g++ 吗?
【参考方案1】:
如果您使用gcc
而不是g++
,C++ 库不会自动链接。这是来自man g++
:
但是,使用 gcc 并没有添加 C++ 库。 g++ 是一个 调用 GCC 并自动指定链接的程序 C++ 库。它将 .c、.h 和 .i 文件视为 C++ 源文件 而不是 C 源文件,除非使用 -x。这个节目也是 在预编译带有 .h 扩展名的 C 头文件以供使用时很有用 在 C++ 编译中。在许多系统上,g++ 也随 命名为 c++。
正如其他人所说,要么直接使用g++
,要么在调用结束时链接-lstdc++
。类似gcc main.cpp -lstdc++
。
【讨论】:
【参考方案2】:这编译和运行 g++ 4.8.1 没有问题。输出:
123456
【讨论】:
【参考方案3】:使用这个: g++ 文件名.cpp -o 文件名 这将输出要运行的文件。 我希望这能帮到您。 问候 马丁Z
【讨论】:
以上是关于gcc 未定义对 `std::ios_base::Init::Init()' 的引用的主要内容,如果未能解决你的问题,请参考以下文章
当异常掩码未设置为 eofbit 时,为啥 getline() 会抛出“std::ios_base::failure”?
使用 std::ios_base::binary 有啥意义?
std::ios_base::sync_with_stdio(false),优点,缺点?
由`std::ios_base::sync_with_stdio(false);`引起的重复输入问题