gpt4 book ai didi

c++ - boost 正则表达式 : Undefined references when linking

转载 作者:行者123 更新时间:2023-11-28 04:56:30 25 4
gpt4 key购买 nike

直到几周前,我使用 boost_regex 库使用以下命令编译 C++ 文件 test.cpp

g++-4.9 -Wall -O3 -march=native -flto -DNDEBUG -o test \
--std=c++14 test.cpp -lboost_regex -pthread

编译运行良好。但在某些时候,我需要升级我的操作系统(更准确地说,是 Ubuntu 14.04,现在是 Ubuntu 16.04)。

我保留了我的本地文件夹和我的数据,我还在新系统中再次安装了 Boost 库,包括 boost_regex。

新系统中的Boost版本是1.58,遗憾的是我不知道我之前使用的是哪个Boost版本,因为它现在被删除了。

我尝试在新系统中使用与上面相同的命令再次编译相同的文件,链接器说它找不到两个函数调用 maybe_assign构造初始化。如果我用 -c 替换 -o test 选项(即没有链接),那么程序编译没有错误。

更准确地说,当我尝试进行链接时出现以下错误(它们非常长,我不得不使用 ... 点来缩短)。

In function `boost::re_detail::perl_matcher<...>::match_match()':

undefined reference to `boost::match_results<...>::maybe_assign(boost::match_results<...> const&)'


In function `bool boost::regex_search<...>(...)':

undefined reference to `boost::re_detail::perl_matcher<...>::construct_init(...)'


In function `boost::re_detail::perl_matcher<...>::match_prefix()':

undefined reference to `boost::match_results<...>::maybe_assign(boost::match_results<...> const&)'

collect2: error: ld returned 1 exit status

我真的不知道这是怎么可能的,这些库似乎已完美安装,似乎没有遗漏任何东西,并且编译可以使用以前的操作系统安装(然后我猜是较旧的库)。

此时我唯一的猜测可能是 Boost 作者删除了这些函数? (也许它们已经过时了?)。但是我没有在互联网上找到任何痕迹。如果是这种情况,我怎么知道哪些boost版本可以使用这些功能?

我做错了吗?您对调查此事有什么建议吗?

最佳答案

TL;DR 使用 gcc5。

Ununtu 16.04 默认自带 gcc5。其中的每个 C++ 库都是使用该编译器编译的。

现在 gcc4 和 gcc5 之间存在不兼容的 C++ ABI 更改。默认情况下,它使使用 gcc4 从 C++ 源构建的二进制文件与使用 gcc5 构建的二进制文件不兼容。这种不兼容性通常表现为一堆引用 std::string 和/或 std::list 的 undefined symbol 。

标准库内置双 ABI,以支持使用旧编译器构建的对象。其他图书馆如 boost、hover、don't。

关于c++ - boost 正则表达式 : Undefined references when linking,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47017969/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com