How can I check if the OpenCV libraries installed on my Linux machine are compiled against TBB libraries or not?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Print the shared library dependencies of *libopencv_core* using ldd:
And you should see TBB on the list.
If you were on Mac OS X the equivalent is otool -L, and on my system it outputs:
So according to the output above, my OpenCV installation was built to support TBB. ;D