Reputation: 2344
What are the different possibilities when this error can occur? What are the things one should look out for, in order to get rid of this?
What if XYZ is an static library directly added to project?
Upvotes: 6
Views: 10271
Reputation: 1525
It means you are trying to link to a library which is not found by the system. In your case that appears to be a simple static library. You should check the following:
libXYZ.a
file is listed there.Upvotes: 12