Re: RFR: 8257512: Remove use of deprecated primitive constructors in JavaFX [v4]

2021-03-10 Thread Ambarish Rapte
> The following primitive constructors were deprecated in JDK 9 and are > deprecated for removal in JDK 16. > > java.lang.Byte > java.lang.Short > java.lang.Integer > java.lang.Long > java.lang.Float > java.lang.Double > java.lang.Character > java.lang.Boolean > > This change removes call to

Re: RFR: 8257512: Remove use of deprecated primitive constructors in JavaFX [v3]

2021-03-10 Thread Ambarish Rapte
On Thu, 11 Mar 2021 00:29:41 GMT, Nir Lisker wrote: >> Ambarish Rapte has updated the pull request incrementally with one >> additional commit since the last revision: >> >> correct Float.valueOf() > > modules/javafx.graphics/src/main/java/com/sun/prism/es2/X11GLFactory.java > line 171: >

Re: RFR: 8257512: Remove use of deprecated primitive constructors in JavaFX [v3]

2021-03-10 Thread Ambarish Rapte
On Wed, 10 Mar 2021 23:59:05 GMT, Nir Lisker wrote: >> Ambarish Rapte has updated the pull request incrementally with one >> additional commit since the last revision: >> >> correct Float.valueOf() > > apps/toys/LayoutDemo/src/layout/CustomPane.java line 92: > >> 90:

Re: RFR: 8257512: Remove use of deprecated primitive constructors in JavaFX [v3]

2021-03-10 Thread Ambarish Rapte
On Thu, 11 Mar 2021 00:18:17 GMT, Nir Lisker wrote: >> Ambarish Rapte has updated the pull request incrementally with one >> additional commit since the last revision: >> >> correct Float.valueOf() > > modules/javafx.base/src/test/java/test/javafx/util/DurationTest.java line 289: > >> 287:

Re: RFR: 8257895: Allow building of JavaFX media libs for Apple Silicon [v2]

2021-03-10 Thread Alexander Matveev
> - Added support to compile media on arm. > - libffi is based on 3.3. Alexander Matveev has updated the pull request incrementally with one additional commit since the last revision: 8257895: Allow building of JavaFX media libs for Apple Silicon [v2] - Changes: - all:

Re: RFR: 8257895: Allow building of JavaFX media libs for Apple Silicon [v2]

2021-03-10 Thread Alexander Matveev
On Wed, 10 Mar 2021 23:46:39 GMT, Kevin Rushforth wrote: >> Alexander Matveev has updated the pull request incrementally with one >> additional commit since the last revision: >> >> 8257895: Allow building of JavaFX media libs for Apple Silicon [v2] > > This breaks the build on Windows. > >

Re: RFR: 8257512: Remove use of deprecated primitive constructors in JavaFX [v3]

2021-03-10 Thread Ambarish Rapte
On Thu, 11 Mar 2021 00:23:48 GMT, Nir Lisker wrote: >> Ambarish Rapte has updated the pull request incrementally with one >> additional commit since the last revision: >> >> correct Float.valueOf() > > modules/javafx.controls/src/test/java/test/javafx/scene/chart/XYChartTest.java > line 85:

Re: RFR: 8257512: Remove use of deprecated primitive constructors in JavaFX [v3]

2021-03-10 Thread Ambarish Rapte
On Thu, 11 Mar 2021 00:12:25 GMT, Nir Lisker wrote: >> Ambarish Rapte has updated the pull request incrementally with one >> additional commit since the last revision: >> >> correct Float.valueOf() > > modules/javafx.base/src/test/java/test/com/sun/javafx/collections/MappingChangeTest.java >

Re: RFR: 8257512: Remove use of deprecated primitive constructors in JavaFX [v3]

2021-03-10 Thread Ambarish Rapte
On Thu, 11 Mar 2021 00:26:38 GMT, Nir Lisker wrote: >> Ambarish Rapte has updated the pull request incrementally with one >> additional commit since the last revision: >> >> correct Float.valueOf() > > modules/javafx.controls/src/test/java/test/javafx/scene/control/ComboBoxTest.java > line

Re: RFR: 8257512: Remove use of deprecated primitive constructors in JavaFX [v3]

2021-03-10 Thread Ambarish Rapte
On Thu, 11 Mar 2021 00:41:48 GMT, Nir Lisker wrote: >> Ambarish Rapte has updated the pull request incrementally with one >> additional commit since the last revision: >> >> correct Float.valueOf() > > modules/javafx.web/src/ios/java/javafx/scene/web/JSONDecoder.java line 101: > >> 99:

Re: RFR: 8257512: Remove use of deprecated primitive constructors in JavaFX [v3]

2021-03-10 Thread Nir Lisker
On Wed, 10 Mar 2021 19:49:25 GMT, Ambarish Rapte wrote: >> The following primitive constructors were deprecated in JDK 9 and are >> deprecated for removal in JDK 16. >> >> java.lang.Byte >> java.lang.Short >> java.lang.Integer >> java.lang.Long >> java.lang.Float >> java.lang.Double >>

Re: RFR: 8257895: Allow building of JavaFX media libs for Apple Silicon

2021-03-10 Thread Kevin Rushforth
On Fri, 26 Feb 2021 03:58:17 GMT, Alexander Matveev wrote: > - Added support to compile media on arm. > - libffi is based on 3.3. This breaks the build on Windows. cl.exe -DFFI_BUILDING -DGSTREAMER_LITE -I../../../3rd_party/libffi/include -I../../../3rd_party/libffi/include/win/x64 -nologo

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v4]

2021-03-10 Thread Kevin Rushforth
On Wed, 10 Mar 2021 22:35:31 GMT, Florian Kirmaier wrote: >> Fixing deadlock when calling Application.launch in the FXThread after >> Platform.startup > > Florian Kirmaier has updated the pull request incrementally with one > additional commit since the last revision: > > JDK-8263322 >

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v4]

2021-03-10 Thread Florian Kirmaier
On Wed, 10 Mar 2021 22:40:26 GMT, Kevin Rushforth wrote: >> I've now added the new Exception to the JavaDoc of the Application. > > The API spec changes look good. You can add that to the Specification section > of the CSR. You can either paste the diffs for the javadoc comments, or else >

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v4]

2021-03-10 Thread Kevin Rushforth
On Wed, 10 Mar 2021 22:32:26 GMT, Florian Kirmaier wrote: >> Regarding the CSR, it is only concerned with the public API, including the >> specification (javadoc-generated API documentation), and any behavioral >> changes. >> >> You can leave the CSR in the Draft state until there is

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v4]

2021-03-10 Thread Florian Kirmaier
On Wed, 10 Mar 2021 22:10:04 GMT, Kevin Rushforth wrote: >>> About the CSR: >>> This commit actually restores original behavior, when JavaFX was called >>> with Application.launch, so it's not really a change in the API, it's more >>> like a fix for a regression. >> >> Not quite. See my

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v3]

2021-03-10 Thread Florian Kirmaier
On Wed, 10 Mar 2021 22:03:52 GMT, Kevin Rushforth wrote: >> Florian Kirmaier has updated the pull request incrementally with three >> additional commits since the last revision: >> >> - JDK-8263322 >>removed unused imports, added missing change >> - JDK-8263322 >>Updated the

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v4]

2021-03-10 Thread Florian Kirmaier
> Fixing deadlock when calling Application.launch in the FXThread after > Platform.startup Florian Kirmaier has updated the pull request incrementally with one additional commit since the last revision: JDK-8263322 updated the javadoc to mention the new case. - Changes: -

Re: RFR: 8263402: MemoryLeak: Node hardreferences it's previous Parent after csslayout and getting removed from the scene

2021-03-10 Thread Kevin Rushforth
On Wed, 10 Mar 2021 22:25:32 GMT, Florian Kirmaier wrote: > Fixing a memory leak. > A node hard references its old parent after CSS layout and getting removed. > This shouldn't be the case, this is very counterintuitive. > > The fix uses a WeakReference in CSSStyleHelper for

RFR: 8263402: MemoryLeak: Node hardreferences it's previous Parent after csslayout and getting removed from the scene

2021-03-10 Thread Florian Kirmaier
Fixing a memory leak. A node hard references its old parent after CSS layout and getting removed. This shouldn't be the case, this is very counterintuitive. The fix uses a WeakReference in CSSStyleHelper for firstStyleableAncestor. This should be fine because the CSS should only depend on it if

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v3]

2021-03-10 Thread Kevin Rushforth
On Wed, 10 Mar 2021 17:30:21 GMT, Kevin Rushforth wrote: >> About the CSR: >> This commit actually restores original behavior, when JavaFX was called with >> Application.launch, so it's not really a change in the API, it's more like a >> fix for a regression. >> How would I create a CSR? Just

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v3]

2021-03-10 Thread Kevin Rushforth
On Wed, 10 Mar 2021 21:54:32 GMT, Florian Kirmaier wrote: >> Fixing deadlock when calling Application.launch in the FXThread after >> Platform.startup > > Florian Kirmaier has updated the pull request incrementally with three > additional commits since the last revision: > > - JDK-8263322 >

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v3]

2021-03-10 Thread Florian Kirmaier
> Fixing deadlock when calling Application.launch in the FXThread after > Platform.startup Florian Kirmaier has updated the pull request incrementally with three additional commits since the last revision: - JDK-8263322 removed unused imports, added missing change - JDK-8263322 Updated

Re: RFR: 8257512: Remove use of deprecated primitive constructors in JavaFX [v3]

2021-03-10 Thread Kevin Rushforth
On Wed, 10 Mar 2021 19:49:25 GMT, Ambarish Rapte wrote: >> The following primitive constructors were deprecated in JDK 9 and are >> deprecated for removal in JDK 16. >> >> java.lang.Byte >> java.lang.Short >> java.lang.Integer >> java.lang.Long >> java.lang.Float >> java.lang.Double >>

Re: RFR: 8257512: Remove use of deprecated primitive constructors in JavaFX [v3]

2021-03-10 Thread Kevin Rushforth
On Wed, 10 Mar 2021 19:37:51 GMT, Kevin Rushforth wrote: >> Ambarish Rapte has updated the pull request incrementally with one >> additional commit since the last revision: >> >> correct Float.valueOf() > > Looks good with a couple problems (in code that we must not be building) > noted

Re: RFR: 8257512: Remove use of deprecated primitive constructors in JavaFX [v3]

2021-03-10 Thread Ambarish Rapte
> The following primitive constructors were deprecated in JDK 9 and are > deprecated for removal in JDK 16. > > java.lang.Byte > java.lang.Short > java.lang.Integer > java.lang.Long > java.lang.Float > java.lang.Double > java.lang.Character > java.lang.Boolean > > This change removes call to

Re: RFR: 8257512: Remove use of deprecated primitive constructors in JavaFX [v2]

2021-03-10 Thread Kevin Rushforth
On Wed, 10 Mar 2021 19:24:22 GMT, Ambarish Rapte wrote: >> The following primitive constructors were deprecated in JDK 9 and are >> deprecated for removal in JDK 16. >> >> java.lang.Byte >> java.lang.Short >> java.lang.Integer >> java.lang.Long >> java.lang.Float >> java.lang.Double >>

Re: RFR: 8257512: Remove use of deprecated primitive constructors in JavaFX [v2]

2021-03-10 Thread Ambarish Rapte
> The following primitive constructors were deprecated in JDK 9 and are > deprecated for removal in JDK 16. > > java.lang.Byte > java.lang.Short > java.lang.Integer > java.lang.Long > java.lang.Float > java.lang.Double > java.lang.Character > java.lang.Boolean > > This change removes call to

Re: RFR: 8260528: Clean glass-gtk sizing and positioning code [v25]

2021-03-10 Thread Thiago Milczarek Sayao
> This is a new approach to rewrite parts of gtk glass backend to be more clean. > > I will provide small "manageable" PR to incrementally make the backend better. > > This PR adresses cleanup of the Size and Positioning code. It makes code more > "straightforward" and easier to maintain. > >

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v2]

2021-03-10 Thread Kevin Rushforth
On Wed, 10 Mar 2021 16:42:41 GMT, Florian Kirmaier wrote: > About the CSR: > This commit actually restores original behavior, when JavaFX was called with > Application.launch, so it's not really a change in the API, it's more like a > fix for a regression. Not quite. See my reply above. >

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v2]

2021-03-10 Thread Kevin Rushforth
On Wed, 10 Mar 2021 17:24:47 GMT, Kevin Rushforth wrote: >> `Initalize the FX runtime via Platform.startup and then launch an >> Application on another thread (should succeed)` >> I don't think that should succeed. I would expect it to throw an exception. >> If that would be the case, then

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v2]

2021-03-10 Thread Kevin Rushforth
On Wed, 10 Mar 2021 17:00:41 GMT, Florian Kirmaier wrote: > Initalize the FX runtime via Platform.startup and then launch an Application > on another thread (should succeed) I don't think that should succeed. I would expect it to throw an exception. If that would be the case, then both

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v2]

2021-03-10 Thread Kevin Rushforth
On Wed, 10 Mar 2021 15:29:37 GMT, Florian Kirmaier wrote: > Contribution.MD states, that it's automatically checked for whitespace > errors? Is this not true? Yes, Skara's jcheck does basic sanity checking (tabs, trailing white space, line endings). Why do you ask? I didn't raise this as a

RFR: 8257512: Remove use of deprecated primitive constructors in JavaFX

2021-03-10 Thread Ambarish Rapte
The following primitive constructors were deprecated in JDK 9 and are deprecated for removal in JDK 16. java.lang.Byte java.lang.Short java.lang.Integer java.lang.Long java.lang.Float java.lang.Double java.lang.Character java.lang.Boolean This change removes call to the primitive constructors

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v2]

2021-03-10 Thread Florian Kirmaier
On Wed, 10 Mar 2021 16:01:42 GMT, Florian Kirmaier wrote: >> tests/system/src/test/java/test/javafx/scene/InitializeJavaFXTest.java line >> 65: >> >>> 63: } catch (Exception e) { >>> 64: System.out.println("got exception: " + e); >>> 65:

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v2]

2021-03-10 Thread Florian Kirmaier
On Wed, 10 Mar 2021 16:42:41 GMT, Florian Kirmaier wrote: >> I forgot to commit a part of the fix, which is why the second test hang. >> It's now part of the PR. > > About the CSR: > This commit actually restores original behavior, when JavaFX was called with > Application.launch, so it's not

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v2]

2021-03-10 Thread Florian Kirmaier
On Wed, 10 Mar 2021 16:23:53 GMT, Florian Kirmaier wrote: >> Contribution.MD states, that it's automatically checked for whitespace >> errors? Is this not true? >> >> As a clarification, this PR restores the previous behavior before >> Platform.startup. With this PR Application.launch and

Re: CFV: New OpenJFX Committer: John Neffenger

2021-03-10 Thread Arun Joseph
Vote: YES — Arun Joseph > On 10-Mar-2021, at 5:27 PM, Kevin Rushforth > wrote: > > I hereby nominate John Neffenger [1] to OpenJFX Committer. > > John is an OpenJFX community member, who has contributed 10 commits [2] to > OpenJFX. > > Votes are due by March 24, 2021 at 12:00 UTC. > >

Re: CFV: New OpenJFX Committer: John Neffenger

2021-03-10 Thread José Pereda
Vote: YES Jose On Wed, Mar 10, 2021 at 12:57 PM Kevin Rushforth wrote: > I hereby nominate John Neffenger [1] to OpenJFX Committer. > > John is an OpenJFX community member, who has contributed 10 commits [2] > to OpenJFX. > > Votes are due by March 24, 2021 at 12:00 UTC. > > Only current

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v2]

2021-03-10 Thread Florian Kirmaier
On Wed, 10 Mar 2021 13:15:43 GMT, Kevin Rushforth wrote: >> Florian Kirmaier has updated the pull request incrementally with three >> additional commits since the last revision: >> >> - JDK-8263322 >>Added missing change >> - JDK-8263322 >>Small changes based on code review >> -

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v2]

2021-03-10 Thread Florian Kirmaier
On Wed, 10 Mar 2021 15:29:37 GMT, Florian Kirmaier wrote: >>> * Initalize the FX runtime via Platform.startup and then launch an >>> Application on another thread (should throw ISE) >> >> That should be: >> >> * Initalize the FX runtime via Platform.startup and then launch an >> Application

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v2]

2021-03-10 Thread Florian Kirmaier
On Wed, 10 Mar 2021 13:50:02 GMT, Kevin Rushforth wrote: >> Florian Kirmaier has updated the pull request incrementally with three >> additional commits since the last revision: >> >> - JDK-8263322 >>Added missing change >> - JDK-8263322 >>Small changes based on code review >> -

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup [v2]

2021-03-10 Thread Florian Kirmaier
> Fixing deadlock when calling Application.launch in the FXThread after > Platform.startup Florian Kirmaier has updated the pull request incrementally with three additional commits since the last revision: - JDK-8263322 Added missing change - JDK-8263322 Small changes based on code

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup

2021-03-10 Thread Florian Kirmaier
On Wed, 10 Mar 2021 13:19:03 GMT, Kevin Rushforth wrote: >> Fixing deadlock when calling Application.launch in the FXThread after >> Platform.startup > > tests/system/src/test/java/test/javafx/scene/InitializeJavaFXTest.java line > 65: > >> 63: } catch (Exception e) { >> 64:

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup

2021-03-10 Thread Florian Kirmaier
On Wed, 10 Mar 2021 13:14:15 GMT, Kevin Rushforth wrote: >> Fixing deadlock when calling Application.launch in the FXThread after >> Platform.startup > > tests/system/src/test/java/test/javafx/scene/InitializeJavaFXTest.java line > 24: > >> 22: } >> 23: >> 24: public static void

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup

2021-03-10 Thread Florian Kirmaier
On Wed, 10 Mar 2021 14:17:57 GMT, Kevin Rushforth wrote: >> The idea behind the fix is good. A few changes are needed: >> >> 1. The check should be split into two separate `if` statements, each with >> their own error message (see inline). >> >> 2. This should be documented in the API docs

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup

2021-03-10 Thread Kevin Rushforth
On Wed, 10 Mar 2021 13:54:14 GMT, Kevin Rushforth wrote: > * Initalize the FX runtime via Platform.startup and then launch an > Application on another thread (should throw ISE) That should be: * Initalize the FX runtime via Platform.startup and then launch an Application on the FX

Re: RFR: 8263322: Deadlock when calling Application.launch in the FXThread after Platform.startup

2021-03-10 Thread Kevin Rushforth
On Tue, 9 Mar 2021 21:49:36 GMT, Florian Kirmaier wrote: > Fixing deadlock when calling Application.launch in the FXThread after > Platform.startup The idea behind the fix is good. A few changes are needed: 1. The check should be split into two separate `if` statements, each with their own

Re: CFV: New OpenJFX Committer: John Neffenger

2021-03-10 Thread Jeanette Winzenburg
Vote: YES Zitat von Kevin Rushforth : I hereby nominate John Neffenger [1] to OpenJFX Committer. John is an OpenJFX community member, who has contributed 10 commits [2] to OpenJFX. Votes are due by March 24, 2021 at 12:00 UTC. Only current OpenJFX Committers [3] are eligible to vote on

Re: CFV: New OpenJFX Committer: John Neffenger

2021-03-10 Thread Guru Prasad H B
Vote: yes Thanks, Guru > On 10-Mar-2021, at 5:27 PM, Kevin Rushforth > wrote: > > I hereby nominate John Neffenger [1] to OpenJFX Committer. > > John is an OpenJFX community member, who has contributed 10 commits [2] to > OpenJFX. > > Votes are due by March 24, 2021 at 12:00 UTC. > > Only

Integrated: 8206253: No/Wrong scroll events from touch input in window mode

2021-03-10 Thread Jose Pereda
On Mon, 8 Mar 2021 23:43:10 GMT, Jose Pereda wrote: > This PR changes the parameter names to accommodate class calculations related > to screen event coordinates (AbsX, AbsY). > > As >

Re: RFR: 8206253: No/Wrong scroll events from touch input in window mode [v2]

2021-03-10 Thread Johan Vos
On Tue, 9 Mar 2021 18:51:22 GMT, Jose Pereda wrote: >> This PR changes the parameter names to accommodate class calculations >> related to screen event coordinates (AbsX, AbsY). >> >> As >>

Re: RFR: 8206253: No/Wrong scroll events from touch input in window mode [v2]

2021-03-10 Thread Johan Vos
On Tue, 9 Mar 2021 18:48:49 GMT, Jose Pereda wrote: >> Yes, that makes sense. >> >> We could refactor the three `sendScrollXXXEvent` methods to something like: >> >> sendScrollXXXEvent(double xAbs, double yAbs, int touchCount) >> or to: >> >> sendScrollXXXEvent(double x, double y, double

Re: RFR: 8206253: No/Wrong scroll events from touch input in window mode [v2]

2021-03-10 Thread Kevin Rushforth
On Tue, 9 Mar 2021 18:51:22 GMT, Jose Pereda wrote: >> This PR changes the parameter names to accommodate class calculations >> related to screen event coordinates (AbsX, AbsY). >> >> As >>

Re: CFV: New OpenJFX Committer: John Neffenger

2021-03-10 Thread Nir Lisker
Vote: YES On Wed, Mar 10, 2021 at 2:04 PM Kevin Rushforth wrote: > Vote: YES > > -- Kevin > > > On 3/10/2021 3:57 AM, Kevin Rushforth wrote: > > I hereby nominate John Neffenger [1] to OpenJFX Committer. > >

Re: CFV: New OpenJFX Committer: John Neffenger

2021-03-10 Thread Kevin Rushforth
Vote: YES -- Kevin On 3/10/2021 3:57 AM, Kevin Rushforth wrote: I hereby nominate John Neffenger [1] to OpenJFX Committer.

Re: CFV: New OpenJFX Committer: John Neffenger

2021-03-10 Thread Johan Vos
Vote: yes On Wed, Mar 10, 2021 at 12:58 PM Kevin Rushforth wrote: > I hereby nominate John Neffenger [1] to OpenJFX Committer. > > John is an OpenJFX community member, who has contributed 10 commits [2] > to OpenJFX. > > Votes are due by March 24, 2021 at 12:00 UTC. > > Only current OpenJFX

CFV: New OpenJFX Committer: John Neffenger

2021-03-10 Thread Kevin Rushforth
I hereby nominate John Neffenger [1] to OpenJFX Committer. John is an OpenJFX community member, who has contributed 10 commits [2] to OpenJFX. Votes are due by March 24, 2021 at 12:00 UTC. Only current OpenJFX Committers [3] are eligible to vote on this nomination. Votes must be cast in the

Re: RFR: 8262276: Debug build of WebKit fails

2021-03-10 Thread PrimosK
On Tue, 9 Mar 2021 15:46:06 GMT, Arun Joseph wrote: >> I think this is actually a lack of physical memory. I was doing tests inside >> Windows Sandbox which has 4GB of memory by default. >> >> After repeating the build procedure inside VM with 16GB of memory the build >> succeeded. >> >>