Teja Nandamuri
Teja Nandamuri

Reputation: 11201

framework not found Xcode 7.1

I opened my old project in Xcode 7.1 and I encountered an error.

ld: framework not found LibXL
clang: error: linker command failed with exit code 1 (use -v to see invocation)

enter image description here

enter image description here

enter image description here

enter image description here

I am not sure about the run path search path, and what value it should contain!!!

Upvotes: 0

Views: 391

Answers (2)

Teja Nandamuri
Teja Nandamuri

Reputation: 11201

The framework got updated by LibXL and somehow the old framework is not recognised by the Xcode. I downloaded the framework again, and add it to the project!!! It worked now!!!

Upvotes: 0

Vojtech Vrbka
Vojtech Vrbka

Reputation: 5368

Go to Build Settings and add $(PROJECT_DIR) non-recursive to Framework Search Paths

There is no need to change Runpath Search Paths

Upvotes: 1

Related Questions