> * tbb - there is a checkbox in cmake for this to use but no way to > specify a library path, so I have to do this for every project of my > the VS 2008 solution. What is tbb used for right now? There are no headers > included...
The problem with the bundled TBB headers and Windows only occurs with Visual C++ 64-bit. The used TBB headers use some inline assembly, which works fine with VC++ 32-bit or with the Intel compiler (both 32 and 64-bit.) Because VC+ 64-bit does not allow inline assembly some of the functions are implemented externally, therefore it becomes necessary to link against the TBB library. I think an easy fix when using VC++ 64-bit would be simply to hide from the GUI the USE_TBB option and set it to 0 from the main CMakeLists.txt. Best, Edgar _______________________________________________ Oiio-dev mailing list [email protected] http://lists.openimageio.org/listinfo.cgi/oiio-dev-openimageio.org
