I am getting following errors.

I have already added libxml2.dylib to my project, however I am getting this type of trouble.
Please help me.
|
I am getting following errors.
I have already added |
|||||||||
|
|
Follow the directions here, under "Setting up your project file."
Also see the OP's answer. |
|||||||||||||||||
|
|
Adding libxml2 in Xcode 4.3.x Adding libxml2 is a big, fat, finicky pain in the ass. If you're going to do it do it before you get too far in building your project. Here's how. Target settings Click on your target (not your project) and select "Build Phases". Click on the reveal triangle titled "Link Binary With Libraries". Click on the "+" to add a library. Scroll to the bottom of the list and select "libxml2.dylib". That adds the libxml2 library 2 your project… but wait. Project settings Now you have to tell your project where to look for it three more times. Select the "Build Settings tab". Scroll down to the "Linking" section. Under your project's columns double click on the "Other Linker Flags" row. Click the "+" and add "-lxml2" to the list. Still more. In the same tab, scroll down to the "Search Paths" section. Under your project's column in the "Framework Search Paths" row add "/usr/lib/libxml2.dylib". In the "Header Search Paths" AND the "User Header Search Paths" row add "$(SDKROOT)/usr/include/libxml2". In those last two cases make sure that path is entered in Debug AND Release. Then. Under the "Product" Menu select "Clean". Then, if I were you (and let's face it I probably am) I'd quit Xcode and walk away. When you come back and launch you should be good to go. |
|||||||||||
|
|
Ray Wenderlich has a blog post about using gdata that solves this problem. Basically these simple steps: In XCode, click Project\Edit Project Settings and make sure “All Configurations” are checked. Find the Search Paths\Header Search Paths setting and add /usr/include/libxml2 to the list. Finally, find the Linking\Other Linker Flags section and add -lxml2 to the list. original post: http://www.raywenderlich.com/725/how-to-read-and-write-xml-documents-with-gdataxml |
|||||
|
|
Form the link of @Matt Ball, I found following helpful to me. You need to add libxml2.dylib to your project (don't put it in the Frameworks section). On the Mac, you'll find it at Since libxml2 is a .dylib (not a nice friendly .framework) we still have one more thing to do. Go to the Project build settings (
|
||||
|
|
|
Another solution. do all the steps in header search path etc. and make sure your selected configuration in project in Project settings is the correct one. When you double click on project build settings ,you may be changing in Distribution settings, But you are trying to add header search path in "Debug" settings. So make sure you are in correct settings. or choose all settings |
||||
|
|
|
I found the same, I had to add $(SDKROOT)/usr/include/libxml2 for the latest Xcode (4.3.x). ALSO, what kept me circling around for hours is the fact that I was modifying the "TARGET" and not the "PROJECT" (the new UI of Xcode is so intricate that its easy to overlook this). You need to modify the PROJECT! |
|||
|
|
|
I found that with xCode 4.3.2 I had to enter $(SDKROOT)/usr/include/libxml2 into the Header Search field rather than simply /usr/include/libxml2 |
|||
|
|
|
I'm not sure what the difference is but add the include path to the project as well as the target. |
|||
|
|
|
I had this problem when I reopened a project (which was developed on XCode 3.something on Leopard) after upgrading to Snow Leopard and XCode 3.2. Curious enough, it only affected some kinds of builds (emulator builds went fine, device ones gave me the error). And I have libxml2 at /usr/include, and it indeed contains libxml/tree.h. Even the magic "Clean" did not work, but "Empty Caches..." under the "XCode" menu (between the Apple logo and File) did the trick (was that menu there in previous versions?). Beats me the reason, but after a clean there were no more complaints regarding libxml/tree.h |
|||
|
|
|
Please follow the following steps
|
||||
|
|
|
Xcode 4.5 I have used The CW's solution entirely. The only exception is that $(SDKROOT)/usr/include/libxml2 didn't work for me, and I had to add "$(SDK_DIR)"/usr/include/libxml2 to my Projects Header Search Paths and User Header Search Paths. After that project builds successfully. EDIT: I have Google GData project inside my project (called MyProject) (my project uses). GData requires libxml. To build project MyProject successfully, I add "$(SDK_DIR)"/usr/include/libxml2 to Header Search Paths of MyProject and no to Header Search Paths of GData . If I didnt add it to MyProject, project did not build). |
||||
|
|
|
I found this visual tutorial useful. |
||||
|
|
|
Have you tried everything with libxml/tree.h, and it still without working? So, you could restart your Mac and voila! any temporary route probably was failing :) |
|||
|
|
|
On Mountain Lion I was facing same issue, which was resolved by adding |
|||
|
|