We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
given that some embedders need to use different arguments that would normally be passed to gn gen, is there a mechanism for this?
gn gen
I haven't been able to find any in the existing code other than the predefines in the cmake file. is this currently possible?
The text was updated successfully, but these errors were encountered:
Not supported at the moment but flags can be added on a case-by-case basis (ex. v8_enable_i18n_support)
Sorry, something went wrong.
thanks ben!
the biggest ones i see for plv8 are:
is_component_build=false
v8_use_external_startup_data=false
as noted before, v8_enable_i18n_support would be nice, we have a few users who have used it, but it's generally not used.
v8_enable_i18n_support
v8_use_external_startup_data should not be difficult.
is_component_build=false is basically what we have today, I think? is_component_build=true on the other hand is #60.
No branches or pull requests
given that some embedders need to use different arguments that would normally be passed to
gn gen
, is there a mechanism for this?I haven't been able to find any in the existing code other than the predefines in the cmake file. is this currently possible?
The text was updated successfully, but these errors were encountered: