gluonhq / client-samples

Client samples to run with Gluon Client plugins for Maven and Gradle
114 stars 23 forks source link

Build fails on Linux without explaining why #69

Open renatoathaydes opened 4 years ago

renatoathaydes commented 4 years ago

I have a JavaFX modular application. When I copy the pom file from the examples and adapt them to my app, it fails after a few minutes running, without a reason.

Here's the full output:

mvn client:build                                                        
[INFO] Scanning for projects...
[INFO] 
[INFO] ------------------------------------------------------------------------
[INFO] Building logfx 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- client-maven-plugin:0.1.18:build (default-cli) @ hellogluon ---
[INFO] Scanning for projects...
[INFO] 
[INFO] ------------------------------------------------------------------------
[INFO] Building logfx 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] >>> client-maven-plugin:0.1.18:compile (default-cli) > process-classes @ hellogluon >>>
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ hellogluon ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 10 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ hellogluon ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] <<< client-maven-plugin:0.1.18:compile (default-cli) < process-classes @ hellogluon <<<
[INFO] 
[INFO] 
[INFO] --- client-maven-plugin:0.1.18:compile (default-cli) @ hellogluon ---
[Fri. Apr. 03 20:44:04 CEST 2020][INFO] ==================== COMPILE TASK ====================
[Fri. Apr. 03 20:44:04 CEST 2020][INFO] We will now compile your code for x86_64-linux-linux. This may take some time.
[Fri. Apr. 03 20:44:12 CEST 2020][INFO] [SUB] [com.athaydes.logfx.logfx:14801]    classlist:   5,624.44 ms,  0.96 GB
[Fri. Apr. 03 20:44:15 CEST 2020][INFO] [SUB] [com.athaydes.logfx.logfx:14801]        (cap):   1,296.20 ms,  0.96 GB
[Fri. Apr. 03 20:44:16 CEST 2020][INFO] [SUB] [com.athaydes.logfx.logfx:14801]        setup:   3,991.68 ms,  0.96 GB
[Fri. Apr. 03 20:45:56 CEST 2020][INFO] [SUB] [com.athaydes.logfx.logfx:14801]     (clinit):   1,188.09 ms,  5.39 GB
[Fri. Apr. 03 20:45:57 CEST 2020][INFO] [SUB] [com.athaydes.logfx.logfx:14801]   (typeflow):  46,425.30 ms,  5.39 GB
[Fri. Apr. 03 20:45:57 CEST 2020][INFO] [SUB] [com.athaydes.logfx.logfx:14801]    (objects):  46,978.50 ms,  5.39 GB
[Fri. Apr. 03 20:45:57 CEST 2020][INFO] [SUB] [com.athaydes.logfx.logfx:14801]   (features):   3,087.71 ms,  5.39 GB
[Fri. Apr. 03 20:45:57 CEST 2020][INFO] [SUB] [com.athaydes.logfx.logfx:14801]     analysis: 100,525.41 ms,  5.39 GB
[Fri. Apr. 03 20:45:59 CEST 2020][INFO] [SUB] [com.athaydes.logfx.logfx:14801]     universe:   2,033.96 ms,  5.39 GB
[Fri. Apr. 03 20:46:09 CEST 2020][INFO] [SUB] [com.athaydes.logfx.logfx:14801]      (parse):   9,454.61 ms,  5.43 GB
[Fri. Apr. 03 20:46:18 CEST 2020][INFO] [SUB] Error: Image build request failed with exit status 137
[Fri. Apr. 03 20:46:18 CEST 2020][SEVERE] Process compile failed with result: 137
Check the log files under /home/renato/programming/projects/LogFX/target/client/x86_64-linux/gvm/log
And please check https://docs.gluonhq.com/client/ for more information.
[Fri. Apr. 03 20:46:18 CEST 2020][INFO] Logging process [compile] to file: /home/renato/programming/projects/LogFX/target/client/log/process-compile-1585939578178.log
[Fri. Apr. 03 20:46:18 CEST 2020][SEVERE] Compiling failed.
Check the log files under /home/renato/programming/projects/LogFX/target/client/x86_64-linux/gvm/log
And please check https://docs.gluonhq.com/client/ for more information.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 02:15 min
[INFO] Finished at: 2020-04-03T20:46:18+02:00
[INFO] Final Memory: 13M/54M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal com.gluonhq:client-maven-plugin:0.1.18:compile (default-cli) on project hellogluon: Compiling failed -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 02:18 min
[INFO] Finished at: 2020-04-03T20:46:18+02:00
[INFO] Final Memory: 10M/40M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal com.gluonhq:client-maven-plugin:0.1.18:build (default-cli) on project hellogluon: Error, client:build failed -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

The log files only contain the same information as above.

I tried compiling the HelloFXML sample as well, with the exact same result.

According to the Gluon Client docs, I need to have gcc and ld installed. Here are the versions I have:

 HelloFXML git:(master) gcc --version                                      
gcc (Ubuntu 9.2.1-9ubuntu2) 9.2.1 20191008
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

➜  HelloFXML git:(master) ld --version                                       
GNU ld (GNU Binutils for Ubuntu) 2.33
Copyright (C) 2019 Free Software Foundation, Inc.
This program is free software; you may redistribute it under the terms of
the GNU General Public License version 3 or (at your option) a later version.
This program has absolutely no warranty.

My OS:

uname -a
Linux renato 5.3.0-45-generic #37-Ubuntu SMP Thu Mar 26 20:41:27 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux

The GraalVM installation:

java --version
openjdk 11.0.5 2019-10-15
OpenJDK Runtime Environment (build 11.0.5+10-jvmci-19.3-b05-LTS)
OpenJDK 64-Bit Server VM GraalVM 20.1.0-dev (build 11.0.5+10-jvmci-19.3-b05-LTS, mixed mode, sharing)
renatoathaydes commented 4 years ago

Here's the log file contents from the HelloFX project build:

[Fri. Apr. 03 20:50:33 CEST 2020][INFO] ==================== COMPILE TASK ====================
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] PB Command for check version: /home/renato/programming/programs/graalvm-svm-linux-20.1.0-ea+26/bin/java -version
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Start process check version...
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] [SUB] openjdk version "11.0.5" 2019-10-15
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] [SUB] OpenJDK Runtime Environment (build 11.0.5+10-jvmci-19.3-b05-LTS)
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] [SUB] OpenJDK 64-Bit Server VM GraalVM 20.1.0-dev (build 11.0.5+10-jvmci-19.3-b05-LTS, mixed mode, sharing)
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Result for check version: 0
[Fri. Apr. 03 20:50:33 CEST 2020][INFO] We will now compile your code for x86_64-linux-linux. This may take some time.
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Extracting native libs to: /home/renato/programming/projects/client-samples/Maven/HelloFXML/target/client/x86_64-linux/gvm/lib
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Looking for resource: /native/linux/launcher.c
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] PB Command for compile-additional-sources: gcc -c -I/home/renato/programming/programs/graalvm-svm-linux-20.1.0-ea+26/include -I/home/renato/programming/programs/graalvm-svm-linux-20.1.0-ea+26/include/linux -I/home/renato/programming/projects/client-samples/Maven/HelloFXML/target/client/x86_64-linux/gvm/hellofxml launcher.c
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Start process compile-additional-sources...
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] [SUB] launcher.c: In function ‘main’:
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] [SUB] launcher.c:37:20: warning: passing argument 2 of ‘run_main’ from incompatible pointer type [-Wincompatible-pointer-types]
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] [SUB]    37 |     (*run_main)(1, args);
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] [SUB]       |                    ^~~~
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] [SUB]       |                    |
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] [SUB]       |                    const char **
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] [SUB] launcher.c:30:13: note: expected ‘char **’ but argument is of type ‘const char **’
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] [SUB]    30 | extern int *run_main(int argc, char* argv[]);
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] [SUB]       |             ^~~~~~~~
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Result for compile-additional-sources: 0
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] PB Command for jar: jar cf /tmp/classes8018353089924663773/classes.jar -C /home/renato/programming/projects/client-samples/Maven/HelloFXML/target/classes .
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Start process jar...
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Result for jar: 0
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning for init build time files
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-base.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-base.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-controls.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-controls.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.m2/repository/org/openjfx/javafx-fxml/13.0.1/javafx-fxml-13.0.1-linux.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.m2/repository/org/openjfx/javafx-fxml/13.0.1/javafx-fxml-13.0.1.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /tmp/classes8018353089924663773/classes.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning for reflection files
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-base.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Adding classes from /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-base.jar::META-INF/substrate/config/reflectionconfig.json
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-base.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Adding classes from /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-base.jar::META-INF/substrate/config/reflectionconfig.json
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-controls.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Adding classes from /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-controls.jar::META-INF/substrate/config/reflectionconfig.json
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-controls.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Adding classes from /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-controls.jar::META-INF/substrate/config/reflectionconfig.json
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.m2/repository/org/openjfx/javafx-fxml/13.0.1/javafx-fxml-13.0.1-linux.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.m2/repository/org/openjfx/javafx-fxml/13.0.1/javafx-fxml-13.0.1.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Adding classes from /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar::META-INF/substrate/config/reflectionconfig.json
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Adding classes from /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar::META-INF/substrate/config/reflectionconfig-x86_64-linux.json
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Adding classes from /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar::META-INF/substrate/config/reflectionconfig.json
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Adding classes from /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar::META-INF/substrate/config/reflectionconfig-x86_64-linux.json
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /tmp/classes8018353089924663773/classes.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning for JNI files
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-base.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-base.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-controls.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-controls.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.m2/repository/org/openjfx/javafx-fxml/13.0.1/javafx-fxml-13.0.1-linux.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.m2/repository/org/openjfx/javafx-fxml/13.0.1/javafx-fxml-13.0.1.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Adding classes from /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar::META-INF/substrate/config/jniconfig.json
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Adding classes from /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar::META-INF/substrate/config/jniconfig-x86_64-linux.json
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Adding classes from /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar::META-INF/substrate/config/jniconfig.json
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Adding classes from /home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar::META-INF/substrate/config/jniconfig-x86_64-linux.json
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Scanning /tmp/classes8018353089924663773/classes.jar
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] PB Command for compile: /home/renato/programming/programs/graalvm-svm-linux-20.1.0-ea+26/bin/native-image --report-unsupported-elements-at-runtime -Djdk.internal.lambda.eagerlyInitialize=false --no-server -H:+ExitAfterRelocatableImageWrite -H:+SharedLibrary -H:+AddAllCharsets --features=org.graalvm.home.HomeFinderFeature -H:TempDirectory=/home/renato/programming/projects/client-samples/Maven/HelloFXML/target/client/x86_64-linux/gvm/tmp -H:EnableURLProtocols=http,https -H:ReflectionConfigurationFiles=/home/renato/programming/projects/client-samples/Maven/HelloFXML/target/client/x86_64-linux/gvm/reflectionconfig-x86_64-linux.json -H:JNIConfigurationFiles=/home/renato/programming/projects/client-samples/Maven/HelloFXML/target/client/x86_64-linux/gvm/jniconfig-x86_64-linux.json -H:ResourceConfigurationFiles=/home/renato/programming/projects/client-samples/Maven/HelloFXML/target/client/x86_64-linux/gvm/resourceconfig-x86_64-linux.json -H:IncludeResourceBundles=hellofx.hello,com/sun/javafx/scene/control/skin/resources/controls,com.sun.javafx.tk.quantum.QuantumMessagesBundle -Dsvm.platform=org.graalvm.nativeimage.Platform$LINUX_AMD64 -cp /home/renato/programming/projects/client-samples/Maven/HelloFXML/target/classes:/home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-base.jar:/home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-base.jar:/home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-controls.jar:/home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-controls.jar:/home/renato/.m2/repository/org/openjfx/javafx-fxml/13.0.1/javafx-fxml-13.0.1-linux.jar:/home/renato/.m2/repository/org/openjfx/javafx-fxml/13.0.1/javafx-fxml-13.0.1.jar:/home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar:/home/renato/.gluon/substrate/javafxStaticSdk/15-ea+gvm16/linux-x86_64/sdk/lib/javafx-graphics.jar hellofx.HelloFXML
[Fri. Apr. 03 20:50:33 CEST 2020][FINE] Start process compile...
[Fri. Apr. 03 20:50:40 CEST 2020][INFO] [SUB] [hellofx.hellofxml:15296]    classlist:   5,554.65 ms,  0.96 GB
[Fri. Apr. 03 20:50:42 CEST 2020][INFO] [SUB] [hellofx.hellofxml:15296]        (cap):   1,063.56 ms,  0.96 GB
[Fri. Apr. 03 20:50:44 CEST 2020][INFO] [SUB] [hellofx.hellofxml:15296]        setup:   3,611.03 ms,  0.96 GB
[Fri. Apr. 03 20:52:21 CEST 2020][INFO] [SUB] [hellofx.hellofxml:15296]     (clinit):   1,516.77 ms,  5.07 GB
[Fri. Apr. 03 20:52:22 CEST 2020][INFO] [SUB] [hellofx.hellofxml:15296]   (typeflow):  54,279.83 ms,  5.07 GB
[Fri. Apr. 03 20:52:22 CEST 2020][INFO] [SUB] [hellofx.hellofxml:15296]    (objects):  35,606.61 ms,  5.07 GB
[Fri. Apr. 03 20:52:22 CEST 2020][INFO] [SUB] [hellofx.hellofxml:15296]   (features):   3,428.23 ms,  5.07 GB
[Fri. Apr. 03 20:52:22 CEST 2020][INFO] [SUB] [hellofx.hellofxml:15296]     analysis:  98,484.09 ms,  5.07 GB
[Fri. Apr. 03 20:52:24 CEST 2020][INFO] [SUB] [hellofx.hellofxml:15296]     universe:   2,107.50 ms,  5.07 GB
[Fri. Apr. 03 20:52:34 CEST 2020][INFO] [SUB] [hellofx.hellofxml:15296]      (parse):   9,611.44 ms,  5.11 GB
[Fri. Apr. 03 20:52:42 CEST 2020][INFO] [SUB] [hellofx.hellofxml:15296]     (inline):   7,444.80 ms,  5.31 GB
[Fri. Apr. 03 20:52:49 CEST 2020][INFO] [SUB] Error: Image build request failed with exit status 137
[Fri. Apr. 03 20:52:49 CEST 2020][FINE] Result for compile: 137
[Fri. Apr. 03 20:52:49 CEST 2020][SEVERE] Process compile failed with result: 137
Check the log files under /home/renato/programming/projects/client-samples/Maven/HelloFXML/target/client/x86_64-linux/gvm/log
And please check https://docs.gluonhq.com/client/ for more information.
[Fri. Apr. 03 20:52:49 CEST 2020][INFO] Logging process [compile] to file: /home/renato/programming/projects/client-samples/Maven/HelloFXML/target/client/log/process-compile-1585939969637.log
[Fri. Apr. 03 20:52:49 CEST 2020][SEVERE] Compiling failed.
Check the log files under /home/renato/programming/projects/client-samples/Maven/HelloFXML/target/client/x86_64-linux/gvm/log
And please check https://docs.gluonhq.com/client/ for more information.