HackSys Team
HackSys Team
So instead of specifying the `--sdk-version` if we specify the `--msvc-version` then it works with and without wdk. Updated command: ```bash python3 vsdownload.py --accept-license \ --dest ${MSVC_HOME} \ --host-arch x64...
New issue, there is no `msbuild.exe` in the `MSVC_HOME` directory
Update: the issue is resolved, seems there was an issue with the downloaded files. ``` WDK_INSTALLER_URL="https://go.microsoft.com/fwlink/?linkid=2249371" ``` ```bash python3 ./vsdownload.py --accept-license \ --dest ${MSVC_HOME} \ --host-arch x64 \ --architecture x86...
@TheComputerGuy96 when compiling a driver with C++ stl and using intrinsics there is an issue with clang inbuilt intrinsic and msvc. So we need to know the VCINSTALLDIR and a...
To check the color output you can check: https://github.com/mstorsjo/msvc-wine/actions/runs/11022479747/job/30611873227?pr=145 you should also check the output from `--print-deps`, `--print-reverse-deps` and `--print-selection`. it looks nice. Feedback is welcome. Also the download efficiency...
Hi @mstorsjo thanks for the comments. As you can see that this PR has multiple commits. Two merged PRs and regarding `'` and `"` I normalized the code to use...
Hi @soxrok2212 TBH, never tried musl. It should work though with minor adjustments
hi @0xDivyanshu-new Thank you for the pull request. Can you make the type casts as `ULONG` instead of `UINT32`?
@mstorsjo much-needed feature. Most of the time, we don't need ARM and ARM64 architecture support and this causes the huge size of the container
this works but i'm not sure if this will cause any issues ```diff def printDepends(packages, target, deptype, chip, indent, args): chipstr = "" if chip != None: @@ -286,6 +558,8...