我想使用 yaml-cpp 库来读取一些 YAML 字符串。为此,我尝试编译以下 C++ 代码:
#include <iostream>
#include <string>
#include <cstdio>
#include <cstring>
#include <openssl/sha.h>
#include <yaml-cpp/yaml.h>
int main(){
std::string yamlstr = "name: Test\ndescription: Test2";
std::stringstream is(yamlstr);
YAML::Parser parser(is);
YAML::Node doc;
parser.GetNextDocument(doc);
return 0;
}
但是,它没有按预期工作,并且在我运行时链接器会抛出以下错误消息g++ $(pkg-config --cflags --libs yaml-cpp) test.cpp -o test
:
/tmp/ccEPCiDN.o: In function `main':
test.cpp:(.text+0x1e0): undefined reference to `YAML::Parser::Parser(std::basic_istream<char, std::char_traits<char> >&)'
test.cpp:(.text+0x1ef): undefined reference to `YAML::Node::Node()'
test.cpp:(.text+0x209): undefined reference to `YAML::Parser::GetNextDocument(YAML::Node&)'
test.cpp:(.text+0x218): undefined reference to `YAML::Node::~Node()'
test.cpp:(.text+0x227): undefined reference to `YAML::Parser::~Parser()'
test.cpp:(.text+0x403): undefined reference to `YAML::Node::~Node()'
test.cpp:(.text+0x412): undefined reference to `YAML::Parser::~Parser()'
collect2: ld returned 1 exit status
输出pkg-config --cflags --libs yaml-cpp
:
-I/usr/local/include -L/usr/local/lib -lyaml-cpp
输出ls -l /usr/local/lib
:
[...]
-rw-r--r-- 1 root root 843138 2012-03-01 10:38 libyaml-cpp.a
[...]
我目前使用的是 0.3.0 版本,但我还检查了当前存储库的副本。
有谁知道如何解决这个问题?