Abi
Abi

Reputation: 128

OSX - Dyld Error Message: Library not loaded

I have a .app file. When I double click to open it, I get an error :

Dyld Error Message: Library not loaded: /Library/Frameworks/CoreFactoryTestStation.framework/Versions/A/CoreFactoryTestStation Referenced from: /Users/USER/Desktop/FixtureController.app/Contents/MacOS/FixtureController Reason: image not found

I dont have the source code for the project, but I do have the missing framework CoreFactoryTestStation.framework with me. Where am I supposed to add this library. Should I need the source code of the project to fix this?

Upvotes: 2

Views: 7370

Answers (2)

abi
abi

Reputation: 819

Go to folder /Library/Frameworks/ in finder and paste CoreFactoryTestStation.framework, run your app. That should resolve the loader error. If you dont find the Frameworks folder, do create one and paste your CoreFactoryTestStation.framework in that.

Upvotes: 2

Akhil Shrivastav
Akhil Shrivastav

Reputation: 437

Go to Target > Build Phase > Link Binary With Libraries pane and add your framework there

Upvotes: 0

Related Questions