编译 mongodb c++ v3 测试代码时出现 pkg-config 错误

pkg-config error when compiling mongodb c++ v3 test code

关注这个guid

我运行进入错误:

export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig"
c++ --std=c++11 test.cc -o test $(pkg-config --cflags --libs libmongocxx)
c++: error: Symbol’s function definition is void: pkg-config: No such file or directory

什么是 $(pkg-config --cflags --libs libmongocxx),从不使用它?如何解决这个问题?

pkg-config 是一个用于定位头文件和库并为它们提供编译器标志的工具。看起来你可能没有在你的系统上安装它。安装它,或者删除 pkg-config 节并根据安装 mongocxx 的位置手动指定编译器标志。