-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
improved performance and native compilation by use of GraalVM #149
Comments
Successfully generated exe file in windows. ANd tested it by setting benchmark file as main file.
Generated manifest with main class c:\temp\nativecompiler>native-image -jar neqsim-2.2.3.jar Printing build artifacts to: c:\temp\nativecompiler\neqsim-2.2.3.build_artifacts.txt[neqsim-2.2.3:11664] classlist: 2,028.63 ms, 0.96 GB Printing build artifacts to: C:\temp\nativecompiler\neqsim-2.2.3.build_artifacts.txtWarning: Image 'neqsim-2.2.3' is a fallback image that requires a JDK for execution (use --no-fallback to suppress fallback image generation and to print more detailed information why a fallback image was necessary). c:\temp\nativecompiler>dir Directory of c:\temp\nativecompiler 06/01/2022 23:32 .06/01/2022 23:32 .. 06/01/2022 23:32 34 neqsim-2.2.3.build_artifacts.txt 06/01/2022 23:32 11,430,912 neqsim-2.2.3.exe 06/01/2022 23:28 73,997,557 neqsim-2.2.3.jar 3 File(s) 85,428,503 bytes 2 Dir(s) 89,217,228,800 bytes free c:\temp\nativecompiler>neqsim-2.2.3.exe |
Did not successfully create a windows dll. Any idea what is the problem? c:\temp\nativecompiler>native-image -jar neqsim-2.2.3.jar --shared Warning: Use -H:+ReportExceptionStackTraces to print stacktrace of underlying exception Printing build artifacts to: c:\temp\nativecompiler\neqsim-2.2.3.build_artifacts.txt[neqsim-2.2.3:26184] classlist: 1,948.35 ms, 0.96 GB Printing build artifacts to: C:\temp\nativecompiler\neqsim-2.2.3.build_artifacts.txtWarning: Image 'neqsim-2.2.3' is a fallback image that requires a JDK for execution (use --no-fallback to suppress fallback image generation and to print more detailed information why a fallback image was necessary). |
successfull when remving mysql and access related libraries from pom:
c:\temp\nativecompiler>native-image -jar neqsim-2.2.3.jar --shared Printing build artifacts to: c:\temp\nativecompiler\neqsim-2.2.3.build_artifacts.txtc:\temp\nativecompiler>dir Directory of c:\temp\nativecompiler 07/01/2022 00:13 .07/01/2022 00:13 .. 06/01/2022 23:33 694 derby.log 07/01/2022 00:13 4,895 graal_isolate.h 07/01/2022 00:13 5,007 graal_isolate_dynamic.h 07/01/2022 00:13 190 neqsim-2.2.3.build_artifacts.txt 07/01/2022 00:13 18,650,624 neqsim-2.2.3.dll 07/01/2022 00:06 11,430,912 neqsim-2.2.3.exe 07/01/2022 00:13 277 neqsim-2.2.3.h 07/01/2022 00:11 60,250,590 neqsim-2.2.3.jar 07/01/2022 00:13 186,690 neqsim-2.2.3.lib 07/01/2022 00:13 317 neqsim-2.2.3_dynamic.h 15/12/2021 10:14 43,304 sunmscapi.dll 11 File(s) 90,573,500 bytes 2 Dir(s) 88,307,712,000 bytes free |
this seems to work ok to compile executable and linked library on Windows. To be checked on a linux/unix/mac. |
Updated documentation for how to use parameter database in MySQL or MS Access. |
Can improved performance be obtained by using the GaalVM and possibly compile to native libraries? https://www.graalvm.org/
See how to do it using maven:
https://www.graalvm.org/reference-manual/native-image/
The text was updated successfully, but these errors were encountered: