вторник, 3 февраля 2015 г.

CoreCLR is on github! How to build it on linux.

Today Microsoft announced that CoreCLR (cross-platform runtime for .NET Core) is on github. At first I tried to build it on my Ubuntu 14.04 box. There was some prerequisites issues which prevented build to be completed, but after some investigation I've found the working set of packages: This is the final script:

#Installing Prerequisites
sudo apt-get install git cmake clang-3.5 make llvm-3.5 gcc
 
#build.sh is working only on 64 bit Linux!
git clone https://github.com/dotnet/coreclr
cd coreclr
./build.sh     

Комментариев нет:

Отправить комментарий