gpt4 book ai didi

c++ - 由于链接器选项的顺序,AC_LANG_PROGRAM 在链接器阶段失败

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

我正在尝试测试 C++ 库并且必须做的比 AC_SEARCH_LIBS 或 AC_CHECK_LIB 多一点。但是,我的链接器对选项的顺序很挑剔(g++ 版本 5.4.0)。

我的 configure.ac 包含以下代码:

AC_LINK_IFELSE(
[AC_LANG_PROGRAM([#include <api/BamReader.h>], [BamTools::BamReader dummy])],
[TEST_LIBS=="$TEST_LIBS -lbamtools"] [HAVE_BAMTOOLS=1],
[AC_MSG_WARN([libbamtools is not installed])])

我知道 Bamtools 安装在我的系统上。这将产生负面结果:

checking api/BamReader.h usability... yes
checking api/BamReader.h presence... no
configure: WARNING: api/BamReader.h: accepted by the compiler, rejected by the preprocessor!
configure: WARNING: api/BamReader.h: proceeding with the compiler's result
checking for api/BamReader.h... yes
configure: WARNING: libbamtools is not installed <-- this line

经过一些调查,这似乎是链接器选项的顺序。

conftest.cpp 文件如下所示:

#include <api/BamReader.h>
int main () {
BamTools::BamReader dummy;
return 0;
}

autoconf 宏正在调用

g++ -o conftest -g -O2 -I/usr/local/include/bamtools -L/usr/local/lib/bamtools -lbamtools conftest.cpp/tmp/ccZiV1J9.o: In function `main':
/home/kzhou/coding/tmp/conftest.cpp:24: undefined reference to `BamTools::BamReader::BamReader()'
/home/kzhou/coding/tmp/conftest.cpp:24: undefined reference to `BamTools::BamReader::~BamReader()'
collect2: error: ld returned 1 exit status

如果您通过将 -lbamtools 放在末尾来切换顺序,那么链接器会很高兴:

g++ -o conftest -g -O2 -I/usr/local/include/bamtools -L/usr/local/lib/bamtools conftest.cpp -lbamtools

我想知道 AC_LANG_PROGRAM 需要更新吗?请给出意见。到目前为止,我还没有找到解决这个问题的好方法。请引用:

https://nerdland.net/2009/07/detecting-c-libraries-with-autotools/

最佳答案

这看起来像是您在错误的变量中传递了库;如果您在 LIBS 中传递库,它将处于正确的位置,因为 autoconf 做正确的事情。

现在,您粘贴的代码也有语法错误(使用 == 这是一个比较而不是 = 这是一个赋值),并且是一个逻辑错误,因为TEST_LIBS 是您引用的特定帖子使用的变量。所以这不是在任何命令中设置 -lbamtools 的原因。

save_LIBS=$LIBS
LIBS="$LIBS -lbamtools"
AC_LINK_IFELSE(
[AC_LANG_PROGRAM([#include <api/BamReader.h>], [BamTools::BamReader dummy])],
[save_LIBS="$LIBS"; HAVE_BAMTOOLS=1],
[AC_MSG_WARN([libbamtools is not installed])])
LIBS=$save_LIBS

这应该可以满足您的需求,尽管它仍然比实际情况要复杂一些。你可以使用 AC_CHECK_TYPE只是检查是否定义了 BamTools::BamReader

关于c++ - 由于链接器选项的顺序,AC_LANG_PROGRAM 在链接器阶段失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41070575/

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