2020-08-19 16:26:26 +00:00
|
|
|
# tools/pybind11NewTools.cmake -- Build system for the pybind11 modules
|
|
|
|
#
|
|
|
|
# Copyright (c) 2020 Wenzel Jakob <wenzel@inf.ethz.ch> and Henry Schreiner
|
|
|
|
#
|
|
|
|
# All rights reserved. Use of this source code is governed by a
|
|
|
|
# BSD-style license that can be found in the LICENSE file.
|
|
|
|
|
2021-10-27 19:06:02 +00:00
|
|
|
if(CMAKE_VERSION VERSION_LESS 3.12)
|
|
|
|
message(FATAL_ERROR "You cannot use the new FindPython module with CMake < 3.12")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
include_guard(GLOBAL)
|
|
|
|
|
2020-08-19 16:26:26 +00:00
|
|
|
get_property(
|
|
|
|
is_config
|
|
|
|
TARGET pybind11::headers
|
|
|
|
PROPERTY IMPORTED)
|
|
|
|
|
|
|
|
if(pybind11_FIND_QUIETLY)
|
|
|
|
set(_pybind11_quiet QUIET)
|
2021-01-19 23:48:22 +00:00
|
|
|
else()
|
|
|
|
set(_pybind11_quiet "")
|
2020-08-19 16:26:26 +00:00
|
|
|
endif()
|
|
|
|
|
2022-02-11 02:28:08 +00:00
|
|
|
if(NOT Python_FOUND AND NOT Python3_FOUND)
|
2020-08-19 16:26:26 +00:00
|
|
|
if(NOT DEFINED Python_FIND_IMPLEMENTATIONS)
|
|
|
|
set(Python_FIND_IMPLEMENTATIONS CPython PyPy)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# GitHub Actions like activation
|
|
|
|
if(NOT DEFINED Python_ROOT_DIR AND DEFINED ENV{pythonLocation})
|
|
|
|
set(Python_ROOT_DIR "$ENV{pythonLocation}")
|
|
|
|
endif()
|
|
|
|
|
2022-02-11 02:28:08 +00:00
|
|
|
find_package(Python 3.5 REQUIRED COMPONENTS Interpreter Development ${_pybind11_quiet})
|
2020-08-19 16:26:26 +00:00
|
|
|
|
|
|
|
# If we are in submodule mode, export the Python targets to global targets.
|
|
|
|
# If this behavior is not desired, FindPython _before_ pybind11.
|
|
|
|
if(NOT is_config)
|
|
|
|
set_property(TARGET Python::Python PROPERTY IMPORTED_GLOBAL TRUE)
|
|
|
|
set_property(TARGET Python::Interpreter PROPERTY IMPORTED_GLOBAL TRUE)
|
|
|
|
if(TARGET Python::Module)
|
|
|
|
set_property(TARGET Python::Module PROPERTY IMPORTED_GLOBAL TRUE)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(Python_FOUND)
|
|
|
|
set(_Python
|
|
|
|
Python
|
|
|
|
CACHE INTERNAL "" FORCE)
|
2022-02-11 02:28:08 +00:00
|
|
|
elseif(Python3_FOUND)
|
2020-08-19 16:26:26 +00:00
|
|
|
set(_Python
|
|
|
|
Python3
|
|
|
|
CACHE INTERNAL "" FORCE)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(PYBIND11_MASTER_PROJECT)
|
|
|
|
if(${_Python}_INTERPRETER_ID MATCHES "PyPy")
|
|
|
|
message(STATUS "PyPy ${${_Python}_PyPy_VERSION} (Py ${${_Python}_VERSION})")
|
|
|
|
else()
|
|
|
|
message(STATUS "${_Python} ${${_Python}_VERSION}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2020-09-21 22:34:48 +00:00
|
|
|
# If a user finds Python, they may forget to include the Interpreter component
|
|
|
|
# and the following two steps require it. It is highly recommended by CMake
|
|
|
|
# when finding development libraries anyway, so we will require it.
|
|
|
|
if(NOT DEFINED ${_Python}_EXECUTABLE)
|
|
|
|
message(
|
|
|
|
FATAL_ERROR
|
|
|
|
"${_Python} was found without the Interpreter component. Pybind11 requires this component.")
|
|
|
|
|
|
|
|
endif()
|
|
|
|
|
2021-09-24 21:47:03 +00:00
|
|
|
if(NOT ${_Python}_EXECUTABLE STREQUAL PYBIND11_PYTHON_EXECUTABLE_LAST)
|
2021-09-24 11:03:57 +00:00
|
|
|
# Detect changes to the Python version/binary in subsequent CMake runs, and refresh config if needed
|
|
|
|
unset(PYTHON_IS_DEBUG CACHE)
|
|
|
|
unset(PYTHON_MODULE_EXTENSION CACHE)
|
2021-09-24 21:47:03 +00:00
|
|
|
set(PYBIND11_PYTHON_EXECUTABLE_LAST
|
2021-09-24 11:03:57 +00:00
|
|
|
"${${_Python}_EXECUTABLE}"
|
|
|
|
CACHE INTERNAL "Python executable during the last CMake run")
|
|
|
|
endif()
|
|
|
|
|
2020-10-09 21:33:45 +00:00
|
|
|
if(NOT DEFINED PYTHON_IS_DEBUG)
|
|
|
|
# Debug check - see https://stackoverflow.com/questions/646518/python-how-to-detect-debug-Interpreter
|
|
|
|
execute_process(
|
|
|
|
COMMAND "${${_Python}_EXECUTABLE}" "-c"
|
|
|
|
"import sys; sys.exit(hasattr(sys, 'gettotalrefcount'))"
|
|
|
|
RESULT_VARIABLE _PYTHON_IS_DEBUG)
|
|
|
|
set(PYTHON_IS_DEBUG
|
|
|
|
"${_PYTHON_IS_DEBUG}"
|
|
|
|
CACHE INTERNAL "Python debug status")
|
|
|
|
endif()
|
2020-09-05 01:54:09 +00:00
|
|
|
|
|
|
|
# Get the suffix - SO is deprecated, should use EXT_SUFFIX, but this is
|
|
|
|
# required for PyPy3 (as of 7.3.1)
|
2020-10-09 21:33:45 +00:00
|
|
|
if(NOT DEFINED PYTHON_MODULE_EXTENSION)
|
|
|
|
execute_process(
|
2020-11-05 19:37:11 +00:00
|
|
|
COMMAND
|
|
|
|
"${${_Python}_EXECUTABLE}" "-c"
|
2022-01-31 16:10:45 +00:00
|
|
|
"import sys, importlib; s = importlib.import_module('distutils.sysconfig' if sys.version_info < (3, 10) else 'sysconfig'); print(s.get_config_var('EXT_SUFFIX') or s.get_config_var('SO'))"
|
2020-10-09 21:33:45 +00:00
|
|
|
OUTPUT_VARIABLE _PYTHON_MODULE_EXTENSION
|
|
|
|
ERROR_VARIABLE _PYTHON_MODULE_EXTENSION_ERR
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
|
|
|
|
if(_PYTHON_MODULE_EXTENSION STREQUAL "")
|
|
|
|
message(
|
|
|
|
FATAL_ERROR "pybind11 could not query the module file extension, likely the 'distutils'"
|
|
|
|
"package is not installed. Full error message:\n${_PYTHON_MODULE_EXTENSION_ERR}")
|
|
|
|
endif()
|
2020-09-05 01:54:09 +00:00
|
|
|
|
2020-10-09 21:33:45 +00:00
|
|
|
# This needs to be available for the pybind11_extension function
|
|
|
|
set(PYTHON_MODULE_EXTENSION
|
|
|
|
"${_PYTHON_MODULE_EXTENSION}"
|
|
|
|
CACHE INTERNAL "")
|
|
|
|
endif()
|
2020-08-19 16:26:26 +00:00
|
|
|
|
|
|
|
# Python debug libraries expose slightly different objects before 3.8
|
|
|
|
# https://docs.python.org/3.6/c-api/intro.html#debugging-builds
|
|
|
|
# https://stackoverflow.com/questions/39161202/how-to-work-around-missing-pymodule-create2-in-amd64-win-python35-d-lib
|
|
|
|
if(PYTHON_IS_DEBUG)
|
|
|
|
set_property(
|
2020-08-21 19:27:21 +00:00
|
|
|
TARGET pybind11::pybind11
|
2020-08-19 16:26:26 +00:00
|
|
|
APPEND
|
|
|
|
PROPERTY INTERFACE_COMPILE_DEFINITIONS Py_DEBUG)
|
|
|
|
endif()
|
|
|
|
|
2022-02-11 02:28:08 +00:00
|
|
|
# Check on every access - since Python can change - do nothing in that case.
|
2020-08-19 16:26:26 +00:00
|
|
|
|
|
|
|
if(DEFINED ${_Python}_INCLUDE_DIRS)
|
2020-12-16 02:55:14 +00:00
|
|
|
# Only add Python for build - must be added during the import for config
|
|
|
|
# since it has to be re-discovered.
|
|
|
|
#
|
|
|
|
# This needs to be a target to be included after the local pybind11
|
|
|
|
# directory, just in case there there is an installed pybind11 sitting
|
|
|
|
# next to Python's includes. It also ensures Python is a SYSTEM library.
|
|
|
|
add_library(pybind11::python_headers INTERFACE IMPORTED)
|
|
|
|
set_property(
|
|
|
|
TARGET pybind11::python_headers PROPERTY INTERFACE_INCLUDE_DIRECTORIES
|
|
|
|
"$<BUILD_INTERFACE:${${_Python}_INCLUDE_DIRS}>")
|
2020-08-19 16:26:26 +00:00
|
|
|
set_property(
|
|
|
|
TARGET pybind11::pybind11
|
|
|
|
APPEND
|
2020-12-16 02:55:14 +00:00
|
|
|
PROPERTY INTERFACE_LINK_LIBRARIES pybind11::python_headers)
|
2020-11-03 01:45:54 +00:00
|
|
|
set(pybind11_INCLUDE_DIRS
|
|
|
|
"${pybind11_INCLUDE_DIR}" "${${_Python}_INCLUDE_DIRS}"
|
|
|
|
CACHE INTERNAL "Directories where pybind11 and possibly Python headers are located")
|
2020-08-19 16:26:26 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# In CMake 3.18+, you can find these separately, so include an if
|
2020-11-15 16:55:42 +00:00
|
|
|
if(TARGET ${_Python}::Python)
|
2020-08-19 16:26:26 +00:00
|
|
|
set_property(
|
|
|
|
TARGET pybind11::embed
|
|
|
|
APPEND
|
2020-11-15 16:55:42 +00:00
|
|
|
PROPERTY INTERFACE_LINK_LIBRARIES ${_Python}::Python)
|
2020-08-19 16:26:26 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# CMake 3.15+ has this
|
|
|
|
if(TARGET ${_Python}::Module)
|
|
|
|
set_property(
|
|
|
|
TARGET pybind11::module
|
|
|
|
APPEND
|
|
|
|
PROPERTY INTERFACE_LINK_LIBRARIES ${_Python}::Module)
|
|
|
|
else()
|
|
|
|
set_property(
|
|
|
|
TARGET pybind11::module
|
|
|
|
APPEND
|
|
|
|
PROPERTY INTERFACE_LINK_LIBRARIES pybind11::python_link_helper)
|
|
|
|
endif()
|
|
|
|
|
2020-09-05 01:54:09 +00:00
|
|
|
# WITHOUT_SOABI and WITH_SOABI will disable the custom extension handling used by pybind11.
|
|
|
|
# WITH_SOABI is passed on to python_add_library.
|
2020-08-19 16:26:26 +00:00
|
|
|
function(pybind11_add_module target_name)
|
2020-09-04 21:31:05 +00:00
|
|
|
cmake_parse_arguments(PARSE_ARGV 1 ARG
|
|
|
|
"STATIC;SHARED;MODULE;THIN_LTO;OPT_SIZE;NO_EXTRAS;WITHOUT_SOABI" "" "")
|
2020-08-19 16:26:26 +00:00
|
|
|
|
2021-01-14 18:51:41 +00:00
|
|
|
if(ARG_STATIC)
|
|
|
|
set(lib_type STATIC)
|
|
|
|
elseif(ARG_SHARED)
|
|
|
|
set(lib_type SHARED)
|
2020-08-19 16:26:26 +00:00
|
|
|
else()
|
2021-01-14 18:51:41 +00:00
|
|
|
set(lib_type MODULE)
|
2020-08-19 16:26:26 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if("${_Python}" STREQUAL "Python")
|
2021-01-14 18:51:41 +00:00
|
|
|
python_add_library(${target_name} ${lib_type} ${ARG_UNPARSED_ARGUMENTS})
|
2020-08-19 16:26:26 +00:00
|
|
|
elseif("${_Python}" STREQUAL "Python3")
|
2021-01-14 18:51:41 +00:00
|
|
|
python3_add_library(${target_name} ${lib_type} ${ARG_UNPARSED_ARGUMENTS})
|
2020-08-19 16:26:26 +00:00
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "Cannot detect FindPython version: ${_Python}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
target_link_libraries(${target_name} PRIVATE pybind11::headers)
|
|
|
|
|
2021-01-14 18:51:41 +00:00
|
|
|
if(lib_type STREQUAL "MODULE")
|
2020-08-19 16:26:26 +00:00
|
|
|
target_link_libraries(${target_name} PRIVATE pybind11::module)
|
|
|
|
else()
|
|
|
|
target_link_libraries(${target_name} PRIVATE pybind11::embed)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_link_libraries(${target_name} PRIVATE pybind11::windows_extras)
|
|
|
|
endif()
|
|
|
|
|
2021-01-14 13:31:48 +00:00
|
|
|
# -fvisibility=hidden is required to allow multiple modules compiled against
|
|
|
|
# different pybind versions to work properly, and for some features (e.g.
|
|
|
|
# py::module_local). We force it on everything inside the `pybind11`
|
|
|
|
# namespace; also turning it on for a pybind module compilation here avoids
|
|
|
|
# potential warnings or issues from having mixed hidden/non-hidden types.
|
|
|
|
if(NOT DEFINED CMAKE_CXX_VISIBILITY_PRESET)
|
|
|
|
set_target_properties(${target_name} PROPERTIES CXX_VISIBILITY_PRESET "hidden")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT DEFINED CMAKE_CUDA_VISIBILITY_PRESET)
|
|
|
|
set_target_properties(${target_name} PROPERTIES CUDA_VISIBILITY_PRESET "hidden")
|
|
|
|
endif()
|
2020-08-19 16:26:26 +00:00
|
|
|
|
2020-09-05 01:54:09 +00:00
|
|
|
# If we don't pass a WITH_SOABI or WITHOUT_SOABI, use our own default handling of extensions
|
2021-04-06 03:50:50 +00:00
|
|
|
if(NOT ARG_WITHOUT_SOABI AND NOT "WITH_SOABI" IN_LIST ARG_UNPARSED_ARGUMENTS)
|
2020-09-05 01:54:09 +00:00
|
|
|
pybind11_extension(${target_name})
|
|
|
|
endif()
|
|
|
|
|
2020-08-19 16:26:26 +00:00
|
|
|
if(ARG_NO_EXTRAS)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT DEFINED CMAKE_INTERPROCEDURAL_OPTIMIZATION)
|
|
|
|
if(ARG_THIN_LTO)
|
|
|
|
target_link_libraries(${target_name} PRIVATE pybind11::thin_lto)
|
|
|
|
else()
|
|
|
|
target_link_libraries(${target_name} PRIVATE pybind11::lto)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NOT MSVC AND NOT ${CMAKE_BUILD_TYPE} MATCHES Debug|RelWithDebInfo)
|
2020-09-16 21:13:41 +00:00
|
|
|
# Strip unnecessary sections of the binary on Linux/macOS
|
2020-08-19 16:26:26 +00:00
|
|
|
pybind11_strip(${target_name})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(MSVC)
|
|
|
|
target_link_libraries(${target_name} PRIVATE pybind11::windows_extras)
|
|
|
|
endif()
|
2020-09-04 21:31:05 +00:00
|
|
|
|
|
|
|
if(ARG_OPT_SIZE)
|
|
|
|
target_link_libraries(${target_name} PRIVATE pybind11::opt_size)
|
|
|
|
endif()
|
2020-08-19 16:26:26 +00:00
|
|
|
endfunction()
|
|
|
|
|
|
|
|
function(pybind11_extension name)
|
2020-09-05 01:54:09 +00:00
|
|
|
# The extension is precomputed
|
|
|
|
set_target_properties(${name} PROPERTIES PREFIX "" SUFFIX "${PYTHON_MODULE_EXTENSION}")
|
2020-08-19 16:26:26 +00:00
|
|
|
|
|
|
|
endfunction()
|