-
Notifications
You must be signed in to change notification settings - Fork 60
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
Unable to get diff for corelib #300
Comments
You are perhaps running into #197 / #217 -- if you specify both base and diff in one go then only the base SPC and runtime are used. In order to make diffing SPC work you need to run base and diff separately, each in its own respective core_root, and then invoke jit-analyze afterwards. Something like this should work
|
Hmm, I'm still getting the same error even when running the base and diff separately.
|
Hmm. Can you try adding |
Sure, here's the output:
I did confirm that |
Oh, well this is interesting. I slightly modified my command to drop the trailing backslash from the Core_Root path, I get a different error message:
Edit: Updated to verbose output |
Thanks... still no idea what's going wrong. @dotnet/jit-contrib anyone have any ideas? |
I tried the same command line (with paths changed to my local paths) but didn't get any failure. This wouldn't cause the failure, but you're not going to get any diffs by specifying a Release JIT unless you have replaced the JIT in the Release directory with a Checked or Debug build of the JIT. Do you have write permission to the "C:\Users\acovingt\Documents\diffs" directory? Did jit-diff create any directories there? You might have to run the tool under the debugger. |
Oh, looks like I was out of date. Hopefully #302 fixes it. |
Yes, looks like #302 fixed it. Thanks so much everyone! |
I have two builds of dotnet/runtime that I would like to compare using
jit-diff
. One is just a build off of the master branch,runtime-master
, and the other is my own local build with some changes I've made to the JIT,runtime
.Whenever I try to do a diff of the two builds on
System.Private.Corelib.dll
, I get the following error:I've tried re-cloning and rebuilding both dotnet/jitutils and dotnet/runtime, but this error persists.
Here is
dotnet --info
output to help with troubleshooting:Please let me know if I can provide any other information or try any other steps. Thanks!
The text was updated successfully, but these errors were encountered: