From 8c6a48c45aedc68c277aa316f101fd964dee4c79 Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Tue, 9 Sep 2025 00:04:34 +0100 Subject: [PATCH] Update some documentation links --- doc/diffs.md | 6 +++--- doc/formatting.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/diffs.md b/doc/diffs.md index af901593..e80b04df 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 afe7299b..a4faf4d7 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.