Reputation: 71
compile error after update xcode7.1.1
xcrun: error: unable to find utility "bitcode_strip", not a developer tool or in PATH
*** error: Couldn't copy and strip bitcode /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/libswiftCore.dylib to /Users/sungrow/Library/Developer/Xcode/DerivedData/iSolarCloud-dwdjvlyodazrbjayoqquublxncwp/Build/Products/Debug-iphoneos/iSolarCloud.app/Frameworks/libswiftCore.dylib: bitcode_strip failed with exit code 72
Upvotes: 7
Views: 3214
Reputation: 6261
Sometimes the reason isn't building it with bitcode enabled.There may be something wrong with Xcode.You can try:
PS:My answer of how to clear derived data:
How to "Delete derived data" in Xcode6?
If it helps, please vote it up.I need enough reputations to post image...
Upvotes: 1
Reputation: 1112
I think the solution is to deactivate BTICODE for Debug configuration. Go to 'Build Settings', search for 'ENABLE_BITCODE', drill down this option, and select 'NO' for Debug.
Upvotes: 0