-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Make .rmeta
file in dep-info
have correct name (lib
prefix)
#114750
Conversation
(rustbot has picked a reviewer for you, use r? to override) |
@bors r+ |
📌 Commit 282e67408b5db63bea6f36e062d35fc491c30ea8 has been approved by It is now in the queue for this repository. |
⌛ Testing commit 282e67408b5db63bea6f36e062d35fc491c30ea8 with merge d0172f44523c555494946d64fe220fcfa519310d... |
This comment has been minimized.
This comment has been minimized.
💔 Test failed - checks-actions |
I'll look into the failure on Windows. @rustbot author |
282e674
to
1e6d41f
Compare
Looks like I just have to adjust how The diff from what you already approved is minimal: click here to see diff @rustbot ready |
@bors r+ |
📌 Commit 1e6d41f72fcc55452b2b6b92e39cbee3b90cf917 has been approved by It is now in the queue for this repository. |
🌲 The tree is currently closed for pull requests below priority 100. This pull request will be tested once the tree is reopened. |
@bors treeclosed- |
⌛ Testing commit 1e6d41f72fcc55452b2b6b92e39cbee3b90cf917 with merge 24b78bb32be9e844f4afcecca7eec88bd880cac9... |
This comment has been minimized.
This comment has been minimized.
💔 Test failed - checks-actions |
Since `filename_for_metadata()` and `OutputFilenames::path(OutputType::Metadata)` had different logic for the name of the metadata file, the `.d` file contained a file name different from the actual name used. Share the logic to fix the out-of-sync name. Closes 68839.
1e6d41f
to
04d81ba
Compare
Apparently GNU sed and Mac/BSD sed have (symbolic:) |
@compiler-errors Friendly ping as I'm starting to suspect you might have missed this was ready for re-review with a small diff compared to what you already approved? (See comment above) |
@bors r+ |
☀️ Test successful - checks-actions |
Finished benchmarking commit (8ed1d4a): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesThis benchmark run did not return any relevant results for this metric. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 634.734s -> 636.351s (0.25%) |
Since
filename_for_metadata()
andOutputFilenames::path(OutputType::Metadata)
had different logic for the name of the metadata file, the.d
file contained a file name different from the actual name used. Share the logic to fix the out-of-sync name.Without this fix, the
.d
file containedinstead of
which is the name of the file that is actually written by the compiler.
Worth noting: It took me several iterations to get all tests to pass, so I am relatively confident that this PR does not break anything.
Closes #68839