Depends on D158661
Details
- Reviewers
ldionne - Group Reviewers
Restricted Project - Commits
- rG6f8b17703da2: [libc++][C++20 modules] Tests no except build.
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
LGTM but we should take a look at target_compile_features.
libcxx/modules/CMakeLists.txt.in | ||
---|---|---|
42 | Can we use a feature with target_compile_features here instead? That would likely solve the MSVC issue as well. |
libcxx/modules/CMakeLists.txt.in | ||
---|---|---|
42 | Based on https://cmake.org/cmake/help/latest/prop_gbl/CMAKE_CXX_KNOWN_FEATURES.html#prop_gbl:CMAKE_CXX_KNOWN_FEATURES there is no such feature. For now I keep it as is. What is the MSVC issue we're having? Is there a bug report? Note the goal is to remove this file in the future and let the build system do the right thing. |
Can we use a feature with target_compile_features here instead? That would likely solve the MSVC issue as well.