【发布时间】:2017-03-22 00:04:35
【问题描述】:
我使用来自 mongodb 站点的示例代码来显示这里的问题。 OS:ArchLiux,c++是g++的链接
[dean@dell_xps_13 ~]$ c++ --version c++ (GCC) 6.2.1 20160830 版权所有 (C) 2016 Free Software Foundation, Inc. 这是免费软件;见 复制条件的来源。没有保修;甚至不为 适销性或特定用途的适用性。
代码在 test.cc 文件中
#include <iostream>
#include <bsoncxx/builder/stream/document.hpp>
#include <bsoncxx/json.hpp>
#include <mongocxx/client.hpp>
#include <mongocxx/instance.hpp>
int main(int, char**) {
mongocxx::instance inst{};
mongocxx::client conn{mongocxx::uri{}};
bsoncxx::builder::stream::document document{};
auto collection = conn["testdb"]["testcollection"];
document << "hello" << "world";
collection.insert_one(document.view());
auto cursor = collection.find({});
for (auto&& doc : cursor) {
std::cout << bsoncxx::to_json(doc) << std::endl;
}
}
先编译成目标文件:
c++ -g -std=c++11 -I../include -I/usr/include/bsoncxx/v_noabi -I/usr/include/mongocxx/v_noabi -Wall -o test.o -c ./test.cc
链接它没有 -static 作品:
c++ test.o -o test -static-libgcc -static-libstdc++ -L/usr/lib -lpthread -lmongocxx -lbsoncxx -lboost_log -lboost_log_setup -lboost_system -lboost_thread -lboost_filesystem
这可以运行并打印出一些消息:
[dean@dell_xps_13 mongo-cxx-driver-r3.0.2]$ ./test
{
"_id" : {
"$oid" : "58218e821b489308ae4411d1"
},
"hello" : "world"
}
现在使用 -static 选项会出错
c++ test.o -o test -static-libgcc -static-libstdc++ -static -L/usr/lib -lpthread -lmongocxx -lbsoncxx -lboost_log -lboost_log_setup -lboost_system -lboost_thread -lboost_filesystem
许多错误信息显示如下:
/usr/lib/libmongocxx.a(client.cpp.o):在函数中
mongocxx::v_noabi::client::client(mongocxx::v_noabi::uri const&, mongocxx::v_noabi::options::client const&)': /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x28): undefined reference tomongoc_client_new_from_uri' /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x10c): 对mongoc_client_destroy' /usr/lib/libmongocxx.a(client.cpp.o): In functionmongocxx::v_noabi::client::operator=(mongocxx::v_noabi::client&&)' 的未定义引用: /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x190): 对mongoc_client_destroy' /usr/lib/libmongocxx.a(client.cpp.o): In functionmongocxx::v_noabi::client::~client()' 的未定义引用: /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x1c3): 对mongoc_client_destroy' /usr/lib/libmongocxx.a(client.cpp.o): In functionmongocxx::v_noabi::client::read_concern(mongocxx::v_noabi::read_concern)'的未定义引用: /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x214): 对mongoc_client_set_read_concern' /usr/lib/libmongocxx.a(client.cpp.o): In functionmongocxx::v_noabi::client::read_concern() const' 的未定义引用: /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x243): 未定义对mongoc_client_get_read_concern' /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x24b): undefined reference tomongoc_read_concern_copy' 的引用 /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x27c): 未定义对mongoc_read_concern_destroy' /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x2a3): undefined reference tomongoc_read_concern_destroy 的引用 /usr/lib/libmongocxx.a(client.cpp.o):在函数中mongocxx::v_noabi::client::read_preference(mongocxx::v_noabi::read_preference)': /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x3a4): undefined reference tomongoc_client_set_read_prefs' /usr/lib/libmongocxx.a(client.cpp.o):在函数中mongocxx::v_noabi::client::read_preference() const': /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x3c3): undefined reference tomongoc_client_get_read_prefs' /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x3cb): 未定义对mongoc_read_prefs_copy' /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x3fc): undefined reference tomongoc_read_prefs_destroy 的引用 /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x423): 对mongoc_read_prefs_destroy' /usr/lib/libmongocxx.a(client.cpp.o): In functionmongocxx::v_noabi::client::uri() const' 的未定义引用: /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x463): 未定义对mongoc_client_get_uri' /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x46b): undefined reference tomongoc_uri_copy' 的引用 /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x49c): 未定义对mongoc_uri_destroy' /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x4c3): undefined reference tomongoc_uri_destroy' 的引用 /usr/lib/libmongocxx.a(client.cpp.o):在函数中mongocxx::v_noabi::client::write_concern(mongocxx::v_noabi::write_concern)': /home/dean/work/github/mongo-cxx-driver/src/mongocxx/client.cpp:(.text+0x504): undefined reference tomongoc_client_set_write_concern' /usr/lib/libmongocxx.a(client.cpp.o):在函数中 `mongocxx::v_noabi::client::write_concern() const':
....
/usr/lib/libbsoncxx.a(oid.cpp.o):在函数中
bsoncxx::v_noabi::oid::to_string[abi:cxx11]() const': /home/dean/work/github/mongo-cxx-driver/src/bsoncxx/oid.cpp:(.text+0x139): undefined reference tobson_oid_to_string' /usr/lib/libbsoncxx.a(oid.cpp.o):在函数中bsoncxx::v_noabi::oid::get_time_t() const': /home/dean/work/github/mongo-cxx-driver/src/bsoncxx/oid.cpp:(.text+0x1ea): undefined reference tobson_oid_get_time_t' /usr/lib/libbsoncxx.a(oid.cpp.o):在函数中bsoncxx::v_noabi::oid_compare(bsoncxx::v_noabi::oid const&, bsoncxx::v_noabi::oid const&)': /home/dean/work/github/mongo-cxx-driver/src/bsoncxx/oid.cpp:(.text+0x24f): undefined reference tobson_oid_compare' /usr/lib/libbsoncxx.a(oid.cpp.o):在函数中bsoncxx::v_noabi::operator<(bsoncxx::v_noabi::oid const&, bsoncxx::v_noabi::oid const&)': /home/dean/work/github/mongo-cxx-driver/src/bsoncxx/oid.cpp:(.text+0x2af): undefined reference tobson_oid_compare' /usr/lib/libbsoncxx.a(oid.cpp.o):在函数中bsoncxx::v_noabi::operator>(bsoncxx::v_noabi::oid const&, bsoncxx::v_noabi::oid const&)': /home/dean/work/github/mongo-cxx-driver/src/bsoncxx/oid.cpp:(.text+0x30f): undefined reference tobson_oid_compare' /usr/lib/libbsoncxx.a(oid.cpp.o):在函数中bsoncxx::v_noabi::operator<=(bsoncxx::v_noabi::oid const&, bsoncxx::v_noabi::oid const&)': /home/dean/work/github/mongo-cxx-driver/src/bsoncxx/oid.cpp:(.text+0x36f): undefined reference tobson_oid_compare' /usr/lib/libbsoncxx.a(oid.cpp.o):在函数中bsoncxx::v_noabi::operator>=(bsoncxx::v_noabi::oid const&, bsoncxx::v_noabi::oid const&)': /home/dean/work/github/mongo-cxx-driver/src/bsoncxx/oid.cpp:(.text+0x3cf): undefined reference tobson_oid_compare' /usr/lib/libbsoncxx.a(oid.cpp.o):/home/dean/work/github/mongo-cxx-driver/src/bsoncxx/oid.cpp:(.text+0x42f): 更多未定义的对“bson_oid_compare”的引用跟随collect2: 错误:ld 返回 1 个退出状态
【问题讨论】:
标签: c++ mongodb c++11 gcc mongo-cxx-driver