I'm not sure it needs much more explanation than what the subject says. Here's an example:
~ CC ${LINK_FLAGS} ${LIST_OF_OBJECTS} -Wl,-Bstatic -lboost_regex -Wl,-Bdynamic -shared -o libblah.so
~ gnm -Aa --defined-only libblah.so | ggrep boost | ggrep regex | ghead -n1
libblah.so:000d8744 t _GLOBAL__sub_D__ZN5boost11regex_errorC2ERKSsNS_15regex_constants10error_typeEi
I don't want my library to be able to satisfy boost's dependencies.
-Brian