Replies: 1 comment 2 replies
-
Thank you for bringing our attention to this issue. After some tinkering in an openSUSE docker image, my impression is that something's wrong in either Boost or openSUSE. Here is a minimal working example to reproduce the issue without ESPResSo: cmake_minimum_required(VERSION 3.25.1)
cmake_policy(VERSION 3.25.1)
project(ProjectName)
if(POLICY CMP0167)
# use BoostConfig.cmake shipped with Boost 1.70+ instead of the one in CMake
cmake_policy(SET CMP0167 NEW)
endif()
find_package(Boost 1.81.0 REQUIRED mpi serialization filesystem system) Running this MWE in Tumbleweed version 20250301: mkdir build
cd build
cmake .. Output:
Reproducible with CMake versions 3.31.5 (from OP), 3.31.6, 3.30.0, 3.29.0, 3.25.2. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When trying to package espresso 4.2.2 (from the tarball on GitHub) with multiple versions of Python (from 3.11 to 3.13) and cmake 3.31.5, I get this error:
My
cmake
command is 3.31.5 and it is executed with these options:Any idea what should I do? What do I do wrong?
Complete build log with all details of packages used and steps taken to reproduce.
Beta Was this translation helpful? Give feedback.
All reactions