-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
[cdac] link a stub contract descriptor if cdac-build-tool is not available #101297
Conversation
…lable Fixes builds that use src/coreclr/build-runtime.sh directly, or bringup scenarios without msbuild
Related to dotnet/installer#19534 (comment) Co-Authored-By: Adeel Mujahid <[email protected]>
it's only unset by .NET Framework which is not supported by runtime.proj
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!
FYI the issue this is fixing is causing all codegen PR formatting legs to fail... |
Tagging subscribers to this area: @tommcdon |
I guess this is another use-case for running build-runtime.sh without the managed build stuff. In this case also it looks like using a stub contract is reasonable |
CI is green on AzDO. Feel free to merge. |
…lable (dotnet#101297) * [cdac] link a stub contract descriptor if cdac-build-tool is not available Fixes builds that use src/coreclr/build-runtime.sh directly, or bringup scenarios without msbuild * Use DOTNET_HOST_PATH to run cdac-build-tool Related to dotnet/installer#19534 (comment) it's only unset by .NET Framework which is not supported by runtime.proj --------- Co-authored-by: Adeel Mujahid <[email protected]>
Fixes builds that use src/coreclr/build-runtime.sh directly, or bringup scenarios without msbuild
Use
DOTNET_HOST_PATH
to runcdac-build-tool
if it is set. Fixes VMR source builds: dotnet/installer#19534 (comment)Related to #100650 (comment)