1

Today I started JBoss Developer Studio (devstudio.exe) again and it crashes almost immediately after starting. Exit code is -1073740781.

I've also reinstalled Devstudio 10.2.0.GA and it doesn't work either.

Workspace does not matter, it also crashes in a new one.

Running it from eclipsec.exe, instead of devstudio.exe, works.

Unfortunately, there's no log file created. Anybody knows what to do to debug this further?

DevStudio crash

dgolovin
  • 1,412
  • 11
  • 23
Diego
  • 1,789
  • 10
  • 19

3 Answers3

1

devstudio.exe is just a copy of eclipse.exe. The fact eclipse.exe works and devstudio.exe does not makes me think the problem could be in devstudio.ini file.

My wild guess is -Dosgi.framework.extensions system property could be in charge for jvm crash. Everything else in the message looks sane to me.

dgolovin
  • 1,412
  • 11
  • 23
  • Yes! I removed `-Dosgi.framework.extensions=org.eclipse.wst.jsdt.nashorn.extension` from devstudio.ini and now it's not crashing. Now I need to do some research about that extension :) – Diego Feb 08 '17 at 17:45
  • Here is the link https://wiki.eclipse.org/JSDT/Equinox_hook_for_Nashorn – dgolovin Feb 08 '17 at 17:47
0

Install in standard location (under C:\Program Files) and test again

Jeff MAURY
  • 166
  • 3
0

Could also be a problem with the spaces in your JDK path. Try using the /x (short directory) path, eg.,

  • launch CMD.exe from Windows start menu (or other launcher)
  • cd c:\
  • dir /x
  • note thatProgram Files folder is also named PROGRA~1
  • use this path as your JDK path when starting Eclipse/devstudio: c:/progra~1/java/jdk1.8.0_111/bin/javaw.exe

You could also try visualvm or jstat -- see Tool for debugging hangs in java application for more details.

The exit code itself could be a -1 followed by the processID of the process running Eclipse/devstudio.

See also:

Community
  • 1
  • 1
nickboldt
  • 732
  • 1
  • 7
  • 13