From 0a7c4ff2488a3a555b8867ce1297f8ca97653f6a Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 21 Oct 2021 18:06:05 +0000 Subject: [PATCH] doc: simplify ccache instructions `ccache` has reasonable defaults for `max_size` and `cache_dir` so remove instructions to set those things explicitly. Change fenced code from `console` to `bash` for easier copy/paste. PR-URL: https://github.com/nodejs/node/pull/40550 Fixes: https://github.com/nodejs/node/issues/40542 Reviewed-By: Geoffrey Booth Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca --- BUILDING.md | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index c12a45cfe30120..8a8c544d46f9ac 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -525,22 +525,18 @@ installing `ccache` can help to greatly reduce build times. Set up with: On GNU/Linux: -```console -$ sudo apt install ccache # for Debian/Ubuntu, included in most Linux distros -$ ccache -o cache_dir= -$ ccache -o max_size=5.0G -$ export CC="ccache gcc" # add to your .profile -$ export CXX="ccache g++" # add to your .profile +```bash +sudo apt install ccache # for Debian/Ubuntu, included in most Linux distros +export CC="ccache gcc" # add to your .profile +export CXX="ccache g++" # add to your .profile ``` On macOS: -```console -$ brew install ccache # see https://brew.sh -$ ccache -o cache_dir= -$ ccache -o max_size=5.0G -$ export CC="ccache cc" # add to ~/.zshrc or other shell config file -$ export CXX="ccache c++" # add to ~/.zshrc or other shell config file +```bash +brew install ccache # see https://brew.sh +export CC="ccache cc" # add to ~/.zshrc or other shell config file +export CXX="ccache c++" # add to ~/.zshrc or other shell config file ``` This will allow for near-instantaneous rebuilds even when switching branches.