From cd573beb0a60d6bf0e341bcd4d2c464ed97c1a8a Mon Sep 17 00:00:00 2001 From: Lunaphied Date: Sat, 18 Apr 2026 12:17:30 +0200 Subject: [PATCH] docs/hacking: fix to respect changes in justfile We no longer have setup-custom, just use setup Change-Id: I2a151d04dc3d90a98b79859b05c4e6706a6a6964 --- doc/manual/src/contributing/hacking.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/manual/src/contributing/hacking.md b/doc/manual/src/contributing/hacking.md index ccc804b24..30d6e5d32 100644 --- a/doc/manual/src/contributing/hacking.md +++ b/doc/manual/src/contributing/hacking.md @@ -183,13 +183,13 @@ The development shell on Linux uses LLD by default for faster link times. This is set using `mesonFlags`, so to override it, you can simplify re-specify the linker to Meson: ```bash -$ just setup-custom -Dc_link_args=-fuse-ld=ld -Dcpp_link_args=-fuse-ld=ld +$ just setup -Dc_link_args=-fuse-ld=ld -Dcpp_link_args=-fuse-ld=ld ``` While using LLD, you may find it helpful to use ThinLTO for even further improvements to link times for incremental builds: ```bash -$ just setup-custom -Db_lto=true -Db_lto_mode=thin -Db_thinlto_cache=true +$ just setup -Db_lto=true -Db_lto_mode=thin -Db_thinlto_cache=true ``` ## Sending changes to Gerrit for review {#sending-to-gerrit}