-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add ccache for Windows System Dependencies (#14080)
- Loading branch information
1 parent
c298b23
commit 0bc21b3
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,6 +67,7 @@ After Visual Studio, you need the following: | |
- Perl | ||
- Ruby | ||
- Node.js | ||
- Ccache | ||
|
||
{% callout %} | ||
**Note** – The Zig compiler is automatically downloaded, installed, and updated by the building process. | ||
|
@@ -78,12 +79,12 @@ After Visual Studio, you need the following: | |
|
||
```ps1#WinGet | ||
## Select "Add LLVM to the system PATH for all users" in the LLVM installer | ||
> winget install -i LLVM.LLVM -v 18.1.8 && winget install GoLang.Go Rustlang.Rustup NASM.NASM StrawberryPerl.StrawberryPerl RubyInstallerTeam.Ruby.3.2 OpenJS.NodeJS.LTS | ||
> winget install -i LLVM.LLVM -v 18.1.8 && winget install GoLang.Go Rustlang.Rustup NASM.NASM StrawberryPerl.StrawberryPerl RubyInstallerTeam.Ruby.3.2 OpenJS.NodeJS.LTS Ccache.Ccache | ||
``` | ||
|
||
```ps1#Scoop | ||
> irm https://get.scoop.sh | iex | ||
> scoop install nodejs-lts go rust nasm ruby perl | ||
> scoop install nodejs-lts go rust nasm ruby perl ccache | ||
# scoop seems to be buggy if you install llvm and the rest at the same time | ||
> scoop install [email protected] | ||
``` | ||
|