Skip to content

Commit 9f6d3b9

Browse files
authored
Update WindowsBuild.md
Prepend to the path rather than append to ensure that the new compiler is picked up. Thanks to @lanza for pointing this out.
1 parent 5b6c008 commit 9f6d3b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/WindowsBuild.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ cmake --build "S:\build\Ninja-DebugAssert\llvm-windows-amd64"
133133
- Update your path to include the LLVM tools.
134134

135135
```cmd
136-
set PATH=%PATH%;S:\build\Ninja-DebugAssert\llvm-windows-amd64\bin
136+
set PATH=S:\build\Ninja-DebugAssert\llvm-windows-amd64\bin;%PATH%
137137
```
138138

139139
### 7. Build Swift

0 commit comments

Comments
 (0)