how to convert a jar to dll, the jar depending on multi jars

jojo picture jojo · Dec 15, 2010 · Viewed 7.1k times · Source

Hi i try to use ikvmc (http://www.ikvm.net/) to conver a jar to a dll

the jar is :

http://dl.dropbox.com/u/284185/dartapi.jar

but that jar depends on multi jars as well,

http://dl.dropbox.com/u/284185/lib.zip

what command should i use to convert that jar to a dll???

thanks

Answer

Horcrux7 picture Horcrux7 · Aug 2, 2011

You can compile it in one step:

ikvmc { file1.jar }  { file2.jar } ...

or you need to compile it in the order of dependency if there is a hierarchy and no circle dependency.

See the IKVM Wiki for more details.