Open badshah400 opened 7 months ago
There are apparently more issues when using an out-of-tree pybind11_abseil:
ImportStatusModule
. This is located in import_status_module.cc
, but that is not part of any exported shared library. The easiest solution would probably be to make this an inline implementation in the header, as it is fairly small.pybind11_abseil::absl_caster
.status.so
, ok_status_singleton.so
) should be MODULE, not SHARED libraries. This would probably covered by usage of the appropriate pybind11 CMake macro.And even more:
The status_caster
and statusor_caster
libraries are not actually INTERFACE libraries, as these depend on several compiled source files which are not available outside the source tree.
Makes me wonder if the .cc files should not be just inlined into the header files. Currently, the cc files will be compiled to static libraries, and be linked statically into any python extension making use of it.
Hi, I am a packager for openSUSE and am trying to build RPM packages for
pybind11_abseil
. We found that we need a few changes to the cmake scripts to improve the package finding logic, linking to the right version of Python, and installation of headers. I list the patches we use one by one in this description, so that you may have a look and see if they are right for your project. If you agree, I can submit PRs for the changes.Pass
FIND_PACKAGE_ARGS
toFetchContent_Declare
This enables the detection of system
absl
andpybind11
and goes on to download them if they are not. Important for packaging on openSUSE because RPMs are built inside a no-network access VM.Note: This will bump the CMake minimum version to 3.24.
Link against the correct Python library
This is needed in any case for our packages to avoid
undefined reference to Py*
errors when linking, but additionally it helps to build against the correct version of Python and Pybind11 if there are multiple ones installed in the system. On openSUSE, it is natural to have simultaneously python3.10, python3.11, and python3.12 and the corresponding pybind11, numpy, python-absl installed in the system. This helps pick the right pybind11 to go with the choice of python executable.Install headers
Apparently the current CMake scripts do not install the headers to the system, only the libraries. Headers are nonetheless needed for devs using C++ interface of
pybind11_abseil
. This patch adds the necessary include dirs to the install destination.Suggestions, comments welcome. Thanks in advance. Thank you also for the very useful library.
Edit: Slightly improved patch for headers' installation: exclude test and requirements dirs.