Skip to content

Instantly share code, notes, and snippets.

View xoofx's full-sized avatar
🏠
Working from home

Alexandre Mutel xoofx

🏠
Working from home
View GitHub Profile
PREFIX=/prj/mono-bin
git clone https://github.com/mono/mono.git --recursive mono-m
cd mono-m
./autogen.sh --prefix=$PREFIX --enable-llvm && make -j10 && make install
PATH=$PREFIX/bin:$PATH
#now:
csc -o P.cs && mono --aot=llvm p.exe && mono p.exe
#or with additional llvm arguments for opt and llc: