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.
pull/437/head
Andrew Brown 6 months ago committed by GitHub
parent 7ff81cb10c
commit 35c271e6e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -131,7 +131,7 @@ build/llvm.BUILT:
# used for the `wasm32-wasip2` target natively by Clang. Note that `--root` # used for the `wasm32-wasip2` target natively by Clang. Note that `--root`
# passed to `cargo install` will place it in the output directory automatically. # passed to `cargo install` will place it in the output directory automatically.
build/wasm-component-ld.BUILT: build/llvm.BUILT 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 touch build/wasm-component-ld.BUILT

Loading…
Cancel
Save