You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SEARCHED_LIB is a subtype of LIB that is mostly used internally (as far as I can see). searched-lib foo ; is equivalent to lib foo : : <name>foo ;. I feel like it would be better to actually replace all uses of searched-lib with lib than to publicize searched-lib.
Is lib foo : : foo ; the same as lib foo ; or is there a difference?
Actually, yes, it is. I missed that, because it is handled in a different place. So, lib foo ; is equivalent to lib foo : : <name>foo ;, which is equivalent to searched-lib foo : : <name>foo ;, which is equivalent to searched-lib foo ;.
Brief problem description
I wasn't able to find documentation for
searched-lib
which is used in Boost Jamfiles.This seems to be a long standing issue, see e.g. https://lists.boost.org/boost-build/2007/03/16287.php
What exactly is this
searched-lib
and how exactly is it supposed to be used?Can this be added to the documentation please?
The text was updated successfully, but these errors were encountered: