Closed IlleQuiProgrammat closed 2 years ago
Given that module support is very experimental in all compilers I don't really know what I can do about this one.
Given that module support is very experimental in all compilers
It is supposed to have full support in MSVC other than the std.*
modules which are experimental (and, annoyingly, seem to not be standard).
I don't really know what I can do about this one.
Understood, I will pass this onto MSVC to see if it's an issue on their end, especially seeing as it caused an internal error in the compiler.
I received the following error when attempting to compile a basic project:
The minimal sample is:
It is a CMake project on C++ 20 running with the 'Visual Studio 17 2022' build generator for CMake. Notable compilation option:
/experimental:module
is present to enable importation ofstd.core
that bundles several of the std library headers.As of yet I am not sure whether it is a bug in
cxxopts
or MSVC std lib. Any help would be appreciated.