* Bug: Makefile ignores CARGO_TARGET_DIR
@ 2026-07-28 11:46 William Pursell
2026-07-28 18:01 ` Todd Zullinger
0 siblings, 1 reply; 2+ messages in thread
From: William Pursell @ 2026-07-28 11:46 UTC (permalink / raw)
To: git
The Makefile hardcodes the path to the Rust static library at line
962, but the cargo invocation at line 3036 does not override
CARGO_TARGET_DIR. (line numbers are relative to 9a0c4701)
When CARGO_TARGET_DIR is set in the environment, the link step fails:
clang: error: no such file or directory: 'target/release/libgitcore.a'
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Bug: Makefile ignores CARGO_TARGET_DIR
2026-07-28 11:46 Bug: Makefile ignores CARGO_TARGET_DIR William Pursell
@ 2026-07-28 18:01 ` Todd Zullinger
0 siblings, 0 replies; 2+ messages in thread
From: Todd Zullinger @ 2026-07-28 18:01 UTC (permalink / raw)
To: William Pursell; +Cc: git
William Pursell wrote:
> The Makefile hardcodes the path to the Rust static library at line
> 962, but the cargo invocation at line 3036 does not override
> CARGO_TARGET_DIR. (line numbers are relative to 9a0c4701)
>
> When CARGO_TARGET_DIR is set in the environment, the link step fails:
>
> clang: error: no such file or directory: 'target/release/libgitcore.a'
If the fix simply to add `--target $*` as is used a few
lines below in RUST_MEMBER_LIBS, e.g.:
diff --git i/Makefile w/Makefile
index 98e995e4be..fa6e4b2702 100644
--- i/Makefile
+++ w/Makefile
@@ -3034,7 +3034,7 @@ $(LIB_FILE): $(LIB_OBJS)
ifndef NO_RUST
ifeq ($(RUST_TARGETS),)
$(RUST_LIB): Cargo.toml $(RUST_SOURCES) $(LIB_FILE)
- $(QUIET_CARGO)cargo build $(CARGO_ARGS)
+ $(QUIET_CARGO)cargo build $(CARGO_ARGS) --target $*
else
ifneq ($(words $(RUST_TARGETS)),1)
ifneq ($(uname_S),Darwin)
Does this also affect the `cargo build` calls in the
libgit-sys and libgit-rs make targets (~lines 4090 and
4092)?
--
Todd
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-07-28 18:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-28 11:46 Bug: Makefile ignores CARGO_TARGET_DIR William Pursell
2026-07-28 18:01 ` Todd Zullinger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox