You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

279 lines
13 KiB

  1. # FindTBB.cmake can be found at https://code.google.com/p/findtbb/
  2. # Written by Hannes Hofmann <hannes.hofmann _at_ informatik.uni-erlangen.de>
  3. # Improvements by Gino van den Bergen <gino _at_ dtecta.com>,
  4. # Florian Uhlig <F.Uhlig _at_ gsi.de>,
  5. # Jiri Marsik <jiri.marsik89 _at_ gmail.com>
  6. # The MIT License
  7. #
  8. # Copyright (c) 2011 Hannes Hofmann
  9. #
  10. # Permission is hereby granted, free of charge, to any person obtaining a copy
  11. # of this software and associated documentation files (the "Software"), to deal
  12. # in the Software without restriction, including without limitation the rights
  13. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  14. # copies of the Software, and to permit persons to whom the Software is
  15. # furnished to do so, subject to the following conditions:
  16. #
  17. # The above copyright notice and this permission notice shall be included in
  18. # all copies or substantial portions of the Software.
  19. #
  20. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  21. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  22. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  23. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  24. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  25. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  26. # THE SOFTWARE.
  27. # GvdB: This module uses the environment variable TBB_ARCH_PLATFORM which defines architecture and compiler.
  28. # e.g. "ia32/vc8" or "em64t/cc4.1.0_libc2.4_kernel2.6.16.21"
  29. # TBB_ARCH_PLATFORM is set by the build script tbbvars[.bat|.sh|.csh], which can be found
  30. # in the TBB installation directory (TBB_INSTALL_DIR).
  31. #
  32. # GvdB: Mac OS X distribution places libraries directly in lib directory.
  33. #
  34. # For backwards compatibility, you may explicitely set the CMake variables TBB_ARCHITECTURE and TBB_COMPILER.
  35. # TBB_ARCHITECTURE [ ia32 | em64t | itanium ]
  36. # which architecture to use
  37. # TBB_COMPILER e.g. vc9 or cc3.2.3_libc2.3.2_kernel2.4.21 or cc4.0.1_os10.4.9
  38. # which compiler to use (detected automatically on Windows)
  39. # This module respects
  40. # TBB_INSTALL_DIR or $ENV{TBB21_INSTALL_DIR} or $ENV{TBB_INSTALL_DIR}
  41. # This module defines
  42. # TBB_INCLUDE_DIRS, where to find task_scheduler_init.h, etc.
  43. # TBB_LIBRARY_DIRS, where to find libtbb, libtbbmalloc
  44. # TBB_DEBUG_LIBRARY_DIRS, where to find libtbb_debug, libtbbmalloc_debug
  45. # TBB_INSTALL_DIR, the base TBB install directory
  46. # TBB_LIBRARIES, the libraries to link against to use TBB.
  47. # TBB_DEBUG_LIBRARIES, the libraries to link against to use TBB with debug symbols.
  48. # TBB_FOUND, If false, don't try to use TBB.
  49. # TBB_INTERFACE_VERSION, as defined in tbb/tbb_stddef.h
  50. if (WIN32)
  51. # has em64t/vc8 em64t/vc9
  52. # has ia32/vc7.1 ia32/vc8 ia32/vc9
  53. set(_TBB_DEFAULT_INSTALL_DIR "C:/Program Files/Intel/TBB" "C:/Program Files (x86)/Intel/TBB" "C:/Program Files (x86)/Intel/Composer XE 2013/tbb")
  54. set(_TBB_LIB_NAME "tbb")
  55. set(_TBB_LIB_MALLOC_NAME "${_TBB_LIB_NAME}malloc")
  56. set(_TBB_LIB_DEBUG_NAME "${_TBB_LIB_NAME}_debug")
  57. set(_TBB_LIB_MALLOC_DEBUG_NAME "${_TBB_LIB_MALLOC_NAME}_debug")
  58. if (MSVC71)
  59. set (_TBB_COMPILER "vc7.1")
  60. endif(MSVC71)
  61. if (MSVC80)
  62. set(_TBB_COMPILER "vc8")
  63. endif(MSVC80)
  64. if (MSVC90)
  65. set(_TBB_COMPILER "vc9")
  66. endif(MSVC90)
  67. if(MSVC10)
  68. set(_TBB_COMPILER "vc10")
  69. endif(MSVC10)
  70. if(MSVC11)
  71. set(_TBB_COMPILER "vc11")
  72. endif(MSVC11)
  73. # Todo: add other Windows compilers such as ICL.
  74. set(_TBB_ARCHITECTURE ${TBB_ARCHITECTURE})
  75. endif (WIN32)
  76. if (UNIX)
  77. if (APPLE)
  78. # MAC
  79. set(_TBB_DEFAULT_INSTALL_DIR "/Library/Frameworks/Intel_TBB.framework/Versions")
  80. # libs: libtbb.dylib, libtbbmalloc.dylib, *_debug
  81. set(_TBB_LIB_NAME "tbb")
  82. set(_TBB_LIB_MALLOC_NAME "${_TBB_LIB_NAME}malloc")
  83. set(_TBB_LIB_DEBUG_NAME "${_TBB_LIB_NAME}_debug")
  84. set(_TBB_LIB_MALLOC_DEBUG_NAME "${_TBB_LIB_MALLOC_NAME}_debug")
  85. # default flavor on apple: ia32/cc4.0.1_os10.4.9
  86. # Jiri: There is no reason to presume there is only one flavor and
  87. # that user's setting of variables should be ignored.
  88. if(NOT TBB_COMPILER)
  89. set(_TBB_COMPILER "cc4.0.1_os10.4.9")
  90. elseif (NOT TBB_COMPILER)
  91. set(_TBB_COMPILER ${TBB_COMPILER})
  92. endif(NOT TBB_COMPILER)
  93. if(NOT TBB_ARCHITECTURE)
  94. set(_TBB_ARCHITECTURE "ia32")
  95. elseif(NOT TBB_ARCHITECTURE)
  96. set(_TBB_ARCHITECTURE ${TBB_ARCHITECTURE})
  97. endif(NOT TBB_ARCHITECTURE)
  98. else (APPLE)
  99. # LINUX
  100. set(_TBB_DEFAULT_INSTALL_DIR "/opt/intel/tbb" "/usr/local/include" "/usr/include")
  101. set(_TBB_LIB_NAME "tbb")
  102. set(_TBB_LIB_MALLOC_NAME "${_TBB_LIB_NAME}malloc")
  103. set(_TBB_LIB_DEBUG_NAME "${_TBB_LIB_NAME}_debug")
  104. set(_TBB_LIB_MALLOC_DEBUG_NAME "${_TBB_LIB_MALLOC_NAME}_debug")
  105. # has em64t/cc3.2.3_libc2.3.2_kernel2.4.21 em64t/cc3.3.3_libc2.3.3_kernel2.6.5 em64t/cc3.4.3_libc2.3.4_kernel2.6.9 em64t/cc4.1.0_libc2.4_kernel2.6.16.21
  106. # has ia32/*
  107. # has itanium/*
  108. set(_TBB_COMPILER ${TBB_COMPILER})
  109. set(_TBB_ARCHITECTURE ${TBB_ARCHITECTURE})
  110. endif (APPLE)
  111. endif (UNIX)
  112. if (CMAKE_SYSTEM MATCHES "SunOS.*")
  113. # SUN
  114. # not yet supported
  115. # has em64t/cc3.4.3_kernel5.10
  116. # has ia32/*
  117. endif (CMAKE_SYSTEM MATCHES "SunOS.*")
  118. #-- Clear the public variables
  119. set (TBB_FOUND "NO")
  120. #-- Find TBB install dir and set ${_TBB_INSTALL_DIR} and cached ${TBB_INSTALL_DIR}
  121. # first: use CMake variable TBB_INSTALL_DIR
  122. if (TBB_INSTALL_DIR)
  123. set (_TBB_INSTALL_DIR ${TBB_INSTALL_DIR})
  124. endif (TBB_INSTALL_DIR)
  125. # second: use environment variable
  126. if (NOT _TBB_INSTALL_DIR)
  127. if (NOT "$ENV{TBB_INSTALL_DIR}" STREQUAL "")
  128. set (_TBB_INSTALL_DIR $ENV{TBB_INSTALL_DIR})
  129. endif (NOT "$ENV{TBB_INSTALL_DIR}" STREQUAL "")
  130. # Intel recommends setting TBB21_INSTALL_DIR
  131. if (NOT "$ENV{TBB21_INSTALL_DIR}" STREQUAL "")
  132. set (_TBB_INSTALL_DIR $ENV{TBB21_INSTALL_DIR})
  133. endif (NOT "$ENV{TBB21_INSTALL_DIR}" STREQUAL "")
  134. if (NOT "$ENV{TBB22_INSTALL_DIR}" STREQUAL "")
  135. set (_TBB_INSTALL_DIR $ENV{TBB22_INSTALL_DIR})
  136. endif (NOT "$ENV{TBB22_INSTALL_DIR}" STREQUAL "")
  137. if (NOT "$ENV{TBB30_INSTALL_DIR}" STREQUAL "")
  138. set (_TBB_INSTALL_DIR $ENV{TBB30_INSTALL_DIR})
  139. endif (NOT "$ENV{TBB30_INSTALL_DIR}" STREQUAL "")
  140. endif (NOT _TBB_INSTALL_DIR)
  141. # third: try to find path automatically
  142. if (NOT _TBB_INSTALL_DIR)
  143. if (_TBB_DEFAULT_INSTALL_DIR)
  144. set (_TBB_INSTALL_DIR ${_TBB_DEFAULT_INSTALL_DIR})
  145. endif (_TBB_DEFAULT_INSTALL_DIR)
  146. endif (NOT _TBB_INSTALL_DIR)
  147. # sanity check
  148. if (NOT _TBB_INSTALL_DIR)
  149. message ("ERROR: Unable to find Intel TBB install directory. ${_TBB_INSTALL_DIR}")
  150. else (NOT _TBB_INSTALL_DIR)
  151. # finally: set the cached CMake variable TBB_INSTALL_DIR
  152. if (NOT TBB_INSTALL_DIR)
  153. mark_as_advanced(TBB_INSTALL_DIR)
  154. endif (NOT TBB_INSTALL_DIR)
  155. #-- A macro to rewrite the paths of the library. This is necessary, because
  156. # find_library() always found the em64t/vc9 version of the TBB libs
  157. macro(TBB_CORRECT_LIB_DIR var_name)
  158. # if (NOT "${_TBB_ARCHITECTURE}" STREQUAL "em64t")
  159. string(REPLACE em64t "${_TBB_ARCHITECTURE}" ${var_name} ${${var_name}})
  160. # endif (NOT "${_TBB_ARCHITECTURE}" STREQUAL "em64t")
  161. string(REPLACE ia32 "${_TBB_ARCHITECTURE}" ${var_name} ${${var_name}})
  162. string(REPLACE vc7.1 "${_TBB_COMPILER}" ${var_name} ${${var_name}})
  163. string(REPLACE vc8 "${_TBB_COMPILER}" ${var_name} ${${var_name}})
  164. string(REPLACE vc9 "${_TBB_COMPILER}" ${var_name} ${${var_name}})
  165. string(REPLACE vc10 "${_TBB_COMPILER}" ${var_name} ${${var_name}})
  166. string(REPLACE vc11 "${_TBB_COMPILER}" ${var_name} ${${var_name}})
  167. endmacro(TBB_CORRECT_LIB_DIR var_content)
  168. #-- Look for include directory and set ${TBB_INCLUDE_DIR}
  169. set (TBB_INC_SEARCH_DIR ${_TBB_INSTALL_DIR}/include)
  170. # Jiri: tbbvars now sets the CPATH environment variable to the directory
  171. # containing the headers.
  172. find_path(TBB_INCLUDE_DIR tbb/tbb_stddef.h PATHS "${TBB_INC_SEARCH_DIR}" ENV CPATH)
  173. mark_as_advanced(TBB_INCLUDE_DIR)
  174. #-- Look for libraries
  175. # GvdB: $ENV{TBB_ARCH_PLATFORM} is set by the build script tbbvars[.bat|.sh|.csh]
  176. if (NOT $ENV{TBB_ARCH_PLATFORM} STREQUAL "")
  177. set (_TBB_LIBRARY_DIR
  178. ${_TBB_INSTALL_DIR}/lib/$ENV{TBB_ARCH_PLATFORM}
  179. ${_TBB_INSTALL_DIR}/$ENV{TBB_ARCH_PLATFORM}/lib
  180. )
  181. endif (NOT $ENV{TBB_ARCH_PLATFORM} STREQUAL "")
  182. # Jiri: This block isn't mutually exclusive with the previous one
  183. # (hence no else), instead I test if the user really specified
  184. # the variables in question.
  185. if ((NOT ${TBB_ARCHITECTURE} STREQUAL "") AND (NOT ${TBB_COMPILER} STREQUAL ""))
  186. # HH: deprecated
  187. message(STATUS "[Warning] FindTBB.cmake: The use of TBB_ARCHITECTURE and TBB_COMPILER is deprecated and may not be supported in future versions. Please set \$ENV{TBB_ARCH_PLATFORM} (using tbbvars.[bat|csh|sh]).")
  188. # Jiri: It doesn't hurt to look in more places, so I store the hints from
  189. # ENV{TBB_ARCH_PLATFORM} and the TBB_ARCHITECTURE and TBB_COMPILER
  190. # variables and search them both.
  191. set (_TBB_LIBRARY_DIR "${_TBB_INSTALL_DIR}/${_TBB_ARCHITECTURE}/${_TBB_COMPILER}/lib" ${_TBB_LIBRARY_DIR})
  192. endif ((NOT ${TBB_ARCHITECTURE} STREQUAL "") AND (NOT ${TBB_COMPILER} STREQUAL ""))
  193. # GvdB: Mac OS X distribution places libraries directly in lib directory.
  194. list(APPEND _TBB_LIBRARY_DIR ${_TBB_INSTALL_DIR}/lib)
  195. # Jiri: No reason not to check the default paths. From recent versions,
  196. # tbbvars has started exporting the LIBRARY_PATH and LD_LIBRARY_PATH
  197. # variables, which now point to the directories of the lib files.
  198. # It all makes more sense to use the ${_TBB_LIBRARY_DIR} as a HINTS
  199. # argument instead of the implicit PATHS as it isn't hard-coded
  200. # but computed by system introspection. Searching the LIBRARY_PATH
  201. # and LD_LIBRARY_PATH environment variables is now even more important
  202. # that tbbvars doesn't export TBB_ARCH_PLATFORM and it facilitates
  203. # the use of TBB built from sources.
  204. find_library(TBB_LIBRARY ${_TBB_LIB_NAME} HINTS ${_TBB_LIBRARY_DIR}
  205. PATHS ENV LIBRARY_PATH ENV LD_LIBRARY_PATH)
  206. find_library(TBB_MALLOC_LIBRARY ${_TBB_LIB_MALLOC_NAME} HINTS ${_TBB_LIBRARY_DIR}
  207. PATHS ENV LIBRARY_PATH ENV LD_LIBRARY_PATH)
  208. #Extract path from TBB_LIBRARY name
  209. get_filename_component(TBB_LIBRARY_DIR ${TBB_LIBRARY} PATH)
  210. #TBB_CORRECT_LIB_DIR(TBB_LIBRARY)
  211. #TBB_CORRECT_LIB_DIR(TBB_MALLOC_LIBRARY)
  212. mark_as_advanced(TBB_LIBRARY TBB_MALLOC_LIBRARY)
  213. #-- Look for debug libraries
  214. # Jiri: Changed the same way as for the release libraries.
  215. find_library(TBB_LIBRARY_DEBUG ${_TBB_LIB_DEBUG_NAME} HINTS ${_TBB_LIBRARY_DIR}
  216. PATHS ENV LIBRARY_PATH ENV LD_LIBRARY_PATH)
  217. find_library(TBB_MALLOC_LIBRARY_DEBUG ${_TBB_LIB_MALLOC_DEBUG_NAME} HINTS ${_TBB_LIBRARY_DIR}
  218. PATHS ENV LIBRARY_PATH ENV LD_LIBRARY_PATH)
  219. # Jiri: Self-built TBB stores the debug libraries in a separate directory.
  220. # Extract path from TBB_LIBRARY_DEBUG name
  221. get_filename_component(TBB_LIBRARY_DEBUG_DIR ${TBB_LIBRARY_DEBUG} PATH)
  222. #TBB_CORRECT_LIB_DIR(TBB_LIBRARY_DEBUG)
  223. #TBB_CORRECT_LIB_DIR(TBB_MALLOC_LIBRARY_DEBUG)
  224. mark_as_advanced(TBB_LIBRARY_DEBUG TBB_MALLOC_LIBRARY_DEBUG)
  225. if (TBB_INCLUDE_DIR)
  226. if (TBB_LIBRARY)
  227. set (TBB_FOUND "YES")
  228. set (TBB_LIBRARIES ${TBB_LIBRARY} ${TBB_MALLOC_LIBRARY} ${TBB_LIBRARIES})
  229. set (TBB_DEBUG_LIBRARIES ${TBB_LIBRARY_DEBUG} ${TBB_MALLOC_LIBRARY_DEBUG} ${TBB_DEBUG_LIBRARIES})
  230. set (TBB_INCLUDE_DIRS ${TBB_INCLUDE_DIR} CACHE PATH "TBB include directory" FORCE)
  231. set (TBB_LIBRARY_DIRS ${TBB_LIBRARY_DIR} CACHE PATH "TBB library directory" FORCE)
  232. # Jiri: Self-built TBB stores the debug libraries in a separate directory.
  233. set (TBB_DEBUG_LIBRARY_DIRS ${TBB_LIBRARY_DEBUG_DIR} CACHE PATH "TBB debug library directory" FORCE)
  234. mark_as_advanced(TBB_INCLUDE_DIRS TBB_LIBRARY_DIRS TBB_DEBUG_LIBRARY_DIRS TBB_LIBRARIES TBB_DEBUG_LIBRARIES)
  235. message(STATUS "Found Intel TBB")
  236. endif (TBB_LIBRARY)
  237. endif (TBB_INCLUDE_DIR)
  238. if (NOT TBB_FOUND)
  239. message("ERROR: Intel TBB NOT found!")
  240. message(STATUS "Looked for Threading Building Blocks in ${_TBB_INSTALL_DIR}")
  241. # do only throw fatal, if this pkg is REQUIRED
  242. if (TBB_FIND_REQUIRED)
  243. message(FATAL_ERROR "Could NOT find TBB library.")
  244. endif (TBB_FIND_REQUIRED)
  245. endif (NOT TBB_FOUND)
  246. endif (NOT _TBB_INSTALL_DIR)
  247. if (TBB_FOUND)
  248. set(TBB_INTERFACE_VERSION 0)
  249. FILE(READ "${TBB_INCLUDE_DIRS}/tbb/tbb_stddef.h" _TBB_VERSION_CONTENTS)
  250. STRING(REGEX REPLACE ".*#define TBB_INTERFACE_VERSION ([0-9]+).*" "\\1" TBB_INTERFACE_VERSION "${_TBB_VERSION_CONTENTS}")
  251. set(TBB_INTERFACE_VERSION "${TBB_INTERFACE_VERSION}")
  252. endif (TBB_FOUND)