git: efbbbce271a8 - main - Mk/Uses/cargo.mk: enable RUST_BACKTRACE on powerpc64le on recent CURRENT
Piotr Kubaj <[email protected]> Thu, 06 Aug 2026 13:14:52 +0000
| Newsgroups | gmane.os.freebsd.devel.cvs.ports |
|---|---|
| Message-ID | <[email protected]> |
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=efbbbce271a8d774956c53df7940f5c468692b05 commit efbbbce271a8d774956c53df7940f5c468692b05 Author: Piotr Kubaj <[email protected]> AuthorDate: 2026-08-06 12:19:29 +0000 Commit: Piotr Kubaj <[email protected]> CommitDate: 2026-08-06 13:14:45 +0000 Mk/Uses/cargo.mk: enable RUST_BACKTRACE on powerpc64le on recent CURRENT Fixed in base 70509d1d9cba254dfd5b3dd83d8a011b5e125788. --- Mk/Uses/cargo.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mk/Uses/cargo.mk b/Mk/Uses/cargo.mk index 83c1dc42184d..f8e530a84e7e 100644 --- a/Mk/Uses/cargo.mk +++ b/Mk/Uses/cargo.mk @@ -142,7 +142,7 @@ CARGO_ENV+= \ RUSTDOC=${RUSTDOC} \ RUSTFLAGS="${RUSTFLAGS} -C linker=${CC} ${LDFLAGS:C/.+/-C link-args=&/}" -. if ${ARCH} != powerpc64le +. if ${ARCH} != powerpc64le || (${ARCH} == powerpc64le && ${OSVERSION} >= 1600019) CARGO_ENV+= RUST_BACKTRACE=1 . endif