我有以下情况:
我已经创建了动态库lib.so.该库使用另一个静态库lib.a.他们都使用Boost库(我将它们链接在CMake文件中)。 (我在Java项目中使用这个动态库)
这是lib.so中的file.cpp代码,它从lib.a调用getFilesFromDirectory()
#include "DrawingDetector.h"
#include "../../DrawingDetection.h"
#include <vector>
#include <boost/filesystem/operations.hpp>
using namespace std;
JNIEXPORT void JNICALL Java_DrawingDetector_detectImage( JNIEnv * env, jobject, jstring jMsg)
{
const char* msg = env->GetStringUTFChars(jMsg,0);
vector<File> filesPic = getFilesFromDirectory(msg,0);
env->ReleaseStringUTFChars(jMsg, msg);
}
这是来自lib.a的getFilesFromDirectory()代码:
#include <string.h>
#include <iostream>
#include <boost/filesystem/operations.hpp>
#include "DrawingDetection.h"
using namespace std;
using namespace boost;
using namespace boost::filesystem;
vector<File> getFilesFromDirectory(string dir, int status)
{
vector<File> files;
path directoty = path(dir);
directory_iterator end;
if (!exists(directoty))
{
cout<<"There is no such directory or file!"<<endl;
}
for (directory_iterator itr(directoty); itr != end; ++itr)
{
if ( is_regular_file((*itr).path()))
{
//some code
}
}
return files;
}
但是当我的项目调用lib.so库时,它会引发以下消息:
java: symbol lookup error: /home/orlova/workspace/kmsearch/Images/branches/DrawingDetection/jni/bin/lib.so: undefined symbol:_ZN5boost11filesystem34path21wchar_t_codecvt_facetEv
当我发现它在lib.a中崩溃时,它试图调用boost方法“path”。 但是我声明了所有的boost标题,并将它们链接到CMake文件中。 你能解释一下,为什么它不能识别助推方法?
修改:
我的编译器gcc 4.6的版本。如果我使用4.5,一切都很好!
另外如果我在lib.so中的file.cpp中直接使用一些boost方法,一切正常,例如:
JNIEXPORT void JNICALL Java_DrawingDetector_detectImage( JNIEnv * env, jobject, jstring jMsg)
{
const char* msg = env->GetStringUTFChars(jMsg,0);
path directoty = path("/home/orlova");//if I use boost method here
vector<File> filesPic = getFilesFromDirectory(msg,0);// then everything works fine
env->ReleaseStringUTFChars(jMsg, msg);
}
的 BUT 的
JNIEXPORT void JNICALL Java_DrawingDetector_detectImage( JNIEnv * env, jobject, jstring jMsg)
{
const char* msg = env->GetStringUTFChars(jMsg,0);
//path directoty = path("/home/orlova");//if I don't use boost method here
vector<File> filesPic = getFilesFromDirectory(msg,0);// then this method causes before-mentioned error!!
env->ReleaseStringUTFChars(jMsg, msg);
}
如何解释编译器的这种行为?
请注意,该错误发生在运行时。
的解决 的
问题出在CMake文件中* target_link_libraries *中的库的顺序。
WRONG:
find_library( LIBRARY_MAIN
NAMES lib.a
PATHS ../bin
)
set ( LIB_JNI
jpeg
${OpenCV_LIBS}
${BOOST_LIB}
${LIBRARY_MAIN}//static library is the last in the list of libraries and after boost!
)
target_link_libraries( ${PROJECT} ${LIB_JNI} )
RIGHT:
find_library( LIBRARY_MAIN
NAMES lib.a
PATHS ../bin
)
set ( LIB_JNI
${LIBRARY_MAIN}
jpeg
${OpenCV_LIBS}
${BOOST_LIB}//boost library is the last in the list and after static library!
)
target_link_libraries( ${PROJECT} ${LIB_JNI} )
答案 0 :(得分:3)
似乎您动态链接Boost.Filesystem
- 如果是这样,您必须确保加载此库。您可以将其添加到LOCAL_LDLIBS
中的Android.mk
行,或者在Java代码中加载lib.so
之前手动预加载它。
或者,只需将Boost(以及其他所有内容)静态链接到lib.so
并忘记所有这些动态混乱。 :)
UPDATE1 :关于您发布的更新 - 尝试将boost_filesystem.a作为 last 对象放在链接器行中。