can create a shared libxml2

故事扮演 提交于 2019-12-12 01:07:32

问题


i am creating an application in android using ndk and jni.In my app i have requirement to parse xml data.for which i have used libxml2.

when i am making a static library of libxml2 and use,it works fine.

But when i am trying to make a shared library and use it in my application i am getting errors while doing ndk-build:

undefined reference to `xmlReaderForMemory'
/home/subrat/EclipseIDE/workspace/jni/source/interface.c:677: undefined reference to `xmlTextReaderRead'
/home/subrat/EclipseIDE/workspace/jni/source/interface.c:680: undefined reference to `xmlTextReaderNodeType'
.......

so can any one please tell me whethet i am having any issue in my coding or i can't make shared library of libxml2..

any type of suggestions are appreciated........

来源:https://stackoverflow.com/questions/11735969/can-create-a-shared-libxml2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!