Reputation: 770
I have updated the latest version of Xcode 7.1. I am getting around 100+ compiler warnings.
Example:
warning: /Users/2141/Library/Developer/Xcode/DerivedData/ModuleCache/2GQZ88U0K6E0E/ObjectiveC-2CD0WTQVXITO7.pcm: No object file for requested architecture
while processing /Users/mohideen-2141/Library/Developer/Xcode/DerivedData/NoteBook-bldlsbruffeylydfevskmbnsmjfm/Build/Products/Debug-iphoneos/libAFNetworking.a(AFURLRequestSerialization.o):
Upvotes: 4
Views: 467
Reputation: 226
To delete the derived data, Alt-Click on "Go" in the Finder top bar. Then select "Library", navigate to Developer/Xcode/DerivedData and delete the entire folder.
Upvotes: 6
Reputation: 17307
On command line:
sudo rm -rf ~/Library/Developer/Xcode/DerivedData/
Upvotes: 2