Yue (Felix) Huang

Results 27 comments of Yue (Felix) Huang

Could you verify that the count is correct on 32bit and 64bit msbuild?

> The count is correct for both 32bit and 64bit (32bit will only return a maximum of 32 due to limitations of the architecture). I do think this point is...

Nit. I used System.Environment.GetEnvironmentVariables(), then envs["NUMBER_OF_PROCESSORS"]. This returned the correct value in all of my cases.

I believe incremental should be a first party feature and tooling should enable testing of the feature. A long that line, the feature will allow tool authors a way to...

The feature is similar to make --question. ```` ‘-q’ ‘--question’ “Question”. Silently check whether the targets are up to date, but do not execute recipes; the exit code shows whether...

The error suggest that you are mixing compiler. Either the intermedia file are mixing or the compiler itself. Check 1) Are you copying the OBJ between machines? 2) The build...

Is there a reason why maxcpucount is /m:1? Could you explain the /target list? Can you reduce it to a single target? What is the actual target you want to...

Btw, what are your computer specs? On my 2990 threadripper, it took 25s for /m:1 and 15s for /m. ![image](https://user-images.githubusercontent.com/19828377/180334172-b6a82fc7-2cfe-4ca9-ad67-3a03e2cf28e6.png) Could Windows Defender or other AntiMalware be interfering?

I tried various /m and between /m:4 to /m:8 yielded the best results. 25s to 11s FYI. I added /nr:false to your command line to close finished nodes afterwards to...