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
--jvm out.jar
Following the example in https://haxe.org/manual/target-jvm-getting-started.html I created a Main.hx file and ran the following command:
haxe --jvm bin/Main.jar --main Main
This produced the following output:
Warning : (WDeprecated) --java out.jar -D jvm is deprecated; use --jvm out.jar directly
As far as I can tell I am not using --java out.jar -D jvm, so why am I getting this warning?
--java out.jar -D jvm
Tested with Haxe 4.3.5 on Windows 10.
The text was updated successfully, but these errors were encountered:
so why am I getting this warning?
Evidently because we"re idiots: 100fcbb
The argument parser sets the platform to Java and adds the Jvm define, and then the generate function warns about that exact situation.
Java
Jvm
generate
Looks like it"s time for 4.3.6 soon @kLabz!
Sorry, something went wrong.
🤦
kLabz
No branches or pull requests
Following the example in https://haxe.org/manual/target-jvm-getting-started.html I created a Main.hx file and ran the following command:
This produced the following output:
As far as I can tell I am not using
--java out.jar -D jvm
, so why am I getting this warning?Tested with Haxe 4.3.5 on Windows 10.
The text was updated successfully, but these errors were encountered: