Add new comment

Generating for Mac ok but when I codesign the executable

hi

I'm using Jar2Exe fine in most cases but have hit a slight problem when generating for "mac" and applying codesigning to the executable.

to codesign I run

          codesign -s "MyCompanyID" ./MyAppExecutable

But when I run this I get

$ ./MyAppExecutable

Error occurred during initialization of VM
java.lang.Error: java.lang.ClassNotFoundException: com.regexlab.j2e.Jar2ExeClassLoader
           at java.lang.ClassLoader.initSystemClassLoader(ClassLoader.java:1469)
           at java.lang.ClassLoader.getSystemClassLoader(ClassLoader.java:1436)
Caused by: java.lang.ClassNotFoundException: com.regexlab.j2e.Jar2ExeClassLoader
           at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
           at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
           at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:338)
           at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
           at java.lang.Class.forName0(Native Method)
           at java.lang.Class.forName(Class.java:348)
           at java.lang.SystemClassLoaderAction.run(ClassLoader.java:2209)
           at java.lang.SystemClassLoaderAction.run(ClassLoader.java:2195)
           at java.security.AccessController.doPrivileged(Native Method)
           at java.lang.ClassLoader.initSystemClassLoader(ClassLoader.java:1456)
           at java.lang.ClassLoader.getSystemClassLoader(ClassLoader.java:1436)

I have  "/checksum:false" set already BTW.

Is there a way round this ?  I'm sensing there is some overlap in how Jar2Exe and codesign define the executable header info.

Thanks