Encountering this issue in Xcode, solutions I've tried:
~/Library/Developer
I'm at a loss at this point can someone point me to the right direction here? I've already spent an entire day on this. Other projects build fine though.
I SOLVED IT!
XCode was adding the following Header Search Paths
:
/usr/include/libxml2 recursive
/usr/include/libxml2 non-recursive
But libxml2
is already included in the SDK
from XCode.app
via $(inherited)
search path so everything was conflicting.
Removed those two /usr/include/libxml2
paths at the top of my folder hierarchy fixed it!
Thank the XCode gods.