Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS weird error: dyld: Symbol not found: __dealloc?

I suddenly getting the below error, which is not allowing any application to run in simulator. The app just crashes.

dyld: Symbol not found: __dealloc
  Referenced from: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
  Expected in: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.1.sdk/usr/lib/libobjc.A.dylib
 in /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation

Please suggest !

like image 224
Easwaramoorthy K Avatar asked Jun 06 '14 07:06

Easwaramoorthy K


1 Answers

As mentioned in the Xcode 6.1 Release Notes, the issue is that you are linking against new frameworks that were added to both Yosemite and iOS 8 while running in iOS 7.1. Unfortunately, this causes dyld to try bringing in the host version of the library when running in the iOS 7.1 simulator runtime.

If an app is weak linked against frameworks new in iOS 8 SDK and OS X 10.10 SDK, it may fail to run if the run destination is an iOS Simulator for older iOS runtimes and the host system is running OS X Yosemite. (17807439)

Additionally, this can occur if your iOS 7.1 simulator runtime is not fully installed (eg: due to an interrupted installation). If this occurs, dyld will similarly fall back to the host for the missing libraries if available.

iOS 8.0 and later have their own dyld that will reject pulling in host versions of libraries and thus will prevent this class of problems in the future.

The iOS 7.1 Simulator runtime that is installed by Xcode 6.2 and later was updated to address this issue.

like image 192
Jeremy Huddleston Sequoia Avatar answered Nov 15 '22 00:11

Jeremy Huddleston Sequoia