You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 4, 2019. It is now read-only.
So I should expect to accept ARGS and pass it through to use with say ArgParse.jl.
However, when I look at program.c:
intmain(intargc, char*argv[])
{
intptr_tv;
// Initialize Juliauv_setup_args(argc, argv); // no-op on Windowslibsupport_init();
jl_options.image_file="libhello";
julia_init(JL_IMAGE_CWD);
// Do some workjulia_main();
// Cleanup and graceful exitjl_atexit_hook(0);
return0;
}
Nothing is passed to julia_main when it is invoked - perhaps why I'm getting segfault!? So does the call of julia_main() need to be altered to accept some arguments? If so, how?