"cl : command line error D8040: error creating or communicating with child process" when rebuilding a C++ project in VS2022 - what can it be?
Juan Dent
236
Reputation points
I just downloaded a project from GitHub and generated a solution for it via cmake. When I try to compile it I get these 2 errors with language /std:c++latest or /std::c++20 in debug mode and x64
Q:\C++\sqlite_orm\include\sqlite_orm/sqlite_orm.h(7500,89): fatal error C1001: Internal compiler error.
/**
* Constraints a deleter to be or to yield a function pointer.
*/
template<typename D>
concept yields_fp = requires(D d) {
// yielding function pointer by using the plus trick
{+d};
requires std::is_function_v<std::remove_pointer_t<decltype(+d)>>;
};
cl : command line error D8040: error creating or communicating with child process
What could it be?
Developer technologies C++
3,972 questions
Sign in to answer