LINUX.ORG.RU

История изменений

Исправление grim, (текущая версия) :

При этом кросс-платформенность бинарников пропадает.

кросплатформноcть оригинальных бинарников не пропадает никуда.
Их можно запускать в режиме АОТ:

mono --aot program.exe

This will generate a file called «program.exe.so», which contains the native code that was precompiled by Mono for most of the IL methods. The --aot flag by default will limit itself to IL methods which will give you the most benefits, but will not compile absolutely everything you need. See below for more details.

Although the JIT mode is very fast, and the default optimizations in Mono have been tuned to provide a good balance between optimizations and JIT speed, AOT compilation provides a few extra benefits:

Reduced startup time.
Increased memory sharing.
Potential better performance.


Если заранее откомпилировать в целевую платформу и новый, собранный из старого переносимого но уже под x86 или ARM конечно-же не будет переносимым.

Не верю.

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

Исправление grim, :

При этом кросс-платформенность бинарников пропадает.

кросплатформноcть оригинальных бинарников не пропадает никуда.
Их можно запускать в режиме АОТ:

mono --aot program.exe

This will generate a file called «program.exe.so», which contains the native code that was precompiled by Mono for most of the IL methods. The --aot flag by default will limit itself to IL methods which will give you the most benefits, but will not compile absolutely everything you need. See below for more details.

Although the JIT mode is very fast, and the default optimizations in Mono have been tuned to provide a good balance between optimizations and JIT speed, AOT compilation provides a few extra benefits:

Reduced startup time.
Increased memory sharing.
Potential better performance.


Есть вариант заранее откомпилировать в целевую платформу и новый, собранный из старого переносимого но уже под x86 или ARM конечно-же не будет переносимым.

Не верю.

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

Исходная версия grim, :

При этом кросс-платформенность бинарников пропадает.

кросплатформноcть оригинальных бинарников не пропадает никуда.
Их можно запускать в режиме АОТ:
[code]mono --aot program.exe[/code]
This will generate a file called «program.exe.so», which contains the native code that was precompiled by Mono for most of the IL methods. The --aot flag by default will limit itself to IL methods which will give you the most benefits, but will not compile absolutely everything you need. See below for more details.

Although the JIT mode is very fast, and the default optimizations in Mono have been tuned to provide a good balance between optimizations and JIT speed, AOT compilation provides a few extra benefits:

Reduced startup time.
Increased memory sharing.
Potential better performance.


Есть вариант заранее откомпилировать в целевую платформу и новый, собранный из старого переносимого но уже под x86 или ARM конечно-же не будет переносимым.

Не верю.

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