-
Notifications
You must be signed in to change notification settings - Fork 746
Add the --override-abi
option
#2329
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Conversation
This option can be used from the CLI with the <abi>:<regex> syntax and it overrides the ABI of a function if it matches <regex>. Fixes rust-lang#2257 as the `".*"` regex can be used to match every function.
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.
r=me with that simplification.
@emilio before we move forward with this, we have this question in #2328 where eventually people would like to have another option with the shape Another suggested option is |
@pvdrz The option doc was not updated with the new |
Looks like this got caught in another PR. Nevermind. |
@hcldan thanks for checking this up! I'm trying to keep those changes in a single PR to avoid this confusion in the future :) |
This option can be used from the CLI with the : syntax and it overrides the ABI of a function if it matches .
Fixes #2257 as the
".*"
regex can be used to match every function.