mongodb c++ 驱动库编译

git clone 'https://github.com/mongodb/mongo-cxx-driver.git'
scons -j2 --c++11=on --sharedclient --use-sasl-client

编译成共享库,这里需要注意的是如果你的应用程序使用的是c++11记得也要打开c++11模式否则
在执行
mongo::client::initialize()
你将收获Program received signal SIGSEGV, Segmentation fault

如果你的boost库不是安装在标准路径,那么需要指定一下,增加选项如下:

scons -j8 --c++11=on --sharedclient --use-sasl-client --ssl --cpppath=/usr/local/include/ --libpath=/usr/local/lib/

你可能感兴趣的:(mongodb)