<div>The normal library search semantics on OS X are:</div><div><br></div><div>Normally, the linker goes through each path in the search paths one at a time to find a dynamic version of the library. If none is found, it goes through each of those paths looking for a static version of the same library.</div>
<div><br></div><a href="http://developer.apple.com/library/mac/#qa/qa1393/_index.html">http://developer.apple.com/library/mac/#qa/qa1393/_index.html</a><div><br></div><div>The option -search_paths_first causes the linker to try shared and then static in each path before trying the next path. Is there a way to make find_library search with these semantics?</div>