- Clone the runtime repo:
git clone http://github.com/dotnet/runtime
. - Building On Windows
- To build the clr and libs on Windows:
build.cmd -subset clr+libs -configuration [checked/debug/release]
debug
: No optimizations but assertions.checked
: Optimizations and assertions.release
: Optimizations but no assertions.
- Optional: You can generate a coreroot folder using
.\src\tests\build.cmd generatelayoutonly Release
- Quick cmake trick:
cmake --build artifacts/obj/coreclr/linux.x64.Release/gc --target libclrgcexp.so --config Release
- To build the clr and libs on Windows:
- Building on Linux
- Installing WSL
- Open up a new Powershell Window in Admin mode and type:
wsl --install -d Ubuntu-20.04
- Wait for installation to complete. NOTE: You'll need at least 20 GB of space for the OS.
- Once installed, type
ubuntu
to launch Ubuntu. - Setup account accordingly.
- Type the following to get the latest updates:
sudo apt update
. - Install dependencies:
sudo apt-get install -y cmake llvm-9 clang-9 \ build-essential python curl git lldb-6.0 liblldb-6.0-dev \ libunwind8 libunwind8-dev gettext libicu-dev liblttng-ust-dev \ libssl-dev libnuma-dev libkrb5-dev zlib1g-dev ninja-build
- Build the runtime:
./build.sh -configuration debug -subset clr
- Optional: You can generate a coreroot folder using
./src/tests/build.sh generatelayoutonly Release
- Quick cmake trick:
cmake --build artifacts/obj/coreclr/linux.x64.Release --target clrgcexp --config Release
- Open up a new Powershell Window in Admin mode and type:
- Installing WSL
- Create a new console app:
dotnet new console
- Publish the console app as a self-contained app for Windows:
dotnet publish -r win-x64 --self-contained
- Copy the updated version of the clr to the appropriate directory:
cd bin\Debug\netx.0\win-x64\publish
xcopy /s/y {Directory where the CLR binaries are built to}\* .
- Run the Console App with the modified runtime:
HelloWorld.exe