7d543a20e0 | ||
---|---|---|
doc | ||
eng | ||
src | ||
test | ||
.gitattributes | ||
.gitignore | ||
CODE-OF-CONDUCT.md | ||
LICENSE.TXT | ||
NuGet.Config | ||
README.md | ||
azure-pipelines.yml | ||
bootstrap.cmd | ||
bootstrap.sh | ||
build-coredistools.cmd | ||
build-coredistools.sh | ||
build-tblgen.cmd | ||
build.cmd | ||
build.sh | ||
coredistools.yml | ||
jitutils.sln | ||
pack-coredistools.cmd | ||
sample_config.json | ||
wrapper.bat | ||
wrapper.sh |
README.md
Dotnet JIT code gen utilities - jitutils
This repo holds a collection of utilities used by RyuJIT developers to automate tasks when working on CoreCLR.
Summary
Current tools include:
- Assembly diffs: jit-diff, jit-dasm, jit-dasm-pmi, jit-analyze.
- CI jobs information: cijobs.
- JIT source code formatting: jit-format.
- General tools: pmi
Getting started
- Clone the jitutils repo:
git clone https://github.com/dotnet/jitutils
-
Install the 2.1 .NET Core SDK (including the
dotnet
command-line interface, or CLI) from here. -
Build the tools:
cd jitutils
bootstrap.cmd
(on non-Windows, run bootstrap.sh. NOTE: On Mac, you need to first use ulimit -n 2048
or the dotnet restore
part of the build will fail.)
- Optionally, add the built tools directory to your path, e.g.:
set PATH=%PATH%;<root>\jitutils\bin