From c50b9a54ac8dcebc0b784a4e73daac4f990fb21c Mon Sep 17 00:00:00 2001 From: Roman Valls Guimera Date: Mon, 27 Nov 2023 17:02:25 +1100 Subject: [PATCH] Add sccache install via homebrew... RUSTC_WRAPPER is in the CDK .ts file, so no need to define it on one's env? --- lib/workload/stateful/filemanager/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/workload/stateful/filemanager/README.md b/lib/workload/stateful/filemanager/README.md index 6eac40508..65d09ce49 100644 --- a/lib/workload/stateful/filemanager/README.md +++ b/lib/workload/stateful/filemanager/README.md @@ -27,9 +27,10 @@ Filemanager uses docker to run a postgres database to track objects. This means running inside the docker compose container. If there are additional postgres installations locally (outside of docker), this might interfere and complain about non-existing roles and users. -For development of the rust workspace, build manually: +For development of the rust workspace, install a build cache (sccache) and build manually: ```sh +brew install sccache cargo build --all-targets --all-features ```