我在 Mac OSX Yosemite 上安装了 MongoDB C 驱动程序。
使用
./configure --prefix=/usr --libdir=/usr/lib64
./autogen.sh
make
sudo make install
make test
一切都很好,但是当我尝试在终端上使用 Xcode 或 GCC 编译 C 代码时
#include <stdio.h>
#include "mongo.h"
int main() {
return 0;
}
它注意到我
test.c:3:10: fatal error: 'mongo.h' file not found
然后,我在 /usr/include 中看不到 mongo.h 文件或任何文件,是的,我已经安装了 MongoDB。
我错过了什么吗?