Failed to write the main dump. Minidumps are not enabled by default in client versions of Windows

I worked on Eclipse RCP and I got this error


Fatal error detected in Java Runtime Environment:

EXCEPTION_ACCESS_VIOLATION (0xc0000005) with pc = 0x000007fef54b88ee, pid = 3192, tid = 5324

JRE version: 7.0_02-b13 Java VM: Java HotSpot (TM) 64-bit server VM (22.0-b10 mixed-mode windows-amd64 compressed oops) Problem frame: C [jscript9.dll + 0x888ee]

Failed to write the main dump. Minidumps are not enabled by default in client versions of Windows

An error report file with additional information is saved as: F: \ Eclipse RCP \ hs_err_pid3192.log

If you want to send an error report, visit: http://bugreport.sun.com/bugreport/crash.jsp The accident occurred outside the Java virtual machine in native code. See Problem frame for error message.

+6
source share
2 answers

For write-only purposes, this is most likely caused by Windows UAC, see java.com for a description .

+1
source

As you have not yet accepted the answer, one of the possible causes of this error is the presence of some class with the main constructor, where this class is not the default activity. To solve the problem:

  • Run configuration.
  • in the lunch configuration tree, remove this class from the java application , if one is specified. (but save the Android app specified in the app tree for lunch)
0
source

Source: https://habr.com/ru/post/916538/


All Articles