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
I'm just now adding a feature to assume "Main" is the entry point of "Main.java" exists. This is bogus for several reasons - it might not have a main function, despite the name - it might be using a package - there might be multiple ambiguous entry points.
Options:
Re-introduce cargo_metabuild dependency, read main from package metadata
Introduce non-metabuild exports for build.rs to invoke (e.g. jerk::build_with_entry_point("Main"))
Do more parsing automagic
???
The text was updated successfully, but these errors were encountered:
I'm just now adding a feature to assume "Main" is the entry point of "Main.java" exists. This is bogus for several reasons - it might not have a main function, despite the name - it might be using a package - there might be multiple ambiguous entry points.
Options:
jerk::build_with_entry_point("Main")
)The text was updated successfully, but these errors were encountered: