You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bonus 2: Mono (can't crossbuild - use something like an N2+ or suffer.)
wget https://download.mono-project.com/sources/mono/mono-6.12.0.122.tar.xz
tar xf mono-6.12.0.122.tar.xz
cd mono-6.12.0.122
./autogen.sh --with-ikvm-native=no --with-csc=mcs --enable-llvm --disable-dependency-tracking --with-mcs-build --prefix=$(pwd)/built
make -j7
make install
wget https://gist.githubusercontent.com/JohnnyonFlame/df7ba61a5559de293680789e7f01fbdc/raw/Makefile.optm
cd built
PATH=$(pwd)/bin:$(pwd)/../llvm/usr/bin:$PATH MONO_PATH=$(pwd)/lib/mono make -f ../Makefile.optm -j7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Run Me on a chroot! (or don't, not really that secure... no hash checks etc)
cd /opt
apt install -yy wget sed
wget https://gist.github.com/JohnnyonFlame/df7ba61a5559de293680789e7f01fbdc/raw/readme.md -O runme.sh
sed -i '1 i\\#\!\/bin\/bash -e' runme.sh
sed -i "s/\`\`\`\(bash\)\?//g" runme.sh
chmod +x runme.sh
./runme.sh
Fair warning: This is a fairly insecure script with zero checks for the validity of many of the moving parts. No liability or guarantees, implied or otherwise.
Run Me on a chroot! (or don't, not really that secure... no hash checks etc)
Fair warning: This is a fairly insecure script with zero checks for the validity of many of the moving parts. No liability or guarantees, implied or otherwise.