From c5d9a2a6725d96d30db66c336acca2d946477029 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Fri, 29 Aug 2014 14:09:36 -0700 Subject: [PATCH] debug comments --- src/bitcoindjs.cc | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/bitcoindjs.cc b/src/bitcoindjs.cc index 64ccd773..96489efc 100644 --- a/src/bitcoindjs.cc +++ b/src/bitcoindjs.cc @@ -169,7 +169,18 @@ static void async_work(uv_work_t *req) { async_data* data = static_cast(req->data); // undefined symbol: _ZTIN5boost6detail16thread_data_baseE + // grep _ZTIN5boost6detail16thread_data_baseE /usr/lib/ -r + // Binary file /usr/lib/libboost_log_setup.a matches + // Binary file /usr/lib/libboost_thread.so.1.55.0 matches + // Binary file /usr/lib/libboost_log_setup.so.1.55.0 matches + // Binary file /usr/lib/libboost_thread.a matches + + // '-L/usr/lib/libboost_log_setup.a ', + // '-L/usr/lib/libboost_thread.so.1.55.0 ', + // '-L/usr/lib/libboost_log_setup.so.1.55.0 ', + // '-L/usr/lib/libboost_thread.a ', // https://www.google.com/search?q=%22undefined+symbol%3A+_ZTIN5boost6detail16thread_data_baseE%22 + // https://www.google.com/search?q=boost+linking+%22-lboost_system%22&btnG=Search start_node(); data->result = (char *)strdup("opened"); }