-
Notifications
You must be signed in to change notification settings - Fork 262
Targets that add compiler options must run before FixupCLCompileOptions #742
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
Conversation
|
CC @kennykerr. Looks like the C++ for WinRT Xlang internal Build task is stuck, mind kicking it? |
|
/azp run |
|
No pipelines are associated with this pull request. |
|
I just need @Scottj1s or @jlaanstra to review the msbuild goo. |
|
CC @yuehuang010 @olgaark to double check me |
|
/azp run |
|
No pipelines are associated with this pull request. |
|
This change breaks the razzle build with |
|
Turns out this is actually a bug in razzle. I'll send mail with details since this is a problem with an internal tool. |
Fixes #741
This is hit when forcing proc count in msbuild since /MP should also imply /FS (force synchronous writes) but that enforcement is done by
FixupCLCompileOptionsafter all otherComputeCompileInputsTargetsruns. If something runs after the fix up has already happened, we break the build (Error C1041: cannot open program database)