Thanks a lot Clement. That debug tips helped.
I found that OpenImageIO plugins trying to link against boost 'mt' for filesystem, regex, system, thread.
there are couple of posts online that talks about boost mt libraires
[1] [2] and if the libraries are missing, the suggested solution was soft link to non-mt named libraires.
So I tried this:
cd /usr/local/lib
sudo ln -s libboost_filesystem.so.1.55.0 libboost_filesystem-mt.so.1.53.0
sudo ln -s libboost_regex.so.1.55.0 libboost_regex-mt.so.1.53.0
sudo ln -s libboost_system.so.1.55.0 libboost_system-mt.so.1.53.0
sudo ln -s libboost_thread.so.1.55.0 libboost_thread-mt.so.1.53.0
and then linking worked and the missing plugin started showing up again.
But the hack looks ugly.
Whats the correct way to fix this issue?
Note: I saw UseTuttleBoost.cmake. and there is no mention for filesystem-mt libraries there. I checked cmakelists.txt in OpenImageIO plugin folder, and there is no mention of filesystem-mt there as well. Do you know how that dependency got added?