parcl icon indicating copy to clipboard operation
parcl copied to clipboard

Prebuilt Windows runner crashes with 64-bit JRE

Open HybridEidolon opened this issue 7 years ago • 2 comments

In the case that a 64-bit JRE is bundled, or one is picked up from the system, the runner will crash with a debugger prompt that closes before the option to Debug comes available.

HybridEidolon avatar Jan 08 '17 05:01 HybridEidolon

Can I ask are you using mini2Dx or libGDX?

I tested my mini2Dx project with Gradle 3.3 and I had to change the following in my build.gradle for the desktop project:

Before

project.ext.assetsDir = new File("../core/assets");

After

project.ext.assetsDir = new File("$projectDir/../core/assets");

tomcashman avatar Jan 08 '17 20:01 tomcashman

This was a hand-written build.gradle rather than one generated from either gdx or mini2dx, there was no assets dir extension specified.

HybridEidolon avatar Jan 09 '17 00:01 HybridEidolon