From 35c271e6e1e053547572ebbe31793985f6b89e62 Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Mon, 8 Jul 2024 11:17:31 -0700 Subject: [PATCH] Avoid extra Cargo installation artifacts (#432) 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 fa4a669..eda2a74 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