gpt4 book ai didi

c++ - yaml-cpp编译错误: "undefined reference to YAML::LoadFile"

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:05:48 32 4
gpt4 key购买 nike

我正在尝试使用 yaml-cpp 运行一个简单的测试程序,如下所示:

// main.cpp

#include <iostream>
#include "yaml-cpp/yaml.h"

int main(int argc, const char *argv[])
{
YAML::Node config = YAML::LoadFile("config.yaml");
std::cout << config << std::endl;
}

我正在尝试使用此命令进行编译:

g++ -lyaml-cpp -L$(HOME)/local/yaml-cpp/build -I$(HOME)/local/yaml-cpp/include -std=c++11 main.cpp

我收到如下所示的错误:

/tmp/ccz0D5ol.o: In function `main':
main.cpp:(.text+0xdd): undefined reference to `YAML::LoadFile(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)'
collect2: error: ld returned 1 exit status
make: *** [all] Error 1

这是我正在使用的 g++:

$ g++ --version
g++ (GCC) 5.4.0
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

这是在我没有 root 权限的 linux 机器上。我将 git 存储库克隆到 $HOME/local/yaml-cpp,创建了一个构建目录,运行 cmake -DBUILD_SHARED_LIBS=ON ..,然后 make,它创建了文件 libyaml-cpp.so.0.6.2 和符号链接(symbolic link) libyaml-cpp.so.0.6libyaml-cpp.so。如果重要的话,我的 cmake 是 3.11.2 版。

不确定这是否有帮助,但我首先由 yaml-cpp 的维护者作为 github issue 解决了这个问题, 他说

It's likely a configuration error; you might be able to get an answer if you ask on Stack Overflow.

我还发现了一个类似的问题,问题几乎完全相同,但她 solution重新排列编译命令的顺序对我不起作用。无论 -lyaml-cpp 是在命令的开头还是结尾,我都会遇到同样的问题。

如有任何帮助,我们将不胜感激。

最佳答案

@VTT 将我指向 cmake 和编译器的东西是正确的。当我查看原始 cmake 命令的结果时,前两行说

-- The C compiler identification is GNU 4.8.5
-- The CXX compiler identification is GNU 4.8.5

即使 which gccwhich g++ 指向版本 5.4.0。我找到了 this SO answer指向this cmake FAQ page说你需要设置 CCCXX 环境变量来指定不同的编译器。所以我将我的 cmake 命令更改为:

CC=$(which gcc) CXX=$(which g++) cmake -DBUILD_SHARED_LIBS=ON ..

现在一切正常。

关于c++ - yaml-cpp编译错误: "undefined reference to YAML::LoadFile",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50545014/

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