Add NXDK (Xbox) support#139
Conversation
| #endif | ||
|
|
||
| #ifdef _MSC_VER | ||
| #if defined(_MSC_VER) && !defined(NXDK) |
There was a problem hiding this comment.
Is the NXDK version of MSVC too old for these intrinsics or something?
There was a problem hiding this comment.
The problem is that NXDK is using Clang targeting Win32. This defines _MSC_VER, but the intrinsics are not defined. Although the underlying functions do seem to be available.
c944d5c to
f7ad9ef
Compare
|
I should add. I also had to make changes to NXDK to get everything working. I have not yet submitted these upstream, but will be doing so after changes here are approved. XboxDev/nxdk@master...ReenigneArcher:nxdk:moonlight (This also includes changes required for compiling OpenSSL with NXDK) |
f7ad9ef to
79b7657
Compare
I've submitted required changes to nxdk via the following PRs:
|
This PR adds NXDK (Original Xbox) support. This is required for https://github.com/LizardByte/Moonlight-XboxOG
Requires cgutman/enet#24