Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gaudi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gaudi
Gaudi
Commits
87ed06df
Commit
87ed06df
authored
12 years ago
by
Marco Clemencic
Browse files
Options
Downloads
Patches
Plain Diff
added FindTBB.cmake
parent
caff6649
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cmake/README.rst
+4
-0
4 additions, 0 deletions
cmake/README.rst
cmake/modules/FindTBB.cmake
+285
-0
285 additions, 0 deletions
cmake/modules/FindTBB.cmake
with
289 additions
and
0 deletions
cmake/README.rst
+
4
−
0
View file @
87ed06df
...
...
@@ -121,3 +121,7 @@ for example like this::
$ ./run gaudirun.py --help
$ ./run bash
Resources
-------------
* `CMake documentation <http://www.cmake.org/cmake/help/documentation.html>`_
* ``FindTBB.cmake`` was taken from https://bitbucket.org/sergiu/tbb-cmake
This diff is collapsed.
Click to expand it.
cmake/modules/FindTBB.cmake
0 → 100644
+
285
−
0
View file @
87ed06df
# Module for locating Intel's Threading Building Blocks (TBB).
#
# Customizable variables:
# TBB_ROOT_DIR
# Specifies TBB's root directory.
#
# Read-only variables:
# TBB_FOUND
# Indicates whether the library has been found.
#
# TBB_INCLUDE_DIRS
# Specifies TBB's include directory.
#
# TBB_LIBRARIES
# Specifies TBB libraries that should be passed to target_link_libararies.
#
# TBB_<COMPONENT>_LIBRARIES
# Specifies the libraries of a specific <COMPONENT>.
#
# TBB_<COMPONENT>_FOUND
# Indicates whether the specified <COMPONENT> was found.
#
#
# Copyright (c) 2012 Sergiu Dotenco
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTTBBLAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
INCLUDE
(
FindPackageHandleStandardArgs
)
IF
(
CMAKE_VERSION VERSION_GREATER 2.8.7
)
SET
(
_TBB_CHECK_COMPONENTS FALSE
)
ELSE
(
CMAKE_VERSION VERSION_GREATER 2.8.7
)
SET
(
_TBB_CHECK_COMPONENTS TRUE
)
ENDIF
(
CMAKE_VERSION VERSION_GREATER 2.8.7
)
FIND_PATH
(
TBB_ROOT_DIR
NAMES include/tbb/tbb.h
PATHS ENV TBBROOT
ENV TBB40_INSTALL_DIR
ENV TBB30_INSTALL_DIR
ENV TBB22_INSTALL_DIR
ENV TBB21_INSTALL_DIR
DOC
"TBB root directory"
)
FIND_PATH
(
TBB_INCLUDE_DIR
NAMES tbb/tbb.h
HINTS
${
TBB_ROOT_DIR
}
PATH_SUFFIXES include
DOC
"TBB include directory"
)
IF
(
MSVC11
)
SET
(
_TBB_COMPILER vc11
)
ELSEIF
(
MSVC10
)
SET
(
_TBB_COMPILER vc10
)
ELSEIF
(
MSVC90
)
SET
(
_TBB_COMPILER vc9
)
ELSEIF
(
MSVC80
)
SET
(
_TBB_COMPILER vc8
)
ELSEIF
(
WIN32
)
SET
(
_TBB_COMPILER vc_mt
)
ENDIF
(
MSVC11
)
IF
(
CMAKE_SIZEOF_VOID_P EQUAL 8
)
SET
(
_TBB_POSSIBLE_LIB_SUFFIXES lib/intel64/
${
_TBB_COMPILER
}
)
SET
(
_TBB_POSSIBLE_BIN_SUFFIXES bin/intel64/
${
_TBB_COMPILER
}
)
ELSE
(
CMAKE_SIZEOF_VOID_P EQUAL 8
)
SET
(
_TBB_POSSIBLE_LIB_SUFFIXES lib/ia32/
${
_TBB_COMPILER
}
)
SET
(
_TBB_POSSIBLE_BIN_SUFFIXES bin/ia32/
${
_TBB_COMPILER
}
)
ENDIF
(
CMAKE_SIZEOF_VOID_P EQUAL 8
)
LIST
(
APPEND _TBB_POSSIBLE_LIB_SUFFIXES lib/$ENV{TBB_ARCH_PLATFORM}
)
FIND_LIBRARY
(
TBB_LIBRARY_RELEASE
NAMES tbb
HINTS
${
TBB_ROOT_DIR
}
PATH_SUFFIXES
${
_TBB_POSSIBLE_LIB_SUFFIXES
}
DOC
"TBB release library"
)
FIND_LIBRARY
(
TBB_LIBRARY_DEBUG
NAMES tbb_debug
HINTS
${
TBB_ROOT_DIR
}
PATH_SUFFIXES
${
_TBB_POSSIBLE_LIB_SUFFIXES
}
DOC
"TBB debug library"
)
IF
(
TBB_LIBRARY_RELEASE AND TBB_LIBRARY_DEBUG
)
IF
(
NOT TBB_LIBRARY
)
SET
(
TBB_LIBRARY optimized
${
TBB_LIBRARY_RELEASE
}
debug
${
TBB_LIBRARY_DEBUG
}
CACHE DOC
"TBB library"
FORCE
)
ENDIF
(
NOT TBB_LIBRARY
)
ELSEIF
(
TBB_LIBRARY_RELEASE
)
IF
(
NOT TBB_LIBRARY
)
SET
(
TBB_LIBRARY
${
TBB_LIBRARY_RELEASE
}
CACHE DOC
"TBB library"
FORCE
)
ENDIF
(
NOT TBB_LIBRARY
)
ENDIF
(
TBB_LIBRARY_RELEASE AND TBB_LIBRARY_DEBUG
)
IF
(
TBB_LIBRARY_DEBUG
)
LIST
(
APPEND _TBB_ALL_LIBS
${
TBB_LIBRARY_DEBUG
}
)
ENDIF
(
TBB_LIBRARY_DEBUG
)
IF
(
TBB_LIBRARY_RELEASE
)
LIST
(
APPEND _TBB_ALL_LIBS
${
TBB_LIBRARY_RELEASE
}
)
ENDIF
(
TBB_LIBRARY_RELEASE
)
FOREACH
(
_TBB_COMPONENT
${
TBB_FIND_COMPONENTS
}
)
STRING
(
TOUPPER
${
_TBB_COMPONENT
}
_TBB_COMPONENT_UPPER
)
SET
(
_TBB_LIBRARY_BASE TBB_
${
_TBB_COMPONENT_UPPER
}
_LIBRARY
)
IF
(
${
_TBB_COMPONENT
}
STREQUAL preview
)
SET
(
_TBB_LIBRARY_NAME tbb_
${
_TBB_COMPONENT
}
)
ELSE
(
${
_TBB_COMPONENT
}
STREQUAL preview
)
SET
(
_TBB_LIBRARY_NAME tbb
${
_TBB_COMPONENT
}
)
ENDIF
(
${
_TBB_COMPONENT
}
STREQUAL preview
)
FIND_LIBRARY
(
${
_TBB_LIBRARY_BASE
}
_RELEASE
NAMES
${
_TBB_LIBRARY_NAME
}
HINTS
${
TBB_ROOT_DIR
}
PATH_SUFFIXES
${
_TBB_POSSIBLE_LIB_SUFFIXES
}
DOC
"TBB
${
_TBB_COMPONENT
}
release library"
)
FIND_LIBRARY
(
${
_TBB_LIBRARY_BASE
}
_DEBUG
NAMES
${
_TBB_LIBRARY_NAME
}
_debug
HINTS
${
TBB_ROOT_DIR
}
PATH_SUFFIXES
${
_TBB_POSSIBLE_LIB_SUFFIXES
}
DOC
"TBB
${
_TBB_COMPONENT
}
debug library"
)
MARK_AS_ADVANCED
(
${
_TBB_LIBRARY_BASE
}
${
_TBB_LIBRARY_BASE
}
_DEBUG
)
SET
(
TBB_
${
_TBB_COMPONENT_UPPER
}
_FOUND TRUE
)
IF
(
${
_TBB_LIBRARY_BASE
}
_DEBUG AND
${
_TBB_LIBRARY_BASE
}
_RELEASE
)
SET
(
${
_TBB_LIBRARY_BASE
}
debug
${${
_TBB_LIBRARY_BASE
}
_DEBUG
}
optimized
${${
_TBB_LIBRARY_BASE
}
_RELEASE
}
CACHE DOC
"TBB
${
_TBB_COMPONENT
}
library"
)
ELSEIF
(
${
_TBB_LIBRARY_BASE
}
_DEBUG
)
SET
(
${
_TBB_LIBRARY_BASE
}
${${
_TBB_LIBRARY_BASE
}
_DEBUG
}
)
ELSEIF
(
${
_TBB_LIBRARY_BASE
}
_RELEASE
)
SET
(
${
_TBB_LIBRARY_BASE
}
${${
_TBB_LIBRARY_BASE
}
_RELEASE
}
CACHE DOC
"TBB
${
_TBB_COMPONENT
}
library"
)
ELSE
(
${
_TBB_LIBRARY_BASE
}
_DEBUG AND
${
_TBB_LIBRARY_BASE
}
_RELEASE
)
# Component missing: record it for a later report
LIST
(
APPEND _TBB_MISSING_COMPONENTS
${
_TBB_COMPONENT
}
)
SET
(
TBB_
${
_TBB_COMPONENT_UPPER
}
_FOUND FALSE
)
ENDIF
(
${
_TBB_LIBRARY_BASE
}
_DEBUG AND
${
_TBB_LIBRARY_BASE
}
_RELEASE
)
IF
(
${
_TBB_LIBRARY_BASE
}
_DEBUG
)
LIST
(
APPEND _TBB_ALL_LIBS
${${
_TBB_LIBRARY_BASE
}
_DEBUG
}
)
ENDIF
(
${
_TBB_LIBRARY_BASE
}
_DEBUG
)
IF
(
${
_TBB_LIBRARY_BASE
}
_RELEASE
)
LIST
(
APPEND _TBB_ALL_LIBS
${${
_TBB_LIBRARY_BASE
}
_RELEASE
}
)
ENDIF
(
${
_TBB_LIBRARY_BASE
}
_RELEASE
)
SET
(
TBB_
${
_TBB_COMPONENT
}
_FOUND
${
TBB_
${
_TBB_COMPONENT_UPPER
}
_FOUND
}
)
IF
(
${
_TBB_LIBRARY_BASE
}
)
# setup the TBB_<COMPONENT>_LIBRARIES variable
SET
(
TBB_
${
_TBB_COMPONENT_UPPER
}
_LIBRARIES
${${
_TBB_LIBRARY_BASE
}}
)
LIST
(
APPEND TBB_LIBRARIES
${${
_TBB_LIBRARY_BASE
}}
)
ELSE
(
${
_TBB_LIBRARY_BASE
}
)
LIST
(
APPEND _TBB_MISSING_LIBRARIES
${
_TBB_LIBRARY_BASE
}
)
ENDIF
(
${
_TBB_LIBRARY_BASE
}
)
ENDFOREACH
(
_TBB_COMPONENT
${
TBB_FIND_COMPONENTS
}
)
LIST
(
APPEND TBB_LIBRARIES
${
TBB_LIBRARY
}
)
SET
(
TBB_INCLUDE_DIRS
${
TBB_INCLUDE_DIR
}
)
IF
(
DEFINED _TBB_MISSING_COMPONENTS AND _TBB_CHECK_COMPONENTS
)
IF
(
NOT TBB_FIND_QUIETLY
)
MESSAGE
(
STATUS
"One or more TBB components were not found:"
)
# Display missing components indented, each on a separate line
FOREACH
(
_TBB_MISSING_COMPONENT
${
_TBB_MISSING_COMPONENTS
}
)
MESSAGE
(
STATUS
" "
${
_TBB_MISSING_COMPONENT
}
)
ENDFOREACH
(
_TBB_MISSING_COMPONENT
${
_TBB_MISSING_COMPONENTS
}
)
ENDIF
(
NOT TBB_FIND_QUIETLY
)
ENDIF
(
DEFINED _TBB_MISSING_COMPONENTS AND _TBB_CHECK_COMPONENTS
)
# Determine library's version
SET
(
_TBB_VERSION_HEADER
${
TBB_INCLUDE_DIR
}
/tbb/tbb_stddef.h
)
IF
(
EXISTS
${
_TBB_VERSION_HEADER
}
)
FILE
(
READ
${
_TBB_VERSION_HEADER
}
_TBB_VERSION_CONTENTS
)
STRING
(
REGEX REPLACE
".*#define TBB_VERSION_MAJOR[
\t
]+([0-9]+).*"
"
\\
1"
TBB_VERSION_MAJOR
"
${
_TBB_VERSION_CONTENTS
}
"
)
STRING
(
REGEX REPLACE
".*#define TBB_VERSION_MINOR[
\t
]+([0-9]+).*"
"
\\
1"
TBB_VERSION_MINOR
"
${
_TBB_VERSION_CONTENTS
}
"
)
SET
(
TBB_VERSION
${
TBB_VERSION_MAJOR
}
.
${
TBB_VERSION_MINOR
}
)
SET
(
TBB_VERSION_COMPONENTS 2
)
ENDIF
(
EXISTS
${
_TBB_VERSION_HEADER
}
)
IF
(
WIN32
)
FIND_PROGRAM
(
LIB_EXECUTABLE NAMES lib
HINTS
"$ENV{VS110COMNTOOLS}/../../VC/bin"
"$ENV{VS100COMNTOOLS}/../../VC/bin"
"$ENV{VS90COMNTOOLS}/../../VC/bin"
"$ENV{VS71COMNTOOLS}/../../VC/bin"
"$ENV{VS80COMNTOOLS}/../../VC/bin"
DOC
"Library manager"
)
MARK_AS_ADVANCED
(
LIB_EXECUTABLE
)
ENDIF
(
WIN32
)
MACRO
(
GET_LIB_REQUISITES LIB REQUISITES
)
IF
(
LIB_EXECUTABLE
)
GET_FILENAME_COMPONENT
(
_LIB_PATH
${
LIB_EXECUTABLE
}
PATH
)
IF
(
MSVC
)
# Do not redirect the output
UNSET
(
ENV{VS_UNICODE_OUTPUT}
)
ENDIF
(
MSVC
)
EXECUTE_PROCESS
(
COMMAND
${
LIB_EXECUTABLE
}
/nologo /list
${
LIB
}
WORKING_DIRECTORY
${
_LIB_PATH
}
/../../Common7/IDE
OUTPUT_VARIABLE _LIB_OUTPUT ERROR_QUIET
)
STRING
(
REPLACE
"
\n
"
";"
"
${
REQUISITES
}
"
"
${
_LIB_OUTPUT
}
"
)
LIST
(
REMOVE_DUPLICATES
${
REQUISITES
}
)
ENDIF
(
LIB_EXECUTABLE
)
ENDMACRO
(
GET_LIB_REQUISITES
)
IF
(
_TBB_ALL_LIBS
)
# collect lib requisites using the lib tool
FOREACH
(
_TBB_COMPONENT
${
_TBB_ALL_LIBS
}
)
GET_LIB_REQUISITES
(
${
_TBB_COMPONENT
}
_TBB_REQUISITES
)
ENDFOREACH
(
_TBB_COMPONENT
)
ENDIF
(
_TBB_ALL_LIBS
)
IF
(
NOT TBB_BINARY_DIR
)
SET
(
_TBB_UPDATE_BINARY_DIR TRUE
)
ELSE
(
NOT TBB_BINARY_DIR
)
SET
(
_TBB_UPDATE_BINARY_DIR FALSE
)
ENDIF
(
NOT TBB_BINARY_DIR
)
SET
(
_TBB_BINARY_DIR_HINTS
${
_TBB_POSSIBLE_BIN_SUFFIXES
}
)
IF
(
_TBB_REQUISITES
)
FIND_FILE
(
TBB_BINARY_DIR NAMES
${
_TBB_REQUISITES
}
HINTS
${
TBB_ROOT_DIR
}
PATH_SUFFIXES
${
_TBB_BINARY_DIR_HINTS
}
NO_DEFAULT_PATH
)
ENDIF
(
_TBB_REQUISITES
)
IF
(
TBB_BINARY_DIR AND _TBB_UPDATE_BINARY_DIR
)
SET
(
_TBB_BINARY_DIR
${
TBB_BINARY_DIR
}
)
UNSET
(
TBB_BINARY_DIR CACHE
)
IF
(
_TBB_BINARY_DIR
)
GET_FILENAME_COMPONENT
(
TBB_BINARY_DIR
${
_TBB_BINARY_DIR
}
PATH
)
ENDIF
(
_TBB_BINARY_DIR
)
ENDIF
(
TBB_BINARY_DIR AND _TBB_UPDATE_BINARY_DIR
)
SET
(
TBB_BINARY_DIR
${
TBB_BINARY_DIR
}
CACHE PATH
"TBB binary directory"
)
MARK_AS_ADVANCED
(
TBB_INCLUDE_DIR TBB_LIBRARY TBB_LIBRARY_RELEASE
TBB_LIBRARY_DEBUG TBB_BINARY_DIR
)
IF
(
NOT _TBB_CHECK_COMPONENTS
)
SET
(
_TBB_FPHSA_ADDITIONAL_ARGS HANDLE_COMPONENTS
)
ENDIF
(
NOT _TBB_CHECK_COMPONENTS
)
IF
(
CMAKE_VERSION VERSION_GREATER 2.8.2
)
LIST
(
APPEND _TBB_FPHSA_ADDITIONAL_ARGS VERSION_VAR TBB_VERSION
)
ENDIF
(
CMAKE_VERSION VERSION_GREATER 2.8.2
)
FIND_PACKAGE_HANDLE_STANDARD_ARGS
(
TBB REQUIRED_VARS TBB_ROOT_DIR
TBB_INCLUDE_DIR TBB_LIBRARY
${
_TBB_MISSING_LIBRARIES
}
${
_TBB_FPHSA_ADDITIONAL_ARGS
}
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment