skyylex
skyylex

Reputation: 815

dyld: Library not loaded: @rpath/libswiftQuartzCore.dylib

After the update of Carthage to 0.18 (via homebrew), call of the carthage become broken:

$ carthage
dyld: Library not loaded: @rpath/libswiftQuartzCore.dylib
  Referenced from: /Library/Frameworks/ReactiveCocoa.framework/ReactiveCocoa
  Reason: image not found
Trace/BPT trap: 5

I tried to reinstall or to clean and update manually. Both variants didn't work for me.

Upvotes: 1

Views: 987

Answers (1)

skyylex
skyylex

Reputation: 815

Problem was solved by remove /Library/Frameworks/ReactiveCocoa.framework which was placed manually sometimes ago.

@rpath contains multiple locations and after finding that ReactiveCocoa is at /Library/Frameworks/ linker stops there. After removal it finds another location of ReactiveCocoa which also contains required dependencies.

Upvotes: 1

Related Questions