2c556e1473
On systems where rustup is used, simple rpmbuild will use rustc from system, but rustdoc will be taken from PATH which might be different from system. Given this, doc-tests or anything related to rustdoc will fail with mis-mathching rustc version. Merges: https://pagure.io/fedora-rust/rust2rpm/pull-request/38
10 lines
345 B
Text
10 lines
345 B
Text
%__rustc %{_bindir}/rustc
|
|
%__rustdoc %{_bindir}/rustdoc
|
|
|
|
# Enable optimization, debuginfo, and link hardening.
|
|
%__global_rustflags -Copt-level=3 -Cdebuginfo=2 -Clink-arg=-Wl,-z,relro,-z,now
|
|
|
|
%__global_rustflags_toml [%{lua:
|
|
for arg in string.gmatch(rpm.expand("%{__global_rustflags}"), "%S+") do
|
|
print('"' .. arg .. '", ')
|
|
end}]
|