Karl Sabo
Karl Sabo
Hey Farzad, It's currently not possible.
A Gradle distribution Zip or TAR might be all you need .
Duplicate of #131
Which command? Are you trying to run your packed app? If so have you tried running from the command line with verbose output turned on? What other steps have you...
Open a terminal and run `outdir/Contents/MacOS/executable-name --cli --verbose --` Where outdir is the output directory you specified when running packr-all.jar and executable-name is the name you specified for that too....
Yes, it's using the bundled JRE, it would take some effort to get it to use anything else. I bet your missing `-XstartOnFirstThread` as a JVM option.
Remove the leading dash. Run with verbose and see if it gets any further. Also have you tried attaching a debugger or profiler such as visualVM to see what threads...
Did you get it working?
I meant to run the packr launcher executable in verbose mode. `ala/Contents/MacOS/Aladdin --cli --verbose --` If you have logging, you might be able to figure out where it's hanging, otherwise...
That looks good, definitely going to need to run jstack or VisualVM, the VM is up and running the code in aladdin.jar. Maybe it's hung on some JOGL call.