gyurisc
gyurisc

Reputation: 11492

Is it possible to use Mono static compilation on Windows?

I was wondering if it is possible to use Mono static compilation on Windows. If so, what should I do?

Upvotes: 3

Views: 2232

Answers (2)

miguel.de.icaza
miguel.de.icaza

Reputation: 32684

To statically compile your code, you use the tool `mkbundle'.

The mkbundle tool requires a cygwin setup (it needs the assembler, linker and compiler) to generate the static binary.

Upvotes: 9

igorgue
igorgue

Reputation: 18242

Yes it is possible,

http://www.mono-project.com/AOT#Supported_Platforms

Upvotes: 4

Related Questions