On Sun, 2 Apr 2023 09:29:40 GMT, Johan Vos <j...@openjdk.org> wrote: > do you have insight in why removing the debug flag "fixes" the problem? Are > we sure that there is not something wrong below the surface that becomes > visible in case
The problem is triggered by the generation of the PDB files. PDB files are generated either when the `/Zi` flag is added at compile time or when the `/DEBUG` flag is added at link time. This PR removes both flags. As a follow-up, we should make sure that the PDB files are generated for DebugNative builds (which are currently broken). ------------- PR Comment: https://git.openjdk.org/jfx/pull/1079#issuecomment-1494333019