-
Notifications
You must be signed in to change notification settings - Fork 221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What version of SDK and WDK was used for compilation? #46
Comments
I use VS 2019 (latest updates), WDK - Win10 (latest), have 4 errors (with non initialized members in constexpr) and missed types (const unsigned short [18]" в "PWCH"). I disable warning levels and set C++ standart to latest possible ( 17+). |
I built it , but need look aon project from home to remember :) i found some snippet for constexpr replace , its visual studio 2019 last version problem related with constexpr. |
@warchiefmarkus, the constexpr issue was fixed in Visual Studio 2019 version 16.10.0 . How did you solved the missed types (const unsigned short [18]" в "PWCH") issue? |
Just casting |
thanks :) |
If you get some error in vmexit_c_wrapper.cpp and the vmexit_passthrough.cpp. please modify it as follow:
void vmexit_c_wrapper_handler::teardown(vcpu_t& vp) noexcept
}
} void vmexit_c_wrapper_handler::terminate(vcpu_t& vp) noexcept
}
} void vmexit_c_wrapper_handler::handle(vcpu_t& vp) noexcept const auto cpp_handler = handlers_[exit_reason_index]; if (c_handler)
}
} noW , YOU can build it success. |
As far as I know, in a recent release, Visual Studio has fixed the constexpr issue |
@ansnapx Instead of /WX- using /IGNORE:warning[,warning] would be better option. https://docs.microsoft.com/en-us/cpp/build/reference/ignore-ignore-specific-warnings?view=msvc-160 @warchiefmarkus On 16.10.4 at least the issue is still present. |
VS2017
SDK -10.0.17763.0
WDK - Windows 10, version 1809
Compile- tons of error
Can anyone tell me the development environment?
The text was updated successfully, but these errors were encountered: