[pstl] Add a __pstl_config_site header to record the CMake configuration

This commit adds a __pstl_config_site header that contains the value of
macros specified at CMake configuration time. It works similarly to
libc++'s __config_site header, except we always include it as a separate
file instead of concatenating it to the main configuration header.

It is necessary to thread the includes for that header into libc++'s
lit configuration, otherwise we'd be requiring an installation step
prior to running the test suite.

llvm-svn: 368284
This commit is contained in:
Louis Dionne 2019-08-08 12:43:04 +00:00
parent bdc022a695
commit bf4808439f
5 changed files with 36 additions and 7 deletions

View File

@ -33,7 +33,8 @@ config.use_libatomic = @LIBCXX_HAVE_CXX_ATOMICS_WITH_LIB@
config.debug_build = @LIBCXX_DEBUG_BUILD@ config.debug_build = @LIBCXX_DEBUG_BUILD@
config.libcxxabi_shared = @LIBCXXABI_ENABLE_SHARED@ config.libcxxabi_shared = @LIBCXXABI_ENABLE_SHARED@
config.cxx_ext_threads = @LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY@ config.cxx_ext_threads = @LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY@
config.pstl_root = "@ParallelSTL_SOURCE_DIR@" if @LIBCXX_ENABLE_PARALLEL_ALGORITHMS@ else None config.pstl_src_root = "@ParallelSTL_SOURCE_DIR@" if @LIBCXX_ENABLE_PARALLEL_ALGORITHMS@ else None
config.pstl_obj_root = "@ParallelSTL_BINARY_DIR@" if @LIBCXX_ENABLE_PARALLEL_ALGORITHMS@ else None
# Let the main config do the real work. # Let the main config do the real work.
config.loaded_site_config = True config.loaded_site_config = True

View File

@ -582,10 +582,12 @@ class Configuration(object):
self.cxx.compile_flags += ['-I' + support_path] self.cxx.compile_flags += ['-I' + support_path]
# Add includes for the PSTL headers # Add includes for the PSTL headers
pstl_root = self.get_lit_conf('pstl_root') pstl_src_root = self.get_lit_conf('pstl_src_root')
if pstl_root is not None: pstl_obj_root = self.get_lit_conf('pstl_obj_root')
self.cxx.compile_flags += ['-I' + os.path.join(pstl_root, 'include')] if pstl_src_root is not None and pstl_obj_root is not None:
self.cxx.compile_flags += ['-I' + os.path.join(pstl_root, 'test')] self.cxx.compile_flags += ['-I' + os.path.join(pstl_src_root, 'include')]
self.cxx.compile_flags += ['-I' + os.path.join(pstl_obj_root, 'generated_headers')]
self.cxx.compile_flags += ['-I' + os.path.join(pstl_src_root, 'test')]
self.config.available_features.add('parallel-algorithms') self.config.available_features.add('parallel-algorithms')
# FIXME(EricWF): variant_size.pass.cpp requires a slightly larger # FIXME(EricWF): variant_size.pass.cpp requires a slightly larger

View File

@ -35,19 +35,26 @@ target_compile_features(ParallelSTL INTERFACE cxx_std_17)
if (PARALLELSTL_BACKEND STREQUAL "serial") if (PARALLELSTL_BACKEND STREQUAL "serial")
message(STATUS "Parallel STL uses the serial backend") message(STATUS "Parallel STL uses the serial backend")
target_compile_definitions(ParallelSTL INTERFACE -D_PSTL_PAR_BACKEND_SERIAL) set(_PSTL_PAR_BACKEND_SERIAL ON)
elseif (PARALLELSTL_BACKEND STREQUAL "tbb") elseif (PARALLELSTL_BACKEND STREQUAL "tbb")
find_package(TBB 2018 REQUIRED tbb OPTIONAL_COMPONENTS tbbmalloc) find_package(TBB 2018 REQUIRED tbb OPTIONAL_COMPONENTS tbbmalloc)
message(STATUS "Parallel STL uses TBB ${TBB_VERSION} (interface version: ${TBB_INTERFACE_VERSION})") message(STATUS "Parallel STL uses TBB ${TBB_VERSION} (interface version: ${TBB_INTERFACE_VERSION})")
target_link_libraries(ParallelSTL INTERFACE TBB::tbb) target_link_libraries(ParallelSTL INTERFACE TBB::tbb)
target_compile_definitions(ParallelSTL INTERFACE -D_PSTL_PAR_BACKEND_TBB) set(_PSTL_PAR_BACKEND_TBB ON)
else() else()
message(FATAL_ERROR "Requested unknown Parallel STL backend '${PARALLELSTL_BACKEND}'.") message(FATAL_ERROR "Requested unknown Parallel STL backend '${PARALLELSTL_BACKEND}'.")
endif() endif()
set(PSTL_GENERATED_HEADERS_DIR "${CMAKE_CURRENT_BINARY_DIR}/generated_headers")
set(PSTL_CONFIG_SITE_PATH "${PSTL_GENERATED_HEADERS_DIR}/__pstl_config_site")
configure_file("include/__pstl_config_site.in"
"${PSTL_CONFIG_SITE_PATH}"
@ONLY)
target_include_directories(ParallelSTL target_include_directories(ParallelSTL
INTERFACE INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<BUILD_INTERFACE:${PSTL_GENERATED_HEADERS_DIR}>
$<INSTALL_INTERFACE:include>) $<INSTALL_INTERFACE:include>)
############################################################################### ###############################################################################
@ -78,6 +85,8 @@ install(FILES "${CMAKE_CURRENT_BINARY_DIR}/ParallelSTLConfig.cmake"
DESTINATION lib/cmake/ParallelSTL) DESTINATION lib/cmake/ParallelSTL)
install(DIRECTORY include/ install(DIRECTORY include/
DESTINATION include) DESTINATION include)
install(FILES "${PSTL_CONFIG_SITE_PATH}"
DESTINATION include)
add_custom_target(install-pstl add_custom_target(install-pstl
COMMAND "${CMAKE_COMMAND}" -P "${PROJECT_BINARY_DIR}/cmake_install.cmake" -DCOMPONENT=ParallelSTL) COMMAND "${CMAKE_COMMAND}" -P "${PROJECT_BINARY_DIR}/cmake_install.cmake" -DCOMPONENT=ParallelSTL)

View File

@ -0,0 +1,15 @@
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef __PSTL_CONFIG_SITE
#define __PSTL_CONFIG_SITE
#cmakedefine _PSTL_PAR_BACKEND_SERIAL
#cmakedefine _PSTL_PAR_BACKEND_TBB
#endif // __PSTL_CONFIG_SITE

View File

@ -10,6 +10,8 @@
#ifndef _PSTL_CONFIG_H #ifndef _PSTL_CONFIG_H
#define _PSTL_CONFIG_H #define _PSTL_CONFIG_H
#include <__pstl_config_site>
// The version is XYYZ, where X is major, YY is minor, and Z is patch (i.e. X.YY.Z) // The version is XYYZ, where X is major, YY is minor, and Z is patch (i.e. X.YY.Z)
#define _PSTL_VERSION 10000 #define _PSTL_VERSION 10000
#define _PSTL_VERSION_MAJOR (_PSTL_VERSION / 1000) #define _PSTL_VERSION_MAJOR (_PSTL_VERSION / 1000)