boostorg / boost

Super-project for modularized Boost
https://github.com/boostorg/wiki/wiki/Getting-Started%3A-Overview
Boost Software License 1.0
7.02k stars 1.73k forks source link

boost-1.84.0.beta1: New library Cobald is not installed by CMake #834

Closed bebuch closed 9 months ago

bebuch commented 9 months ago

When I configure, build and install via CMake then Cobald is missing in the installed files. The other new library redis is installed correctly.

I downloaded from: https://github.com/boostorg/boost/releases/download/boost-1.84.0.beta1/boost-1.84.0.beta1.7z

pdimov commented 9 months ago

Using what compiler and what platform?

klemens-morgenstern commented 9 months ago

Which c++ standard did you compile with?

bebuch commented 9 months ago

C++20, I can post the full command line calls later if this helps.

Klemens Morgenstern @.***> schrieb am Mi., 29. Nov. 2023, 07:10:

Which c++ standard did you compile with?

— Reply to this email directly, view it on GitHub https://github.com/boostorg/boost/issues/834#issuecomment-1831280619, or unsubscribe https://github.com/notifications/unsubscribe-auth/AC3UCSIEQOUADWC4ZVQ6LW3YG3GU7AVCNFSM6AAAAAA76A5XEWVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMZRGI4DANRRHE . You are receiving this because you authored the thread.Message ID: @.***>

bebuch commented 9 months ago

I found the problem:

-- Boost.Cobalt: not building, the lowest supported MSVC version is 1930.  1929 is not supported

I use a VS 2019 x64 cmd command line. Directory structure:

C:/Temp/boost-1.84.0.beta1
C:/Temp/boost-build
C:/Temp/boost-install
cd C:/Temp/boost-1.84.0.beta1
cmake "-GNinja" "-DCMAKE_CXX_STANDARD=20" "-DCMAKE_INSTALL_PREFIX=C:\Temp\boost-install" "C:\Temp\boost-1.84.0.beta1"
cmake --build .
cmake --install .