I successfully converted an iOS project to Xcode 7 beta + Swift 2 (it starts and tests work).
However, when I turn on the new Sanitizer address (option + run β run β Diagnostics β Enable Address Sanitizer, I get the following message from the linker:
Undefined symbols for architecture x86_64: "___asan_init_v5", referenced from: _asan.module_ctor in libPods.a(Pods-dummy.o) ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation)
It seems to be a reference to CocoaPods, which I use for the adMob module. I updated CocoaPods myself to the latest version, and I updated adMob Pod to the latest version.
Any tips on how to get Address Sanitizer to work with CocoaPods or AdMob CocoaPod depending on what it causes?
source share