Xcode is giving me this warning:
ld: warning: duplicate dylib /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/usr/lib/system/libSystem.host.dylib
There's an SO answer here: Duplicate dylib warning in xcode
which says to find and delete the duplicate. Using locate I see 2 files:
locate libSystem.host.dylib
/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.2.sdk/usr/lib/system/libSystem.host.dylib
/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/usr/lib/system/libSystem.host.dylib
So, the question is - how do I safely resolve the duplicate dylib warning:
- should I delete the 3.2 dylib and, if so, will it cause a problem when I compile for iPad?
- or should I delete the entire iPhoneSimulator3.2.sdk and, if so, does that mean I lose my iPad simulator?
- or should I do something else?