user3001526
user3001526

Reputation: 81

Undefined symbols for architecture x86_64 iOS

I have used cocoapods to install the upnpx library which successfully builds. But as soon as I went to build after using one of the classes In my project I am faced with this error:

Undefined symbols for architecture x86_64:
  "_OBJC_CLASS_$_UPnPManager", referenced from:
      objc-class-ref in RendererView.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

Upvotes: 0

Views: 1325

Answers (1)

user3001526
user3001526

Reputation: 81

SOLVED: For me, setting "Build active architectures only" to YES in build settings of the project target resolves this issue

Upvotes: 1

Related Questions