-
-
Notifications
You must be signed in to change notification settings - Fork 261
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
Optional support for bitcode, symbol prefixing, and cmodule. #820
base: main
Are you sure you want to change the base?
Conversation
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.
Thanks! So sorry it took me ages to get to this 😓
], | ||
) | ||
|
||
enable_bitcode = get_option('bitcode') |
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.
Meson already has a built-in option for this: b_bitcode
.
@@ -428,12 +436,18 @@ if get_option('devkits').length() != 0 | |||
endif | |||
mkdevkit = [python, releng / 'mkdevkit.py'] | |||
uninstalled_dir = meson.global_build_root() / 'meson-uninstalled' | |||
|
|||
prefix_syms = get_option('prefixsyms') |
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.
It would be good to invert the logic, so it's opt-out instead. In that way we won't have to update frida-core, which also uses mkdevkit.py
.
This PR adds 3 new features/options to the build.
Depends on an update to releng: frida/releng#4