Let's do this the easy way - using ldd.
Run this (assuming the right path on Ubuntu):
Code:
ldd /usr/bin/btool | grep boost
The output should look similar to:
Code:
libboost_serialization.so.2 => /usr/lib/libboost_serialization.so.2 (0x00269000)
It'll probably differ on Ubuntu slightly, but the idea here is that we're looking for the classic "is it plugged in and turned on?" aspect; is your btool binary dynamically linked to the boost serialization lib(s).