diff --git a/doc/diffs.md b/doc/diffs.md index af90159..e80b04d 100644 --- a/doc/diffs.md +++ b/doc/diffs.md @@ -8,7 +8,7 @@ automate that process. ## Assumptions This guide assumes that you have built CoreCLR. -See the [CoreCLR](https://github.com/dotnet/coreclr) GitHub repo for directions on building. +See the [Workflow Guide](https://github.com/dotnet/runtime/blob/main/docs/workflow/README.md) for directions on building. ## Assembly diff tools @@ -290,8 +290,8 @@ or ``` c:\coreclr> tests\runtest.cmd GenerateLayoutOnly ``` -On non-Windows, consult the test instructions -[here](https://github.com/dotnet/coreclr/blob/master/Documentation/building/unix-test-instructions.md). +On non-Windows, see +[Building and running tests on Linux, macOS, and FreeBSD](https://github.com/dotnet/runtime/blob/main/docs/workflow/testing/coreclr/unix-test-instructions.md). Note that you can pass `--testDir=NONE` to runtest.sh to get the same effect as passing `GenerateLayoutOnly` to runtest.cmd on Windows. diff --git a/doc/formatting.md b/doc/formatting.md index afe7299..a4faf4d 100644 --- a/doc/formatting.md +++ b/doc/formatting.md @@ -2,7 +2,7 @@ JIT source code is automatically formatted by the jit-format tool. The idea is to automatically enforce the -[CLR JIT Coding Conventions](https://github.com/dotnet/coreclr/blob/master/Documentation/coding-guidelines/clr-jit-coding-conventions.md) +[CLR JIT Coding Conventions](https://github.com/dotnet/runtime/blob/main/docs/coding-guidelines/clr-jit-coding-conventions.md) where possible, although the tool by its nature ends up defining the coding conventions by the formatting it enforces. The tool invokes clang-format and clang-tidy to do its work.