How to convert a jar to a dll, a jar depending on several cans

Hi, I am trying to use ikvmc (http://www.ikvm.net/) to convert jar to dll

bank:

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

but this jar depends on a few jars,

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

which command should i use to convert this jar to dll?

thanks

+4
source share
2 answers

You can compile it in one step:

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

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

See the IKVM Wiki for more details.

+4
source

First, you compile the dependent jar in the dll, and then refer to it when compiling the main jar.

Sort of:

 ikvmc -target:library depend.jar ikvmc -target:library -resource:depend.ddl dartapi.jar 

See: IKVM Documents

+2
source

Source: https://habr.com/ru/post/1332171/


All Articles