Details
-
Bug
-
Status: Open
-
Minor
-
Resolution: Unresolved
-
9.0
-
None
Description
When starting to debug an Apache Netbeans Platform Application with a JDK9+ Runtime (on windows?) the 32-bit version of the nbexec is used to start the application. Since (nearly) all builds of Java9+ on Windows are 64-Bit only the current detection of 32 or 64 Bit JRE is not working. There is no "jre" folder is a JDK 9+
<!-- architecture of jvm on which app will run -->
<condition property="jvm.arch.string" value="64" else="">
<available file="${run.jdkhome}\jre\lib\amd64" />
</condition>
The result of this is, that no ouput from the application is shown in the output window.