-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
[mono][ios] Apple mobile template allows passing process arguments to the runtime #92772
[mono][ios] Apple mobile template allows passing process arguments to the runtime #92772
Conversation
Tagging subscribers to 'os-ios': @steveisok, @akoeplinger, @kotlarmilos Issue DetailsDescriptionThis PR introduces changes to the apple mobile template which allows passing process arguments to the runtime. The This PR is the result of testing the
|
@kotlarmilos do we need to modify anything in xharness to provide a way to shovel args? |
It should be already possible to pass extra arguments to the iOS app bundle: |
@ivanpovazan @akoeplinger Please provide feedback when you have a chance, not urgent :) |
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.
LGTM!
Left only two smaller suggestions.
Co-authored-by: Ivan Povazan <55002338+ivanpovazan@users.noreply.github.com>
Description
This PR introduces changes to the apple mobile template which allows passing process arguments to the runtime.
TheThemono_ios_runtime_init
function is updated to take process arguments (argc
andargv
) and invokesmono_jit_parse_options
function.mono_ios_runtime_init
function already retrieves the arguments and they are passed to themono_jit_parse_options
.This PR is the result of testing the
--aot-lazy-assembly-load
runtime parameter. The goal was to identify a potential workaround for #92767.