Rehaan Advani
Rehaan Advani

Reputation: 975

Linker Error (Clang)

ld: '/Users/rehaanadvani/Downloads/parse-library-1/Parse.framework/Parse(PFACL.o)' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation)

I get this error when I try to build my Xcode project. I already checked that I have bitcode enabled, so what is going wrong?

Upvotes: 0

Views: 110

Answers (1)

Darko
Darko

Reputation: 9845

The Parse library has bitcode disabled but your project has bitcode enabled. But the settings have to match. Either rebuild Parse with bitcode or disable bitcode in your project.

Upvotes: 1

Related Questions