100+ warnings in the new Xcode 7.1?

I updated the latest version of Xcode 7.1. I get about 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):
+4
source share
3 answers

To delete derived data, press Alt on “Go” in the Finder's upper pane. Then select "Library", go to Developer / Xcode / DerivedData and delete the entire folder.

+6
source

Delete your derived data, for starters

+2
source

At the command line:

sudo rm -rf ~/Library/Developer/Xcode/DerivedData/
+2
source

Source: https://habr.com/ru/post/1615376/


All Articles