2015-05-06 04:02:52 +08:00
|
|
|
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
|
2016-02-05 15:00:13 +08:00
|
|
|
|
2017-11-30 03:31:48 +08:00
|
|
|
# Add cmake directory to search for custom cmake functions.
|
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
|
|
|
|
|
2017-11-30 03:31:43 +08:00
|
|
|
# llvm/runtimes/ will set OPENMP_STANDALONE_BUILD.
|
|
|
|
if (OPENMP_STANDALONE_BUILD OR "${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
|
|
set(OPENMP_STANDALONE_BUILD TRUE)
|
|
|
|
project(openmp C CXX)
|
|
|
|
|
|
|
|
# CMAKE_BUILD_TYPE was not set, default to Release.
|
|
|
|
if (NOT CMAKE_BUILD_TYPE)
|
|
|
|
set(CMAKE_BUILD_TYPE Release)
|
|
|
|
endif()
|
|
|
|
|
2017-11-30 03:31:48 +08:00
|
|
|
# Group common settings.
|
|
|
|
set(OPENMP_ENABLE_WERROR FALSE CACHE BOOL
|
|
|
|
"Enable -Werror flags to turn warnings into errors for supporting compilers.")
|
|
|
|
set(OPENMP_LIBDIR_SUFFIX "" CACHE STRING
|
|
|
|
"suffix of lib installation directory, e.g. 64 => lib64")
|
|
|
|
|
2017-11-30 03:31:43 +08:00
|
|
|
set(OPENMP_LLVM_TOOLS_DIR "" CACHE PATH "Path to LLVM tools for testing.")
|
2017-11-30 03:31:48 +08:00
|
|
|
else()
|
|
|
|
set(OPENMP_ENABLE_WERROR ${LLVM_ENABLE_WERROR})
|
|
|
|
# If building in tree, we honor the same install suffix LLVM uses.
|
|
|
|
set(OPENMP_LIBDIR_SUFFIX ${LLVM_LIBDIR_SUFFIX})
|
2017-11-30 03:31:43 +08:00
|
|
|
endif()
|
2016-02-05 15:00:13 +08:00
|
|
|
|
2017-11-30 03:31:48 +08:00
|
|
|
# Check and set up common compiler flags.
|
|
|
|
include(config-ix)
|
|
|
|
include(HandleOpenMPOptions)
|
|
|
|
|
|
|
|
|
|
|
|
# Build host runtime library.
|
2016-12-21 17:04:08 +08:00
|
|
|
add_subdirectory(runtime)
|
2017-02-11 01:13:28 +08:00
|
|
|
|
2017-07-26 21:55:00 +08:00
|
|
|
|
2017-11-23 01:15:18 +08:00
|
|
|
set(ENABLE_LIBOMPTARGET ON)
|
2017-03-22 02:19:09 +08:00
|
|
|
# Currently libomptarget cannot be compiled on Windows or MacOS X.
|
|
|
|
# Since the device plugins are only supported on Linux anyway,
|
|
|
|
# there is no point in trying to compile libomptarget on other OSes.
|
2017-11-30 03:31:48 +08:00
|
|
|
if (APPLE OR WIN32 OR NOT OPENMP_HAVE_STD_CPP11_FLAG)
|
2017-07-26 21:55:00 +08:00
|
|
|
set(ENABLE_LIBOMPTARGET OFF)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
option(OPENMP_ENABLE_LIBOMPTARGET "Enable building libomptarget for offloading."
|
|
|
|
${ENABLE_LIBOMPTARGET})
|
|
|
|
if (OPENMP_ENABLE_LIBOMPTARGET)
|
2017-11-30 03:31:48 +08:00
|
|
|
# Check that the library can acutally be built.
|
|
|
|
if (APPLE OR WIN32)
|
|
|
|
message(FATAL_ERROR "libomptarget cannot be built on Windows and MacOS X!")
|
|
|
|
elseif (NOT OPENMP_HAVE_STD_CPP11_FLAG)
|
|
|
|
message(FATAL_ERROR "Host compiler must support C++11 to build libomptarget!")
|
|
|
|
endif()
|
|
|
|
|
2017-02-11 01:13:28 +08:00
|
|
|
add_subdirectory(libomptarget)
|
|
|
|
endif()
|