-
-
Notifications
You must be signed in to change notification settings - Fork 13.1k
rust 1.25.0 #25915
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
rust 1.25.0 #25915
Conversation
Formula/rust.rb
Outdated
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.
The revision needs to be removed
@BrewTestBot test this please |
So apparently as part of rust sources, we're now shipping some object files and binaries… and even some invalid ones 😱 |
It even makes our audit fail:
|
The
is supposed to handle that. So probably just need to throw some new dirs at it. |
CC @woodruffw that audit fail is nifty |
Yeah, my understanding is that Rust ships with all of binaries that LLVM uses in its unit tests, including malformed ones. Updating the glob should fix the problem. Looks like the audit failure begins when we run rescue MachO::NotAMachOError
# Silently ignore errors that indicate the file is not a Mach-O binary ...
[]
rescue
# ... but complain about other (parse) errors for further investigation.
if ARGV.homebrew_developer?
onoe "Failed to read Mach-O binary: #{self}"
raise
end
[]
end |
@BrewTestBot test this please |
Thanks @alex |
brew install --build-from-source <formula>
, where<formula>
is the name of the formula you're submitting?brew audit --strict <formula>
(after doingbrew install <formula>
)?