From 695786665ea95a388f26e136b47263fc0626b504 Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Thu, 27 Jun 2024 18:15:14 -0700 Subject: [PATCH] Avoid extra Cargo installation artifacts As @bjorn3 mentioned in #420, using `--no-track` should get rid of the extra files that show up after the `cargo install`. Fixes #420. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fa4a66998..eda2a7454 100644 --- a/Makefile +++ b/Makefile @@ -131,7 +131,7 @@ build/llvm.BUILT: # used for the `wasm32-wasip2` target natively by Clang. Note that `--root` # passed to `cargo install` will place it in the output directory automatically. build/wasm-component-ld.BUILT: build/llvm.BUILT - cargo install wasm-component-ld@0.5.0 --root $(BUILD_PREFIX) + cargo install --no-track wasm-component-ld@0.5.0 --root $(BUILD_PREFIX) touch build/wasm-component-ld.BUILT