-
Notifications
You must be signed in to change notification settings - Fork 132
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
winrun4j don't support 32bit EXE #395
Comments
Hi @gfek2001zz! |
Sorry, you are right. JP just distributes |
Hi again! Changes pushed into Tests64-bitJP keeps the current behaviour: <configuration>
<platform>windows</platform>
<winConfig>
<exeCreationTool>winrun4j</exeCreationTool>
</winConfig>
</configuration>
After building, you can check (using C:\Users\fvarrui\GitHub\HelloWorldMaven>sigcheck target\helloworldmaven\HelloWorldMaven.exe
Sigcheck v2.90 - File version and signature viewer
Copyright (C) 2004-2022 Mark Russinovich
Sysinternals - www.sysinternals.com
C:\Users\fvarrui\GitHub\HelloWorldMaven\target\helloworldmaven\HelloWorldMaven.exe:
Verified: Unsigned
Link date: 23:47 13/04/2013
Publisher: n/a
Company: ACME
Description: HelloWorldMaven
Product: HelloWorldMaven
Prod version: 1.0.0.0
File version: 1.0.0.0
MachineType: 64-bit And the bundled java (generated with jlink): C:\Users\fvarrui\GitHub\HelloWorldMaven>sigcheck target\HelloWorldMaven\jre\bin\server\jvm.dll
Sigcheck v2.90 - File version and signature viewer
Copyright (C) 2004-2022 Mark Russinovich
Sysinternals - www.sysinternals.com
C:\Users\fvarrui\GitHub\HelloWorldMaven\target\helloworldmaven\jre\bin\server\jvm.dll:
Verified: Signed
Signing date: 4:30 17/01/2024
Publisher: Eclipse.org Foundation, Inc.
Company: Eclipse Adoptium
Description: OpenJDK 64-Bit server VM
Product: OpenJDK Platform 21.0.2
Prod version: 21.0.2.0
File version: 21.0.2.0
MachineType: 64-bit 32-bitI have to bundle a 32-bit JRE (see <configuration>
<platform>windows</platform>
<jrePath>C:\Users\fvarrui\jdks\windows\jdk-11.0.22+7-jre</jrePath>
<arch>x86</arch>
<winConfig>
<exeCreationTool>winrun4j</exeCreationTool>
</winConfig>
</configuration>
And now, after building: C:\Users\fvarrui\GitHub\HelloWorldMaven>sigcheck target\HelloWorldMaven\HelloWorldMaven.exe
Sigcheck v2.90 - File version and signature viewer
Copyright (C) 2004-2022 Mark Russinovich
Sysinternals - www.sysinternals.com
C:\Users\fvarrui\GitHub\HelloWorldMaven\target\helloworldmaven\HelloWorldMaven.exe:
Verified: Unsigned
Link date: 23:47 13/04/2013
Publisher: n/a
Company: ACME
Description: HelloWorldMaven
Product: HelloWorldMaven
Prod version: 1.0.0.0
File version: 1.0.0.0
MachineType: 32-bit And the bundled java (copied from jrePath): C:\Users\fvarrui\GitHub\HelloWorldMaven>sigcheck target\HelloWorldMaven\jre\bin\server\jvm.dll
Sigcheck v2.90 - File version and signature viewer
Copyright (C) 2004-2022 Mark Russinovich
Sysinternals - www.sysinternals.com
C:\Users\fvarrui\GitHub\HelloWorldMaven\target\helloworldmaven\jre\bin\server\jvm.dll:
Verified: Signed
Signing date: 0:21 17/01/2024
Publisher: Eclipse.org Foundation, Inc.
Company: Eclipse Adoptium
Description: OpenJDK server VM
Product: OpenJDK 11.0.22
Prod version: 11.0.22.0
File version: 11.0.22.0
MachineType: 32-bit ReleaseJust released a snapshot version which supports WinRun4j 32-bit EXE: Please, try it and give me some feedback. |
New snapshot version released with several improvements: Now also checks if the bundled JRE matches the target architecture, preventing an invalid app from being generated. |
thanks !!! |
Branch issue-395 merged into devel, ready to be released to Maven Central asap. |
v1.7.6 released to Maven Central |
help
The text was updated successfully, but these errors were encountered: