-
-
Notifications
You must be signed in to change notification settings - Fork 373
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
Replace RZ_ASM_NOPLUGINS and RZ_BIN_NOPLUGINS with more general RZ_NOPLUGINS #3919
Conversation
@ret2libc take a look at this one please, and if you don't have any objections - merge. |
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.
Mh, If the others are ok i'm ok, though I would have gone with the opposite solution of keeping one NOPLUGIN for each kind of plugins.
b115f59
to
9c74e8a
Compare
We can do this as well. Though, if we want to have it properly done, we would need to:
Idk, is it worth the trade? We can also open an issue about it for a better plugin loading module. Something where each plugin needs to set its category and we have a simply call to enable a certain plugin load_plugin(plugin) { if (do_not_load_plugin_group(X) return; .... } |
I'm not sure I follow you.
What do you mean? We already have separate bin plugins and separate asm plugins. |
Sorry, I was not clear with this. The flag A more general problem is, plugin libraries get loaded via This appears inconsistent to me and hard to manage, because there is no single module which does the plugin loading. |
9c74e8a
to
b4e5ad6
Compare
b4e5ad6
to
3855b1d
Compare
I understand now, thanks for the explanation! If so, yes then it makes sense how you did it :) Thanks for the patience :D |
Your checklist for this pull request
Detailed description
...
Test plan
All green (since the variable is used for all tests, stuff will explode if something is wrong).
Closing issues
...