1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

USES=cargo to convert LDFLAGS into RUSTFLAGS

Approved by:	rust (tobik)
Differential Revision:	https://reviews.freebsd.org/D18039
This commit is contained in:
Jan Beich 2018-12-06 17:07:42 +00:00
parent 86f6bbfd8e
commit af90810038
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=486769

View File

@ -62,15 +62,13 @@ CARGO_TARGET_DIR?= ${WRKDIR}/target
# - RUSTC: path of rustc binary (default to lang/rust)
# - RUSTDOC: path of rustdoc binary (default to lang/rust)
# - RUSTFLAGS: custom flags to pass to all compiler invocations that Cargo performs
#
# XXX LDFLAGS => -C link-arg=$1 (via RUSTFLAGS)
CARGO_ENV+= \
CARGO_HOME=${WRKDIR}/cargo-home \
CARGO_BUILD_JOBS=${MAKE_JOBS_NUMBER} \
CARGO_TARGET_DIR=${CARGO_TARGET_DIR} \
RUSTC=${LOCALBASE}/bin/rustc \
RUSTDOC=${LOCALBASE}/bin/rustdoc \
RUSTFLAGS="${RUSTFLAGS}"
RUSTFLAGS="${RUSTFLAGS} ${LDFLAGS:S/^/-C link-arg=/}"
# Adjust -C target-cpu if -march/-mcpu is set by bsd.cpu.mk
.if ${ARCH} == amd64 || ${ARCH} == i386