Problems with using libxml2

I want uing libxml2 to load my resource information from xml files.
When I using libxml2 in win32,it’s works.
But when I building with platform-android,it is not working.
I’m tryed refer to Android.mk file in cocos2dx patch,and make my Android.mk file in project patch/Classes like this:
LOCAL_C_INCLUDES := … … #append libxml2 header files in my file
$(LOCAL_PATH)/…/…/cocos2dx/platform/third_party/android/libxml2 LOCAL_LDLIBS := … … ~~L$/…/…/cocos2dx/platform/third_party/android/libraries/$)~~libxml2 In cmd window it shows me an error:D:/Android/android-ndk-r7/toolchains/arm-linux-androideabi-4.4.3/prebuilt/windows/bin/…/lib/gcc/arm-linux-androideabi/4.4.3/…/…/…/…/arm-linux-androideabi/bin/ld.exe: cannot find ~~libxml2
I tryed edited my Android.mk:
LOCAL_STATIC_LIBRARIES := $/…/…/cocos2dx/platform/third_party/android/libraries/$) ~~libxml2 error is undefined reference to ‘xmlReadfile’ ‘xmlFreeDoc’ ‘xmlDocGetrootElement’… …
And I also tryed many way to edited Android.mk,but it still have undefined reference error.
Please help.