Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apple Mach-O Linker Error lxml

I just upgraded xcode to 4.5 and now i get an error when compiling :

ld: library not found for -lxml2.2.7.3
cland: error: linker command failed with exit code 1

I did not change my code after the upgrade... So?

thanks!

like image 728
ApheX Avatar asked Oct 01 '12 16:10

ApheX


1 Answers

Click on your projekt ☞ target ☞ build phases ☞ link binary with libraries
then remove lxml2.2.7.3.dylib and add lxml2.dylib (if your project does not depend on a specific version of that library).

like image 94
borisdiakur Avatar answered Sep 27 '22 18:09

borisdiakur