|
|
@ -1,16 +1,22 @@
|
|
|
|
|
|
|
|
Name: rust
|
|
|
|
|
|
|
|
Version: 1.75.0
|
|
|
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
|
|
|
Summary: The Rust Programming Language
|
|
|
|
|
|
|
|
License: (Apache-2.0 OR MIT) AND (Artistic-2.0 AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 AND Unicode-DFS-2016)
|
|
|
|
|
|
|
|
# ^ written as: (rust itself) and (bundled libraries)
|
|
|
|
|
|
|
|
URL: https://www.rust-lang.org
|
|
|
|
|
|
|
|
|
|
|
|
# Only x86_64, i686, and aarch64 are Tier 1 platforms at this time.
|
|
|
|
# Only x86_64, i686, and aarch64 are Tier 1 platforms at this time.
|
|
|
|
# https://doc.rust-lang.org/nightly/rustc/platform-support.html
|
|
|
|
# https://doc.rust-lang.org/nightly/rustc/platform-support.html
|
|
|
|
%global rust_arches x86_64 i686 aarch64 ppc64le s390x
|
|
|
|
%global rust_arches x86_64 i686 aarch64 ppc64le s390x
|
|
|
|
|
|
|
|
ExclusiveArch: %{rust_arches}
|
|
|
|
# The channel can be stable, beta, or nightly
|
|
|
|
|
|
|
|
%{!?channel: %global channel stable}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# To bootstrap from scratch, set the channel and date from src/stage0.json
|
|
|
|
# To bootstrap from scratch, set the channel and date from src/stage0.json
|
|
|
|
# e.g. 1.59.0 wants rustc: 1.58.0-2022-01-13
|
|
|
|
# e.g. 1.59.0 wants rustc: 1.58.0-2022-01-13
|
|
|
|
# or nightly wants some beta-YYYY-MM-DD
|
|
|
|
# or nightly wants some beta-YYYY-MM-DD
|
|
|
|
%global bootstrap_version 1.70.0
|
|
|
|
%global bootstrap_version 1.74.0
|
|
|
|
%global bootstrap_channel 1.70.0
|
|
|
|
%global bootstrap_channel 1.74.0
|
|
|
|
%global bootstrap_date 2023-06-01
|
|
|
|
%global bootstrap_date 2023-11-16
|
|
|
|
|
|
|
|
|
|
|
|
# Only the specified arches will use bootstrap binaries.
|
|
|
|
# Only the specified arches will use bootstrap binaries.
|
|
|
|
# NOTE: Those binaries used to be uploaded with every new release, but that was
|
|
|
|
# NOTE: Those binaries used to be uploaded with every new release, but that was
|
|
|
@ -26,42 +32,51 @@
|
|
|
|
%if 0%{?fedora}
|
|
|
|
%if 0%{?fedora}
|
|
|
|
%global mingw_targets i686-pc-windows-gnu x86_64-pc-windows-gnu
|
|
|
|
%global mingw_targets i686-pc-windows-gnu x86_64-pc-windows-gnu
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel} >= 8
|
|
|
|
|
|
|
|
%global wasm_targets wasm32-unknown-unknown wasm32-wasi
|
|
|
|
%global wasm_targets wasm32-unknown-unknown wasm32-wasi
|
|
|
|
|
|
|
|
%if 0%{?fedora} || 0%{?rhel} >= 10
|
|
|
|
|
|
|
|
%global extra_targets x86_64-unknown-none x86_64-unknown-uefi
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%global all_targets %{?mingw_targets} %{?wasm_targets} %{?extra_targets}
|
|
|
|
|
|
|
|
%define target_enabled() %{lua:
|
|
|
|
|
|
|
|
print(string.find(rpm.expand(" %{all_targets} "), rpm.expand(" %1 "), 1, true) or 0)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# We need CRT files for *-wasi targets, at least as new as the commit in
|
|
|
|
# We need CRT files for *-wasi targets, at least as new as the commit in
|
|
|
|
# src/ci/docker/host-x86_64/dist-various-2/build-wasi-toolchain.sh
|
|
|
|
# src/ci/docker/host-x86_64/dist-various-2/build-wasi-toolchain.sh
|
|
|
|
# (updated per https://github.com/rust-lang/rust/pull/96907)
|
|
|
|
# (updated per https://github.com/rust-lang/rust/pull/96907)
|
|
|
|
%global wasi_libc_url https://github.com/WebAssembly/wasi-libc
|
|
|
|
%global wasi_libc_url https://github.com/WebAssembly/wasi-libc
|
|
|
|
%global wasi_libc_ref wasi-sdk-20
|
|
|
|
#global wasi_libc_ref wasi-sdk-20
|
|
|
|
|
|
|
|
%global wasi_libc_ref bd950eb128bff337153de217b11270f948d04bb4
|
|
|
|
%global wasi_libc_name wasi-libc-%{wasi_libc_ref}
|
|
|
|
%global wasi_libc_name wasi-libc-%{wasi_libc_ref}
|
|
|
|
%global wasi_libc_source %{wasi_libc_url}/archive/%{wasi_libc_ref}/%{wasi_libc_name}.tar.gz
|
|
|
|
%global wasi_libc_source %{wasi_libc_url}/archive/%{wasi_libc_ref}/%{wasi_libc_name}.tar.gz
|
|
|
|
%global wasi_libc_dir %{_builddir}/%{wasi_libc_name}
|
|
|
|
%global wasi_libc_dir %{_builddir}/%{wasi_libc_name}
|
|
|
|
|
|
|
|
%if 0%{?fedora}
|
|
|
|
|
|
|
|
%bcond_with bundled_wasi_libc
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
%bcond_without bundled_wasi_libc
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
# Using llvm-static may be helpful as an opt-in, e.g. to aid LLVM rebases.
|
|
|
|
# Using llvm-static may be helpful as an opt-in, e.g. to aid LLVM rebases.
|
|
|
|
%bcond_with llvm_static
|
|
|
|
%bcond_with llvm_static
|
|
|
|
|
|
|
|
|
|
|
|
# We can also choose to just use Rust's bundled LLVM, in case the system LLVM
|
|
|
|
# We can also choose to just use Rust's bundled LLVM, in case the system LLVM
|
|
|
|
# is insufficient. Rust currently requires LLVM 14.0+.
|
|
|
|
# is insufficient. Rust currently requires LLVM 15.0+.
|
|
|
|
%global min_llvm_version 14.0.0
|
|
|
|
%global min_llvm_version 15.0.0
|
|
|
|
%global bundled_llvm_version 16.0.5
|
|
|
|
%global bundled_llvm_version 17.0.5
|
|
|
|
%bcond_with bundled_llvm
|
|
|
|
%bcond_with bundled_llvm
|
|
|
|
|
|
|
|
|
|
|
|
# Requires stable libgit2 1.6, and not the next minor soname change.
|
|
|
|
# Requires stable libgit2 1.7, and not the next minor soname change.
|
|
|
|
# This needs to be consistent with the bindings in vendor/libgit2-sys.
|
|
|
|
# This needs to be consistent with the bindings in vendor/libgit2-sys.
|
|
|
|
%global min_libgit2_version 1.6.4
|
|
|
|
%global min_libgit2_version 1.7.1
|
|
|
|
%global next_libgit2_version 1.7.0~
|
|
|
|
%global next_libgit2_version 1.8.0~
|
|
|
|
%global bundled_libgit2_version 1.6.4
|
|
|
|
%global bundled_libgit2_version 1.7.1
|
|
|
|
%if 0%{?fedora} >= 38
|
|
|
|
%if 0%{?fedora} >= 39
|
|
|
|
%bcond_with bundled_libgit2
|
|
|
|
%bcond_with bundled_libgit2
|
|
|
|
%else
|
|
|
|
%else
|
|
|
|
%bcond_without bundled_libgit2
|
|
|
|
%bcond_without bundled_libgit2
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
# needs libssh2_userauth_publickey_frommemory
|
|
|
|
|
|
|
|
%global min_libssh2_version 1.6.0
|
|
|
|
|
|
|
|
%if 0%{?rhel}
|
|
|
|
%if 0%{?rhel}
|
|
|
|
# Disable cargo->libgit2->libssh2 on RHEL, as it's not approved for FIPS (rhbz1732949)
|
|
|
|
# Disable cargo->libgit2->libssh2 on RHEL, as it's not approved for FIPS (rhbz1732949)
|
|
|
|
%bcond_without disabled_libssh2
|
|
|
|
%bcond_without disabled_libssh2
|
|
|
@ -69,39 +84,26 @@
|
|
|
|
%bcond_with disabled_libssh2
|
|
|
|
%bcond_with disabled_libssh2
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?rhel} && 0%{?rhel} < 8
|
|
|
|
%if 0%{?__isa_bits} == 32
|
|
|
|
%bcond_with curl_http2
|
|
|
|
# Disable PGO on 32-bit to reduce build memory
|
|
|
|
|
|
|
|
%bcond_with rustc_pgo
|
|
|
|
%else
|
|
|
|
%else
|
|
|
|
%bcond_without curl_http2
|
|
|
|
%bcond_without rustc_pgo
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
# LLDB isn't available everywhere...
|
|
|
|
# Detect non-stable channels from the version, like 1.74.0~beta.1
|
|
|
|
%if 0%{?rhel} && 0%{?rhel} < 8
|
|
|
|
%{lua: do
|
|
|
|
%bcond_with lldb
|
|
|
|
local version = rpm.expand("%{version}")
|
|
|
|
%else
|
|
|
|
local version_channel, subs = string.gsub(version, "^.*~(%w+).*$", "%1", 1)
|
|
|
|
%bcond_without lldb
|
|
|
|
rpm.define("channel " .. (subs ~= 0 and version_channel or "stable"))
|
|
|
|
%endif
|
|
|
|
rpm.define("rustc_package rustc-" .. version_channel .. "-src")
|
|
|
|
|
|
|
|
end}
|
|
|
|
Name: rust
|
|
|
|
|
|
|
|
Version: 1.71.1
|
|
|
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
|
|
|
Summary: The Rust Programming Language
|
|
|
|
|
|
|
|
License: (ASL 2.0 or MIT) and (BSD and MIT)
|
|
|
|
|
|
|
|
# ^ written as: (rust itself) and (bundled libraries)
|
|
|
|
|
|
|
|
URL: https://www.rust-lang.org
|
|
|
|
|
|
|
|
ExclusiveArch: %{rust_arches}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if "%{channel}" == "stable"
|
|
|
|
|
|
|
|
%global rustc_package rustc-%{version}-src
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
%global rustc_package rustc-%{channel}-src
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
Source0: https://static.rust-lang.org/dist/%{rustc_package}.tar.xz
|
|
|
|
Source0: https://static.rust-lang.org/dist/%{rustc_package}.tar.xz
|
|
|
|
Source1: %{wasi_libc_source}
|
|
|
|
Source1: %{wasi_libc_source}
|
|
|
|
# Sources for bootstrap_arches are inserted by lua below
|
|
|
|
# Sources for bootstrap_arches are inserted by lua below
|
|
|
|
|
|
|
|
|
|
|
|
# By default, rust tries to use "rust-lld" as a linker for WebAssembly.
|
|
|
|
# By default, rust tries to use "rust-lld" as a linker for some targets.
|
|
|
|
Patch1: 0001-Use-lld-provided-by-system-for-wasm.patch
|
|
|
|
Patch1: 0001-Use-lld-provided-by-system.patch
|
|
|
|
|
|
|
|
|
|
|
|
# Set a substitute-path in rust-gdb for standard library sources.
|
|
|
|
# Set a substitute-path in rust-gdb for standard library sources.
|
|
|
|
Patch2: rustc-1.70.0-rust-gdb-substitute-path.patch
|
|
|
|
Patch2: rustc-1.70.0-rust-gdb-substitute-path.patch
|
|
|
@ -110,12 +112,14 @@ Patch2: rustc-1.70.0-rust-gdb-substitute-path.patch
|
|
|
|
# TODO: upstream this ability into the actual build configuration
|
|
|
|
# TODO: upstream this ability into the actual build configuration
|
|
|
|
Patch3: 0001-Let-environment-variables-override-some-default-CPUs.patch
|
|
|
|
Patch3: 0001-Let-environment-variables-override-some-default-CPUs.patch
|
|
|
|
|
|
|
|
|
|
|
|
# Enable the profiler runtime for native hosts
|
|
|
|
# Override the default self-contained system libraries
|
|
|
|
# https://github.com/rust-lang/rust/pull/114069
|
|
|
|
# TODO: the first can probably be upstreamed, but the second is hard-coded,
|
|
|
|
Patch4: 0001-Allow-using-external-builds-of-the-compiler-rt-profi.patch
|
|
|
|
# and we're only applying that if not with bundled_wasi_libc.
|
|
|
|
|
|
|
|
Patch4: 0001-bootstrap-allow-disabling-target-self-contained.patch
|
|
|
|
|
|
|
|
Patch5: 0002-set-an-external-library-path-for-wasm32-wasi.patch
|
|
|
|
|
|
|
|
|
|
|
|
# https://github.com/rust-lang/rust/pull/114440
|
|
|
|
# https://github.com/rust-lang/rust/pull/117982
|
|
|
|
Patch5: 0001-bootstrap-config-fix-version-comparison-bug.patch
|
|
|
|
Patch6: 0001-bootstrap-only-show-PGO-warnings-when-verbose.patch
|
|
|
|
|
|
|
|
|
|
|
|
### RHEL-specific patches below ###
|
|
|
|
### RHEL-specific patches below ###
|
|
|
|
|
|
|
|
|
|
|
@ -123,11 +127,7 @@ Patch5: 0001-bootstrap-config-fix-version-comparison-bug.patch
|
|
|
|
Source100: macros.rust-toolset
|
|
|
|
Source100: macros.rust-toolset
|
|
|
|
|
|
|
|
|
|
|
|
# Disable cargo->libgit2->libssh2 on RHEL, as it's not approved for FIPS (rhbz1732949)
|
|
|
|
# Disable cargo->libgit2->libssh2 on RHEL, as it's not approved for FIPS (rhbz1732949)
|
|
|
|
Patch100: rustc-1.71.0-disable-libssh2.patch
|
|
|
|
Patch100: rustc-1.75.0-disable-libssh2.patch
|
|
|
|
|
|
|
|
|
|
|
|
# libcurl on RHEL7 doesn't have http2, but since cargo requests it, curl-sys
|
|
|
|
|
|
|
|
# will try to build it statically -- instead we turn off the feature.
|
|
|
|
|
|
|
|
Patch101: rustc-1.71.0-disable-http2.patch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Get the Rust triple for any arch.
|
|
|
|
# Get the Rust triple for any arch.
|
|
|
|
%{lua: function rust_triple(arch)
|
|
|
|
%{lua: function rust_triple(arch)
|
|
|
@ -145,14 +145,12 @@ Patch101: rustc-1.71.0-disable-http2.patch
|
|
|
|
return arch.."-unknown-linux-"..abi
|
|
|
|
return arch.."-unknown-linux-"..abi
|
|
|
|
end}
|
|
|
|
end}
|
|
|
|
|
|
|
|
|
|
|
|
# Get the environment form of a Rust triple
|
|
|
|
|
|
|
|
%{lua: function rust_triple_env(triple)
|
|
|
|
|
|
|
|
local sub = string.gsub(triple, "-", "_")
|
|
|
|
|
|
|
|
return string.upper(sub)
|
|
|
|
|
|
|
|
end}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%global rust_triple %{lua: print(rust_triple(rpm.expand("%{_target_cpu}")))}
|
|
|
|
%global rust_triple %{lua: print(rust_triple(rpm.expand("%{_target_cpu}")))}
|
|
|
|
%global rust_triple_env %{lua: print(rust_triple_env(rpm.expand("%{rust_triple}")))}
|
|
|
|
|
|
|
|
|
|
|
|
# Get the environment form of the Rust triple
|
|
|
|
|
|
|
|
%global rust_triple_env %{lua:
|
|
|
|
|
|
|
|
print(string.upper(string.gsub(rpm.expand("%{rust_triple}"), "-", "_")))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
%if %defined bootstrap_arches
|
|
|
|
%if %defined bootstrap_arches
|
|
|
|
# For each bootstrap arch, add an additional binary Source.
|
|
|
|
# For each bootstrap arch, add an additional binary Source.
|
|
|
@ -186,12 +184,7 @@ end}
|
|
|
|
Provides: bundled(%{name}-bootstrap) = %{bootstrap_version}
|
|
|
|
Provides: bundled(%{name}-bootstrap) = %{bootstrap_version}
|
|
|
|
%else
|
|
|
|
%else
|
|
|
|
BuildRequires: cargo >= %{bootstrap_version}
|
|
|
|
BuildRequires: cargo >= %{bootstrap_version}
|
|
|
|
%if 0%{?rhel} && 0%{?rhel} < 8
|
|
|
|
|
|
|
|
BuildRequires: %{name} >= %{bootstrap_version}
|
|
|
|
|
|
|
|
BuildConflicts: %{name} > %{version}
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
BuildRequires: (%{name} >= %{bootstrap_version} with %{name} <= %{version})
|
|
|
|
BuildRequires: (%{name} >= %{bootstrap_version} with %{name} <= %{version})
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%global local_rust_root %{_prefix}
|
|
|
|
%global local_rust_root %{_prefix}
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
@ -211,7 +204,7 @@ BuildRequires: (pkgconfig(libgit2) >= %{min_libgit2_version} with pkgconfig(lib
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if %{without disabled_libssh2}
|
|
|
|
%if %{without disabled_libssh2}
|
|
|
|
BuildRequires: pkgconfig(libssh2) >= %{min_libssh2_version}
|
|
|
|
BuildRequires: pkgconfig(libssh2)
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?rhel} == 8
|
|
|
|
%if 0%{?rhel} == 8
|
|
|
@ -222,14 +215,11 @@ BuildRequires: python3
|
|
|
|
BuildRequires: python3-rpm-macros
|
|
|
|
BuildRequires: python3-rpm-macros
|
|
|
|
|
|
|
|
|
|
|
|
%if %with bundled_llvm
|
|
|
|
%if %with bundled_llvm
|
|
|
|
BuildRequires: cmake3 >= 3.13.4
|
|
|
|
BuildRequires: cmake >= 3.20.0
|
|
|
|
BuildRequires: ninja-build
|
|
|
|
BuildRequires: ninja-build
|
|
|
|
Provides: bundled(llvm) = %{bundled_llvm_version}
|
|
|
|
Provides: bundled(llvm) = %{bundled_llvm_version}
|
|
|
|
%else
|
|
|
|
%else
|
|
|
|
BuildRequires: cmake >= 2.8.11
|
|
|
|
BuildRequires: cmake >= 3.5.1
|
|
|
|
%if 0%{?epel} == 7
|
|
|
|
|
|
|
|
%global llvm llvm14
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %defined llvm
|
|
|
|
%if %defined llvm
|
|
|
|
%global llvm_root %{_libdir}/%{llvm}
|
|
|
|
%global llvm_root %{_libdir}/%{llvm}
|
|
|
|
%else
|
|
|
|
%else
|
|
|
@ -264,20 +254,7 @@ Requires: %{name}-std-static%{?_isa} = %{version}-%{release}
|
|
|
|
# https://github.com/rust-lang/rust/issues/11937
|
|
|
|
# https://github.com/rust-lang/rust/issues/11937
|
|
|
|
Requires: /usr/bin/cc
|
|
|
|
Requires: /usr/bin/cc
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?epel} == 7
|
|
|
|
|
|
|
|
%global devtoolset_name devtoolset-11
|
|
|
|
|
|
|
|
BuildRequires: %{devtoolset_name}-binutils
|
|
|
|
|
|
|
|
BuildRequires: %{devtoolset_name}-gcc
|
|
|
|
|
|
|
|
BuildRequires: %{devtoolset_name}-gcc-c++
|
|
|
|
|
|
|
|
%global devtoolset_bindir /opt/rh/%{devtoolset_name}/root/usr/bin
|
|
|
|
|
|
|
|
%global __cc %{devtoolset_bindir}/gcc
|
|
|
|
|
|
|
|
%global __cxx %{devtoolset_bindir}/g++
|
|
|
|
|
|
|
|
%global __ar %{devtoolset_bindir}/ar
|
|
|
|
|
|
|
|
%global __ranlib %{devtoolset_bindir}/ranlib
|
|
|
|
|
|
|
|
%global __strip %{devtoolset_bindir}/strip
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
%global __ranlib %{_bindir}/ranlib
|
|
|
|
%global __ranlib %{_bindir}/ranlib
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ALL Rust libraries are private, because they don't keep an ABI.
|
|
|
|
# ALL Rust libraries are private, because they don't keep an ABI.
|
|
|
|
%global _privatelibs lib(.*-[[:xdigit:]]{16}*|rustc.*)[.]so.*
|
|
|
|
%global _privatelibs lib(.*-[[:xdigit:]]{16}*|rustc.*)[.]so.*
|
|
|
@ -289,14 +266,7 @@ BuildRequires: %{devtoolset_name}-gcc-c++
|
|
|
|
# While we don't want to encourage dynamic linking to Rust shared libraries, as
|
|
|
|
# While we don't want to encourage dynamic linking to Rust shared libraries, as
|
|
|
|
# there's no stable ABI, we still need the unallocated metadata (.rustc) to
|
|
|
|
# there's no stable ABI, we still need the unallocated metadata (.rustc) to
|
|
|
|
# support custom-derive plugins like #[proc_macro_derive(Foo)].
|
|
|
|
# support custom-derive plugins like #[proc_macro_derive(Foo)].
|
|
|
|
%if 0%{?rhel} && 0%{?rhel} < 8
|
|
|
|
|
|
|
|
# eu-strip is very eager by default, so we have to limit it to -g, only debugging symbols.
|
|
|
|
|
|
|
|
%global _find_debuginfo_opts -g
|
|
|
|
|
|
|
|
%undefine _include_minidebuginfo
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
# Newer find-debuginfo.sh supports --keep-section, which is preferable. rhbz1465997
|
|
|
|
|
|
|
|
%global _find_debuginfo_opts --keep-section .rustc
|
|
|
|
%global _find_debuginfo_opts --keep-section .rustc
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{without bundled_llvm}
|
|
|
|
%if %{without bundled_llvm}
|
|
|
|
%if "%{llvm_root}" == "%{_prefix}" || 0%{?scl:1}
|
|
|
|
%if "%{llvm_root}" == "%{_prefix}" || 0%{?scl:1}
|
|
|
@ -321,7 +291,11 @@ BuildRequires: mingw64-winpthreads-static
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if %defined wasm_targets
|
|
|
|
%if %defined wasm_targets
|
|
|
|
|
|
|
|
%if %with bundled_wasi_libc
|
|
|
|
BuildRequires: clang
|
|
|
|
BuildRequires: clang
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
BuildRequires: wasi-libc-static
|
|
|
|
|
|
|
|
%endif
|
|
|
|
BuildRequires: lld
|
|
|
|
BuildRequires: lld
|
|
|
|
# brp-strip-static-archive breaks the archive index for wasm
|
|
|
|
# brp-strip-static-archive breaks the archive index for wasm
|
|
|
|
%global __os_install_post \
|
|
|
|
%global __os_install_post \
|
|
|
@ -330,10 +304,8 @@ find '%{buildroot}%{rustlibdir}'/wasm*/lib -type f -regex '.*\\.\\(a\\|rlib\\)'
|
|
|
|
%{nil}
|
|
|
|
%{nil}
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?fedora} || 0%{?rhel} >= 8
|
|
|
|
|
|
|
|
# For profiler_builtins
|
|
|
|
# For profiler_builtins
|
|
|
|
BuildRequires: compiler-rt
|
|
|
|
BuildRequires: compiler-rt
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# This component was removed as of Rust 1.69.0.
|
|
|
|
# This component was removed as of Rust 1.69.0.
|
|
|
|
# https://github.com/rust-lang/rust/pull/101841
|
|
|
|
# https://github.com/rust-lang/rust/pull/101841
|
|
|
@ -356,65 +328,67 @@ Requires: glibc-devel%{?_isa} >= 2.17
|
|
|
|
This package includes the standard libraries for building applications
|
|
|
|
This package includes the standard libraries for building applications
|
|
|
|
written in Rust.
|
|
|
|
written in Rust.
|
|
|
|
|
|
|
|
|
|
|
|
%if %defined mingw_targets
|
|
|
|
%global target_package() \
|
|
|
|
%{lua: do
|
|
|
|
%package std-static-%1 \
|
|
|
|
for triple in string.gmatch(rpm.expand("%{mingw_targets}"), "%S+") do
|
|
|
|
Summary: Standard library for Rust %1 \
|
|
|
|
local subs = {
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
triple = triple,
|
|
|
|
|
|
|
|
name = rpm.expand("%{name}"),
|
|
|
|
%global target_description() \
|
|
|
|
verrel = rpm.expand("%{version}-%{release}"),
|
|
|
|
%description std-static-%1 \
|
|
|
|
mingw = string.sub(triple, 1, 4) == "i686" and "mingw32" or "mingw64",
|
|
|
|
This package includes the standard libraries for building applications \
|
|
|
|
}
|
|
|
|
written in Rust for the %2 target %1.
|
|
|
|
local s = string.gsub([[
|
|
|
|
|
|
|
|
|
|
|
|
%if %target_enabled i686-pc-windows-gnu
|
|
|
|
%package std-static-{{triple}}
|
|
|
|
%target_package i686-pc-windows-gnu
|
|
|
|
Summary: Standard library for Rust {{triple}}
|
|
|
|
Requires: mingw32-crt
|
|
|
|
|
|
|
|
Requires: mingw32-gcc
|
|
|
|
|
|
|
|
Requires: mingw32-winpthreads-static
|
|
|
|
|
|
|
|
Provides: mingw32-rust = %{version}-%{release}
|
|
|
|
|
|
|
|
Provides: mingw32-rustc = %{version}-%{release}
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildArch: noarch
|
|
|
|
Provides: {{mingw}}-rust = {{verrel}}
|
|
|
|
%target_description i686-pc-windows-gnu MinGW
|
|
|
|
Provides: {{mingw}}-rustc = {{verrel}}
|
|
|
|
%endif
|
|
|
|
Requires: {{mingw}}-crt
|
|
|
|
|
|
|
|
Requires: {{mingw}}-gcc
|
|
|
|
|
|
|
|
Requires: {{mingw}}-winpthreads-static
|
|
|
|
|
|
|
|
Requires: {{name}} = {{verrel}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description std-static-{{triple}}
|
|
|
|
|
|
|
|
This package includes the standard libraries for building applications
|
|
|
|
|
|
|
|
written in Rust for the MinGW target {{triple}}.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
]], "{{(%w+)}}", subs)
|
|
|
|
%if %target_enabled x86_64-pc-windows-gnu
|
|
|
|
print(s)
|
|
|
|
%target_package x86_64-pc-windows-gnu
|
|
|
|
end
|
|
|
|
Requires: mingw64-crt
|
|
|
|
end}
|
|
|
|
Requires: mingw64-gcc
|
|
|
|
|
|
|
|
Requires: mingw64-winpthreads-static
|
|
|
|
|
|
|
|
Provides: mingw64-rust = %{version}-%{release}
|
|
|
|
|
|
|
|
Provides: mingw64-rustc = %{version}-%{release}
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%target_description x86_64-pc-windows-gnu MinGW
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if %defined wasm_targets
|
|
|
|
%if %target_enabled wasm32-unknown-unknown
|
|
|
|
%{lua: do
|
|
|
|
%target_package wasm32-unknown-unknown
|
|
|
|
for triple in string.gmatch(rpm.expand("%{wasm_targets}"), "%S+") do
|
|
|
|
Requires: lld >= 8.0
|
|
|
|
local subs = {
|
|
|
|
|
|
|
|
triple = triple,
|
|
|
|
|
|
|
|
name = rpm.expand("%{name}"),
|
|
|
|
|
|
|
|
verrel = rpm.expand("%{version}-%{release}"),
|
|
|
|
|
|
|
|
wasi = string.find(triple, "-wasi") and 1 or 0,
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
local s = string.gsub([[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package std-static-{{triple}}
|
|
|
|
|
|
|
|
Summary: Standard library for Rust {{triple}}
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildArch: noarch
|
|
|
|
Requires: {{name}} = {{verrel}}
|
|
|
|
%target_description wasm32-unknown-unknown WebAssembly
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %target_enabled wasm32-wasi
|
|
|
|
|
|
|
|
%target_package wasm32-wasi
|
|
|
|
Requires: lld >= 8.0
|
|
|
|
Requires: lld >= 8.0
|
|
|
|
%if {{wasi}}
|
|
|
|
%if %with bundled_wasi_libc
|
|
|
|
Provides: bundled(wasi-libc)
|
|
|
|
Provides: bundled(wasi-libc)
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
Requires: wasi-libc-static
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%target_description wasm32-wasi WebAssembly
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%description std-static-{{triple}}
|
|
|
|
%if %target_enabled x86_64-unknown-none
|
|
|
|
This package includes the standard libraries for building applications
|
|
|
|
%target_package x86_64-unknown-none
|
|
|
|
written in Rust for the WebAssembly target {{triple}}.
|
|
|
|
Requires: lld
|
|
|
|
|
|
|
|
%target_description x86_64-unknown-none embedded
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
]], "{{(%w+)}}", subs)
|
|
|
|
%if %target_enabled x86_64-unknown-uefi
|
|
|
|
print(s)
|
|
|
|
%target_package x86_64-unknown-uefi
|
|
|
|
end
|
|
|
|
Requires: lld
|
|
|
|
end}
|
|
|
|
%target_description x86_64-unknown-uefi embedded
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -437,8 +411,6 @@ This package includes the rust-gdb script, which allows easier debugging of Rust
|
|
|
|
programs.
|
|
|
|
programs.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %with lldb
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package lldb
|
|
|
|
%package lldb
|
|
|
|
Summary: LLDB pretty printers for Rust
|
|
|
|
Summary: LLDB pretty printers for Rust
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildArch: noarch
|
|
|
@ -450,8 +422,6 @@ Requires: %{name}-debugger-common = %{version}-%{release}
|
|
|
|
This package includes the rust-lldb script, which allows easier debugging of Rust
|
|
|
|
This package includes the rust-lldb script, which allows easier debugging of Rust
|
|
|
|
programs.
|
|
|
|
programs.
|
|
|
|
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package doc
|
|
|
|
%package doc
|
|
|
|
Summary: Documentation for Rust
|
|
|
|
Summary: Documentation for Rust
|
|
|
@ -495,6 +465,9 @@ and ensure that you'll always get a repeatable build.
|
|
|
|
Summary: Tool to find and fix Rust formatting issues
|
|
|
|
Summary: Tool to find and fix Rust formatting issues
|
|
|
|
Requires: cargo
|
|
|
|
Requires: cargo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# /usr/bin/rustfmt is dynamically linked against internal rustc libs
|
|
|
|
|
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
|
|
# The component/package was rustfmt-preview until Rust 1.31.
|
|
|
|
# The component/package was rustfmt-preview until Rust 1.31.
|
|
|
|
Obsoletes: rustfmt-preview < 1.0.0
|
|
|
|
Obsoletes: rustfmt-preview < 1.0.0
|
|
|
|
Provides: rustfmt-preview = %{version}-%{release}
|
|
|
|
Provides: rustfmt-preview = %{version}-%{release}
|
|
|
@ -507,11 +480,7 @@ A tool for formatting Rust code according to style guidelines.
|
|
|
|
Summary: Rust implementation of the Language Server Protocol
|
|
|
|
Summary: Rust implementation of the Language Server Protocol
|
|
|
|
|
|
|
|
|
|
|
|
# The standard library sources are needed for most functionality.
|
|
|
|
# The standard library sources are needed for most functionality.
|
|
|
|
%if 0%{?rhel} && 0%{?rhel} < 8
|
|
|
|
|
|
|
|
Requires: %{name}-src
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
Recommends: %{name}-src
|
|
|
|
Recommends: %{name}-src
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# RLS is no longer available as of Rust 1.65, but we're including the stub
|
|
|
|
# RLS is no longer available as of Rust 1.65, but we're including the stub
|
|
|
|
# binary that implements LSP just enough to recommend rust-analyzer.
|
|
|
|
# binary that implements LSP just enough to recommend rust-analyzer.
|
|
|
@ -542,11 +511,7 @@ A collection of lints to catch common mistakes and improve your Rust code.
|
|
|
|
%package src
|
|
|
|
%package src
|
|
|
|
Summary: Sources for the Rust standard library
|
|
|
|
Summary: Sources for the Rust standard library
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildArch: noarch
|
|
|
|
%if 0%{?rhel} && 0%{?rhel} < 8
|
|
|
|
|
|
|
|
Requires: %{name}-std-static = %{version}-%{release}
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
Recommends: %{name}-std-static = %{version}-%{release}
|
|
|
|
Recommends: %{name}-std-static = %{version}-%{release}
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%description src
|
|
|
|
%description src
|
|
|
|
This package includes source files for the Rust standard library. It may be
|
|
|
|
This package includes source files for the Rust standard library. It may be
|
|
|
@ -582,8 +547,9 @@ test -f '%{local_rust_root}/bin/cargo'
|
|
|
|
test -f '%{local_rust_root}/bin/rustc'
|
|
|
|
test -f '%{local_rust_root}/bin/rustc'
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if %defined wasm_targets
|
|
|
|
%if %{defined wasm_targets} && %{with bundled_wasi_libc}
|
|
|
|
%setup -q -n %{wasi_libc_name} -T -b 1
|
|
|
|
%setup -q -n %{wasi_libc_name} -T -b 1
|
|
|
|
|
|
|
|
rm -rf %{wasi_libc_dir}/dlmalloc/
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%setup -q -n %{rustc_package}
|
|
|
|
%setup -q -n %{rustc_package}
|
|
|
@ -592,17 +558,15 @@ test -f '%{local_rust_root}/bin/rustc'
|
|
|
|
%patch -P2 -p1
|
|
|
|
%patch -P2 -p1
|
|
|
|
%patch -P3 -p1
|
|
|
|
%patch -P3 -p1
|
|
|
|
%patch -P4 -p1
|
|
|
|
%patch -P4 -p1
|
|
|
|
|
|
|
|
%if %without bundled_wasi_libc
|
|
|
|
%patch -P5 -p1
|
|
|
|
%patch -P5 -p1
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%patch -P6 -p1
|
|
|
|
|
|
|
|
|
|
|
|
%if %with disabled_libssh2
|
|
|
|
%if %with disabled_libssh2
|
|
|
|
%patch -P100 -p1
|
|
|
|
%patch -P100 -p1
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if %without curl_http2
|
|
|
|
|
|
|
|
%patch -P101 -p1
|
|
|
|
|
|
|
|
rm -rf vendor/libnghttp2-sys*/
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Use our explicit python3 first
|
|
|
|
# Use our explicit python3 first
|
|
|
|
sed -i.try-python -e '/^try python3 /i try "%{__python3}" "$@"' ./configure
|
|
|
|
sed -i.try-python -e '/^try python3 /i try "%{__python3}" "$@"' ./configure
|
|
|
|
|
|
|
|
|
|
|
@ -614,18 +578,21 @@ rm -rf src/llvm-project/
|
|
|
|
mkdir -p src/llvm-project/libunwind/
|
|
|
|
mkdir -p src/llvm-project/libunwind/
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
# Remove other unused vendored libraries
|
|
|
|
|
|
|
|
rm -rf vendor/curl-sys*/curl/
|
|
|
|
# Remove other unused vendored libraries. This leaves the directory in place,
|
|
|
|
rm -rf vendor/*jemalloc-sys*/jemalloc/
|
|
|
|
# because some build scripts watch them, e.g. "cargo:rerun-if-changed=curl".
|
|
|
|
rm -rf vendor/libffi-sys*/libffi/
|
|
|
|
%define clear_dir() find ./%1 -mindepth 1 -delete
|
|
|
|
rm -rf vendor/libmimalloc-sys*/c_src/mimalloc/
|
|
|
|
%clear_dir vendor/curl-sys*/curl/
|
|
|
|
rm -rf vendor/libssh2-sys*/libssh2/
|
|
|
|
%clear_dir vendor/*jemalloc-sys*/jemalloc/
|
|
|
|
rm -rf vendor/libz-sys*/src/zlib{,-ng}/
|
|
|
|
%clear_dir vendor/libffi-sys*/libffi/
|
|
|
|
rm -rf vendor/lzma-sys*/xz-*/
|
|
|
|
%clear_dir vendor/libmimalloc-sys*/c_src/mimalloc/
|
|
|
|
rm -rf vendor/openssl-src*/openssl/
|
|
|
|
%clear_dir vendor/libssh2-sys*/libssh2/
|
|
|
|
|
|
|
|
%clear_dir vendor/libz-sys*/src/zlib{,-ng}/
|
|
|
|
|
|
|
|
%clear_dir vendor/lzma-sys*/xz-*/
|
|
|
|
|
|
|
|
%clear_dir vendor/openssl-src*/openssl/
|
|
|
|
|
|
|
|
|
|
|
|
%if %without bundled_libgit2
|
|
|
|
%if %without bundled_libgit2
|
|
|
|
rm -rf vendor/libgit2-sys*/libgit2/
|
|
|
|
%clear_dir vendor/libgit2-sys*/libgit2/
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if %with disabled_libssh2
|
|
|
|
%if %with disabled_libssh2
|
|
|
@ -633,13 +600,7 @@ rm -rf vendor/libssh2-sys*/
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
# This only affects the transient rust-installer, but let it use our dynamic xz-libs
|
|
|
|
# This only affects the transient rust-installer, but let it use our dynamic xz-libs
|
|
|
|
sed -i.lzma -e '/LZMA_API_STATIC/d' src/bootstrap/tool.rs
|
|
|
|
sed -i.lzma -e '/LZMA_API_STATIC/d' src/bootstrap/src/core/build_steps/tool.rs
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with bundled_llvm} && 0%{?epel} == 7
|
|
|
|
|
|
|
|
mkdir -p cmake-bin
|
|
|
|
|
|
|
|
ln -s /usr/bin/cmake3 cmake-bin/cmake
|
|
|
|
|
|
|
|
%global cmake_path $PWD/cmake-bin
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{without bundled_llvm} && %{with llvm_static}
|
|
|
|
%if %{without bundled_llvm} && %{with llvm_static}
|
|
|
|
# Static linking to distro LLVM needs to add -lffi
|
|
|
|
# Static linking to distro LLVM needs to add -lffi
|
|
|
@ -665,7 +626,7 @@ find -name '*.rs' -type f -perm /111 -exec chmod -v -x '{}' '+'
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
# These are similar to __cflags_arch_* in /usr/lib/rpm/redhat/macros
|
|
|
|
# These are similar to __cflags_arch_* in /usr/lib/rpm/redhat/macros
|
|
|
|
%{lua: function rustc_target_cpus()
|
|
|
|
%global rustc_target_cpus %{lua: do
|
|
|
|
local fedora = tonumber(rpm.expand("0%{?fedora}"))
|
|
|
|
local fedora = tonumber(rpm.expand("0%{?fedora}"))
|
|
|
|
local rhel = tonumber(rpm.expand("0%{?rhel}"))
|
|
|
|
local rhel = tonumber(rpm.expand("0%{?rhel}"))
|
|
|
|
local env =
|
|
|
|
local env =
|
|
|
@ -674,14 +635,11 @@ find -name '*.rs' -type f -perm /111 -exec chmod -v -x '{}' '+'
|
|
|
|
.. " RUSTC_TARGET_CPU_S390X=" ..
|
|
|
|
.. " RUSTC_TARGET_CPU_S390X=" ..
|
|
|
|
((rhel >= 9) and "z14" or (rhel == 8 or fedora >= 38) and "z13" or
|
|
|
|
((rhel >= 9) and "z14" or (rhel == 8 or fedora >= 38) and "z13" or
|
|
|
|
(fedora >= 26) and "zEC12" or (rhel == 7) and "z196" or "z10")
|
|
|
|
(fedora >= 26) and "zEC12" or (rhel == 7) and "z196" or "z10")
|
|
|
|
return env
|
|
|
|
print(env)
|
|
|
|
end}
|
|
|
|
end}
|
|
|
|
|
|
|
|
|
|
|
|
# Set up shared environment variables for build/install/check
|
|
|
|
# Set up shared environment variables for build/install/check
|
|
|
|
%global rust_env %{?rustflags:RUSTFLAGS="%{rustflags}"} %{lua: print(rustc_target_cpus())}
|
|
|
|
%global rust_env %{?rustflags:RUSTFLAGS="%{rustflags}"} %{rustc_target_cpus}
|
|
|
|
%if %defined cmake_path
|
|
|
|
|
|
|
|
%global rust_env %{?rust_env} PATH="%{cmake_path}:$PATH"
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %without disabled_libssh2
|
|
|
|
%if %without disabled_libssh2
|
|
|
|
# convince libssh2-sys to use the distro libssh2
|
|
|
|
# convince libssh2-sys to use the distro libssh2
|
|
|
|
%global rust_env %{?rust_env} LIBSSH2_SYS_USE_PKG_CONFIG=1
|
|
|
|
%global rust_env %{?rust_env} LIBSSH2_SYS_USE_PKG_CONFIG=1
|
|
|
@ -692,17 +650,13 @@ end}
|
|
|
|
%{export_rust_env}
|
|
|
|
%{export_rust_env}
|
|
|
|
|
|
|
|
|
|
|
|
%ifarch %{arm} %{ix86}
|
|
|
|
%ifarch %{arm} %{ix86}
|
|
|
|
# full debuginfo is exhausting memory; just do libstd for now
|
|
|
|
# full debuginfo and compiler opts are exhausting memory; just do libstd for now
|
|
|
|
# https://github.com/rust-lang/rust/issues/45854
|
|
|
|
# https://github.com/rust-lang/rust/issues/45854
|
|
|
|
%if 0%{?rhel} && 0%{?rhel} < 8
|
|
|
|
|
|
|
|
# Older rpmbuild didn't work with partial debuginfo coverage.
|
|
|
|
|
|
|
|
%global debug_package %{nil}
|
|
|
|
|
|
|
|
%define enable_debuginfo --debuginfo-level=0
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
%define enable_debuginfo --debuginfo-level=0 --debuginfo-level-std=2
|
|
|
|
%define enable_debuginfo --debuginfo-level=0 --debuginfo-level-std=2
|
|
|
|
%endif
|
|
|
|
%define enable_rust_opts --set rust.codegen-units-std=1
|
|
|
|
%else
|
|
|
|
%else
|
|
|
|
%define enable_debuginfo --debuginfo-level=2
|
|
|
|
%define enable_debuginfo --debuginfo-level=2
|
|
|
|
|
|
|
|
%define enable_rust_opts --set rust.codegen-units=1 --set rust.lto=thin
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
# Some builders have relatively little memory for their CPU count.
|
|
|
|
# Some builders have relatively little memory for their CPU count.
|
|
|
@ -714,45 +668,40 @@ if [ "$max_cpus" -ge 1 -a "$max_cpus" -lt "$ncpus" ]; then
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
%if %defined mingw_targets
|
|
|
|
%if %defined mingw_targets
|
|
|
|
%{lua: do
|
|
|
|
%define mingw_target_config %{shrink:
|
|
|
|
local cfg = ""
|
|
|
|
--set target.i686-pc-windows-gnu.linker=%{mingw32_cc}
|
|
|
|
for triple in string.gmatch(rpm.expand("%{mingw_targets}"), "%S+") do
|
|
|
|
--set target.i686-pc-windows-gnu.cc=%{mingw32_cc}
|
|
|
|
local subs = {
|
|
|
|
--set target.i686-pc-windows-gnu.ar=%{mingw32_ar}
|
|
|
|
triple = triple,
|
|
|
|
--set target.i686-pc-windows-gnu.ranlib=%{mingw32_ranlib}
|
|
|
|
mingw = string.sub(triple, 1, 4) == "i686" and "mingw32" or "mingw64",
|
|
|
|
--set target.i686-pc-windows-gnu.self-contained=false
|
|
|
|
}
|
|
|
|
--set target.x86_64-pc-windows-gnu.linker=%{mingw64_cc}
|
|
|
|
local s = string.gsub([[
|
|
|
|
--set target.x86_64-pc-windows-gnu.cc=%{mingw64_cc}
|
|
|
|
--set target.{{triple}}.linker=%{{{mingw}}_cc}
|
|
|
|
--set target.x86_64-pc-windows-gnu.ar=%{mingw64_ar}
|
|
|
|
--set target.{{triple}}.cc=%{{{mingw}}_cc}
|
|
|
|
--set target.x86_64-pc-windows-gnu.ranlib=%{mingw64_ranlib}
|
|
|
|
--set target.{{triple}}.ar=%{{{mingw}}_ar}
|
|
|
|
--set target.x86_64-pc-windows-gnu.self-contained=false
|
|
|
|
--set target.{{triple}}.ranlib=%{{{mingw}}_ranlib}
|
|
|
|
}
|
|
|
|
]], "{{(%w+)}}", subs)
|
|
|
|
|
|
|
|
cfg = cfg .. " " .. s
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
cfg = string.gsub(cfg, "%s+", " ")
|
|
|
|
|
|
|
|
rpm.define("mingw_target_config " .. cfg)
|
|
|
|
|
|
|
|
end}
|
|
|
|
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if %defined wasm_targets
|
|
|
|
%if %defined wasm_targets
|
|
|
|
%make_build --quiet -C %{wasi_libc_dir} CC=clang AR=llvm-ar NM=llvm-nm
|
|
|
|
%if %with bundled_wasi_libc
|
|
|
|
%{lua: do
|
|
|
|
%make_build --quiet -C %{wasi_libc_dir} MALLOC_IMPL=emmalloc CC=clang AR=llvm-ar NM=llvm-nm
|
|
|
|
local wasi_root = rpm.expand("%{wasi_libc_dir}") .. "/sysroot"
|
|
|
|
%define wasm_target_config --set target.wasm32-wasi.wasi-root=%{wasi_libc_dir}/sysroot
|
|
|
|
local cfg = ""
|
|
|
|
%else
|
|
|
|
for triple in string.gmatch(rpm.expand("%{wasm_targets}"), "%S+") do
|
|
|
|
%define wasm_target_config %{shrink:
|
|
|
|
if string.find(triple, "-wasi") then
|
|
|
|
--set target.wasm32-wasi.wasi-root=%{_prefix}/wasm32-wasi
|
|
|
|
cfg = cfg .. " --set target." .. triple .. ".wasi-root=" .. wasi_root
|
|
|
|
--set target.wasm32-wasi.self-contained=false
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
%endif
|
|
|
|
rpm.define("wasm_target_config "..cfg)
|
|
|
|
|
|
|
|
end}
|
|
|
|
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if 0%{?fedora} || 0%{?rhel} >= 8
|
|
|
|
# Find the compiler-rt library for the Rust profiler_builtins crate.
|
|
|
|
# The exact profiler path is version dependent, and uses LLVM-specific
|
|
|
|
%if 0%{?clang_major_version} >= 17
|
|
|
|
# arch names in the filename, but this find is good enough for now...
|
|
|
|
%define profiler %{clang_resource_dir}/lib/%{_arch}-redhat-linux-gnu/libclang_rt.profile.a
|
|
|
|
PROFILER=$(find %{_libdir}/clang -type f -name 'libclang_rt.profile-*.a')
|
|
|
|
%else
|
|
|
|
|
|
|
|
# The exact profiler path is version dependent..
|
|
|
|
|
|
|
|
%define profiler %(echo %{_libdir}/clang/??/lib/libclang_rt.profile-*.a)
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
test -r "%{profiler}"
|
|
|
|
|
|
|
|
|
|
|
|
%configure --disable-option-checking \
|
|
|
|
%configure --disable-option-checking \
|
|
|
|
--libdir=%{common_libdir} \
|
|
|
|
--libdir=%{common_libdir} \
|
|
|
@ -762,7 +711,7 @@ PROFILER=$(find %{_libdir}/clang -type f -name 'libclang_rt.profile-*.a')
|
|
|
|
--set target.%{rust_triple}.cxx=%{__cxx} \
|
|
|
|
--set target.%{rust_triple}.cxx=%{__cxx} \
|
|
|
|
--set target.%{rust_triple}.ar=%{__ar} \
|
|
|
|
--set target.%{rust_triple}.ar=%{__ar} \
|
|
|
|
--set target.%{rust_triple}.ranlib=%{__ranlib} \
|
|
|
|
--set target.%{rust_triple}.ranlib=%{__ranlib} \
|
|
|
|
${PROFILER:+--set target.%{rust_triple}.profiler="$PROFILER"} \
|
|
|
|
--set target.%{rust_triple}.profiler="%{profiler}" \
|
|
|
|
%{?mingw_target_config} \
|
|
|
|
%{?mingw_target_config} \
|
|
|
|
%{?wasm_target_config} \
|
|
|
|
%{?wasm_target_config} \
|
|
|
|
--python=%{__python3} \
|
|
|
|
--python=%{__python3} \
|
|
|
@ -774,7 +723,7 @@ PROFILER=$(find %{_libdir}/clang -type f -name 'libclang_rt.profile-*.a')
|
|
|
|
--disable-llvm-static-stdcpp \
|
|
|
|
--disable-llvm-static-stdcpp \
|
|
|
|
--disable-rpath \
|
|
|
|
--disable-rpath \
|
|
|
|
%{enable_debuginfo} \
|
|
|
|
%{enable_debuginfo} \
|
|
|
|
--set rust.codegen-units-std=1 \
|
|
|
|
%{enable_rust_opts} \
|
|
|
|
--set build.build-stage=2 \
|
|
|
|
--set build.build-stage=2 \
|
|
|
|
--set build.doc-stage=2 \
|
|
|
|
--set build.doc-stage=2 \
|
|
|
|
--set build.install-stage=2 \
|
|
|
|
--set build.install-stage=2 \
|
|
|
@ -787,11 +736,32 @@ PROFILER=$(find %{_libdir}/clang -type f -name 'libclang_rt.profile-*.a')
|
|
|
|
--release-channel=%{channel} \
|
|
|
|
--release-channel=%{channel} \
|
|
|
|
--release-description="%{?fedora:Fedora }%{?rhel:Red Hat }%{version}-%{release}"
|
|
|
|
--release-description="%{?fedora:Fedora }%{?rhel:Red Hat }%{version}-%{release}"
|
|
|
|
|
|
|
|
|
|
|
|
%{__python3} ./x.py build -j "$ncpus"
|
|
|
|
%global __x %{__python3} ./x.py
|
|
|
|
%{__python3} ./x.py doc
|
|
|
|
%global __xk %{__x} --keep-stage=0 --keep-stage=1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %with rustc_pgo
|
|
|
|
|
|
|
|
# Build the compiler with profile instrumentation
|
|
|
|
|
|
|
|
PROFRAW="$PWD/build/profiles"
|
|
|
|
|
|
|
|
PROFDATA="$PWD/build/rustc.profdata"
|
|
|
|
|
|
|
|
mkdir -p "$PROFRAW"
|
|
|
|
|
|
|
|
%{__x} build -j "$ncpus" sysroot --rust-profile-generate="$PROFRAW"
|
|
|
|
|
|
|
|
# Build cargo as a workload to generate compiler profiles
|
|
|
|
|
|
|
|
env LLVM_PROFILE_FILE="$PROFRAW/default_%%m_%%p.profraw" %{__xk} build cargo
|
|
|
|
|
|
|
|
llvm-profdata merge -o "$PROFDATA" "$PROFRAW"
|
|
|
|
|
|
|
|
rm -r "$PROFRAW" build/%{rust_triple}/stage2*/
|
|
|
|
|
|
|
|
# Rebuild the compiler using the profile data
|
|
|
|
|
|
|
|
%{__x} build -j "$ncpus" sysroot --rust-profile-use="$PROFDATA"
|
|
|
|
|
|
|
|
%else
|
|
|
|
|
|
|
|
# Build the compiler without PGO
|
|
|
|
|
|
|
|
%{__x} build -j "$ncpus" sysroot
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Build everything else normally
|
|
|
|
|
|
|
|
%{__xk} build
|
|
|
|
|
|
|
|
%{__xk} doc
|
|
|
|
|
|
|
|
|
|
|
|
for triple in %{?mingw_targets} %{?wasm_targets}; do
|
|
|
|
for triple in %{?all_targets} ; do
|
|
|
|
%{__python3} ./x.py build --target=$triple std
|
|
|
|
%{__xk} build --target=$triple std
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%install
|
|
|
@ -800,10 +770,10 @@ done
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
%{export_rust_env}
|
|
|
|
%{export_rust_env}
|
|
|
|
|
|
|
|
|
|
|
|
DESTDIR=%{buildroot} %{__python3} ./x.py install
|
|
|
|
DESTDIR=%{buildroot} %{__xk} install
|
|
|
|
|
|
|
|
|
|
|
|
for triple in %{?mingw_targets} %{?wasm_targets}; do
|
|
|
|
for triple in %{?all_targets} ; do
|
|
|
|
DESTDIR=%{buildroot} %{__python3} ./x.py install --target=$triple std
|
|
|
|
DESTDIR=%{buildroot} %{__xk} install --target=$triple std
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
# The rls stub doesn't have an install target, but we can just copy it.
|
|
|
|
# The rls stub doesn't have an install target, but we can just copy it.
|
|
|
@ -873,11 +843,6 @@ mkdir -p %{buildroot}%{_datadir}/cargo/registry
|
|
|
|
mkdir -p %{buildroot}%{_docdir}/cargo
|
|
|
|
mkdir -p %{buildroot}%{_docdir}/cargo
|
|
|
|
ln -sT ../rust/html/cargo/ %{buildroot}%{_docdir}/cargo/html
|
|
|
|
ln -sT ../rust/html/cargo/ %{buildroot}%{_docdir}/cargo/html
|
|
|
|
|
|
|
|
|
|
|
|
%if %without lldb
|
|
|
|
|
|
|
|
rm -f %{buildroot}%{_bindir}/rust-lldb
|
|
|
|
|
|
|
|
rm -f %{buildroot}%{rustlibdir}/etc/lldb_*
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# We don't want Rust copies of LLVM tools (rust-lld, rust-llvm-dwp)
|
|
|
|
# We don't want Rust copies of LLVM tools (rust-lld, rust-llvm-dwp)
|
|
|
|
rm -f %{buildroot}%{rustlibdir}/%{rust_triple}/bin/rust-ll*
|
|
|
|
rm -f %{buildroot}%{rustlibdir}/%{rust_triple}/bin/rust-ll*
|
|
|
|
|
|
|
|
|
|
|
@ -894,34 +859,41 @@ rm -f %{buildroot}%{rustlibdir}/%{rust_triple}/bin/rust-ll*
|
|
|
|
%{export_rust_env}
|
|
|
|
%{export_rust_env}
|
|
|
|
|
|
|
|
|
|
|
|
# Sanity-check the installed binaries, debuginfo-stripped and all.
|
|
|
|
# Sanity-check the installed binaries, debuginfo-stripped and all.
|
|
|
|
%{buildroot}%{_bindir}/cargo new build/hello-world
|
|
|
|
TMP_HELLO=$(mktemp -d)
|
|
|
|
env RUSTC=%{buildroot}%{_bindir}/rustc \
|
|
|
|
(
|
|
|
|
LD_LIBRARY_PATH="%{buildroot}%{_libdir}:$LD_LIBRARY_PATH" \
|
|
|
|
cd "$TMP_HELLO"
|
|
|
|
%{buildroot}%{_bindir}/cargo run --manifest-path build/hello-world/Cargo.toml
|
|
|
|
export RUSTC=%{buildroot}%{_bindir}/rustc \
|
|
|
|
|
|
|
|
LD_LIBRARY_PATH="%{buildroot}%{_libdir}:$LD_LIBRARY_PATH"
|
|
|
|
# Try a build sanity-check for other targets
|
|
|
|
%{buildroot}%{_bindir}/cargo init --name hello-world
|
|
|
|
for triple in %{?mingw_targets} %{?wasm_targets}; do
|
|
|
|
%{buildroot}%{_bindir}/cargo run --verbose
|
|
|
|
env RUSTC=%{buildroot}%{_bindir}/rustc \
|
|
|
|
|
|
|
|
LD_LIBRARY_PATH="%{buildroot}%{_libdir}:$LD_LIBRARY_PATH" \
|
|
|
|
# Sanity-check that code-coverage builds and runs
|
|
|
|
%{buildroot}%{_bindir}/cargo build --manifest-path build/hello-world/Cargo.toml --target=$triple
|
|
|
|
env RUSTFLAGS="-Cinstrument-coverage" %{buildroot}%{_bindir}/cargo run --verbose
|
|
|
|
done
|
|
|
|
test -r default_*.profraw
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Try a build sanity-check for other std-enabled targets
|
|
|
|
|
|
|
|
for triple in %{?mingw_targets} %{?wasm_targets}; do
|
|
|
|
|
|
|
|
%{buildroot}%{_bindir}/cargo build --verbose --target=$triple
|
|
|
|
|
|
|
|
done
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
rm -rf "$TMP_HELLO"
|
|
|
|
|
|
|
|
|
|
|
|
# The results are not stable on koji, so mask errors and just log it.
|
|
|
|
# The results are not stable on koji, so mask errors and just log it.
|
|
|
|
# Some of the larger test artifacts are manually cleaned to save space.
|
|
|
|
# Some of the larger test artifacts are manually cleaned to save space.
|
|
|
|
|
|
|
|
|
|
|
|
# Bootstrap is excluded because it's not something we ship, and a lot of its
|
|
|
|
# Bootstrap is excluded because it's not something we ship, and a lot of its
|
|
|
|
# tests are geared toward the upstream CI environment.
|
|
|
|
# tests are geared toward the upstream CI environment.
|
|
|
|
%{__python3} ./x.py test --no-fail-fast --exclude src/bootstrap || :
|
|
|
|
%{__xk} test --no-fail-fast --skip src/bootstrap || :
|
|
|
|
rm -rf "./build/%{rust_triple}/test/"
|
|
|
|
rm -rf "./build/%{rust_triple}/test/"
|
|
|
|
|
|
|
|
|
|
|
|
%{__python3} ./x.py test --no-fail-fast cargo || :
|
|
|
|
%{__xk} test --no-fail-fast cargo || :
|
|
|
|
rm -rf "./build/%{rust_triple}/stage2-tools/%{rust_triple}/cit/"
|
|
|
|
rm -rf "./build/%{rust_triple}/stage2-tools/%{rust_triple}/cit/"
|
|
|
|
|
|
|
|
|
|
|
|
%{__python3} ./x.py test --no-fail-fast clippy || :
|
|
|
|
%{__xk} test --no-fail-fast clippy || :
|
|
|
|
|
|
|
|
|
|
|
|
%{__python3} ./x.py test --no-fail-fast rust-analyzer || :
|
|
|
|
%{__xk} test --no-fail-fast rust-analyzer || :
|
|
|
|
|
|
|
|
|
|
|
|
%{__python3} ./x.py test --no-fail-fast rustfmt || :
|
|
|
|
%{__xk} test --no-fail-fast rustfmt || :
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%ldconfig_scriptlets
|
|
|
|
%ldconfig_scriptlets
|
|
|
@ -948,58 +920,46 @@ rm -rf "./build/%{rust_triple}/stage2-tools/%{rust_triple}/cit/"
|
|
|
|
%dir %{rustlibdir}/%{rust_triple}/lib
|
|
|
|
%dir %{rustlibdir}/%{rust_triple}/lib
|
|
|
|
%{rustlibdir}/%{rust_triple}/lib/*.rlib
|
|
|
|
%{rustlibdir}/%{rust_triple}/lib/*.rlib
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%global target_files() \
|
|
|
|
|
|
|
|
%files std-static-%1 \
|
|
|
|
|
|
|
|
%dir %{rustlibdir} \
|
|
|
|
|
|
|
|
%dir %{rustlibdir}/%1 \
|
|
|
|
|
|
|
|
%dir %{rustlibdir}/%1/lib \
|
|
|
|
|
|
|
|
%{rustlibdir}/%1/lib/*.rlib
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %target_enabled i686-pc-windows-gnu
|
|
|
|
|
|
|
|
%target_files i686-pc-windows-gnu
|
|
|
|
|
|
|
|
%{rustlibdir}/i686-pc-windows-gnu/lib/rs*.o
|
|
|
|
|
|
|
|
%exclude %{rustlibdir}/i686-pc-windows-gnu/lib/*.dll
|
|
|
|
|
|
|
|
%exclude %{rustlibdir}/i686-pc-windows-gnu/lib/*.dll.a
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if %defined mingw_targets
|
|
|
|
%if %target_enabled x86_64-pc-windows-gnu
|
|
|
|
%{lua: do
|
|
|
|
%target_files x86_64-pc-windows-gnu
|
|
|
|
for triple in string.gmatch(rpm.expand("%{mingw_targets}"), "%S+") do
|
|
|
|
%{rustlibdir}/x86_64-pc-windows-gnu/lib/rs*.o
|
|
|
|
local subs = {
|
|
|
|
%exclude %{rustlibdir}/x86_64-pc-windows-gnu/lib/*.dll
|
|
|
|
triple = triple,
|
|
|
|
%exclude %{rustlibdir}/x86_64-pc-windows-gnu/lib/*.dll.a
|
|
|
|
rustlibdir = rpm.expand("%{rustlibdir}"),
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
local s = string.gsub([[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files std-static-{{triple}}
|
|
|
|
|
|
|
|
%dir {{rustlibdir}}
|
|
|
|
|
|
|
|
%dir {{rustlibdir}}/{{triple}}
|
|
|
|
|
|
|
|
%dir {{rustlibdir}}/{{triple}}/lib
|
|
|
|
|
|
|
|
{{rustlibdir}}/{{triple}}/lib/*.rlib
|
|
|
|
|
|
|
|
{{rustlibdir}}/{{triple}}/lib/rs*.o
|
|
|
|
|
|
|
|
%exclude {{rustlibdir}}/{{triple}}/lib/*.dll
|
|
|
|
|
|
|
|
%exclude {{rustlibdir}}/{{triple}}/lib/*.dll.a
|
|
|
|
|
|
|
|
%exclude {{rustlibdir}}/{{triple}}/lib/self-contained
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
]], "{{(%w+)}}", subs)
|
|
|
|
|
|
|
|
print(s)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end}
|
|
|
|
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %target_enabled wasm32-unknown-unknown
|
|
|
|
|
|
|
|
%target_files wasm32-unknown-unknown
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
%if %defined wasm_targets
|
|
|
|
%if %target_enabled wasm32-wasi
|
|
|
|
%{lua: do
|
|
|
|
%target_files wasm32-wasi
|
|
|
|
for triple in string.gmatch(rpm.expand("%{wasm_targets}"), "%S+") do
|
|
|
|
%if %with bundled_wasi_libc
|
|
|
|
local subs = {
|
|
|
|
%dir %{rustlibdir}/wasm32-wasi/lib/self-contained
|
|
|
|
triple = triple,
|
|
|
|
%{rustlibdir}/wasm32-wasi/lib/self-contained/crt*.o
|
|
|
|
rustlibdir = rpm.expand("%{rustlibdir}"),
|
|
|
|
%{rustlibdir}/wasm32-wasi/lib/self-contained/libc.a
|
|
|
|
wasi = string.find(triple, "-wasi") and 1 or 0,
|
|
|
|
%endif
|
|
|
|
}
|
|
|
|
|
|
|
|
local s = string.gsub([[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files std-static-{{triple}}
|
|
|
|
|
|
|
|
%dir {{rustlibdir}}
|
|
|
|
|
|
|
|
%dir {{rustlibdir}}/{{triple}}
|
|
|
|
|
|
|
|
%dir {{rustlibdir}}/{{triple}}/lib
|
|
|
|
|
|
|
|
{{rustlibdir}}/{{triple}}/lib/*.rlib
|
|
|
|
|
|
|
|
%if {{wasi}}
|
|
|
|
|
|
|
|
%dir {{rustlibdir}}/{{triple}}/lib/self-contained
|
|
|
|
|
|
|
|
{{rustlibdir}}/{{triple}}/lib/self-contained/crt*.o
|
|
|
|
|
|
|
|
{{rustlibdir}}/{{triple}}/lib/self-contained/libc.a
|
|
|
|
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
]], "{{(%w+)}}", subs)
|
|
|
|
%if %target_enabled x86_64-unknown-none
|
|
|
|
print(s)
|
|
|
|
%target_files x86_64-unknown-none
|
|
|
|
end
|
|
|
|
%endif
|
|
|
|
end}
|
|
|
|
|
|
|
|
|
|
|
|
%if %target_enabled x86_64-unknown-uefi
|
|
|
|
|
|
|
|
%target_files x86_64-unknown-uefi
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -1015,11 +975,9 @@ end}
|
|
|
|
%exclude %{_bindir}/rust-gdbgui
|
|
|
|
%exclude %{_bindir}/rust-gdbgui
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %with lldb
|
|
|
|
|
|
|
|
%files lldb
|
|
|
|
%files lldb
|
|
|
|
%{_bindir}/rust-lldb
|
|
|
|
%{_bindir}/rust-lldb
|
|
|
|
%{rustlibdir}/etc/lldb_*
|
|
|
|
%{rustlibdir}/etc/lldb_*
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files doc
|
|
|
|
%files doc
|
|
|
@ -1036,7 +994,6 @@ end}
|
|
|
|
%license src/tools/cargo/LICENSE-{APACHE,MIT,THIRD-PARTY}
|
|
|
|
%license src/tools/cargo/LICENSE-{APACHE,MIT,THIRD-PARTY}
|
|
|
|
%doc src/tools/cargo/README.md
|
|
|
|
%doc src/tools/cargo/README.md
|
|
|
|
%{_bindir}/cargo
|
|
|
|
%{_bindir}/cargo
|
|
|
|
%{_libexecdir}/cargo*
|
|
|
|
|
|
|
|
%{_mandir}/man1/cargo*.1*
|
|
|
|
%{_mandir}/man1/cargo*.1*
|
|
|
|
%{_sysconfdir}/bash_completion.d/cargo
|
|
|
|
%{_sysconfdir}/bash_completion.d/cargo
|
|
|
|
%{_datadir}/zsh/site-functions/_cargo
|
|
|
|
%{_datadir}/zsh/site-functions/_cargo
|
|
|
@ -1077,6 +1034,23 @@ end}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
%changelog
|
|
|
|
|
|
|
|
* Fri Jan 05 2024 Josh Stone <jistone@redhat.com> - 1.75.0-1
|
|
|
|
|
|
|
|
- Update to 1.75.0.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Fri Jan 05 2024 Josh Stone <jistone@redhat.com> - 1.74.1-2
|
|
|
|
|
|
|
|
- Rebuild in a new side-tag.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Wed Jan 03 2024 Josh Stone <jistone@redhat.com> - 1.74.1-1
|
|
|
|
|
|
|
|
- Update to 1.74.1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Oct 17 2023 Josh Stone <jistone@redhat.com> - 1.73.0-1
|
|
|
|
|
|
|
|
- Update to 1.73.0.
|
|
|
|
|
|
|
|
- Use emmalloc instead of CC0 dlmalloc when bundling wasi-libc
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Thu Oct 12 2023 Josh Stone <jistone@redhat.com> - 1.72.1-1
|
|
|
|
|
|
|
|
- Update to 1.72.1.
|
|
|
|
|
|
|
|
- Migrated to SPDX license
|
|
|
|
|
|
|
|
|
|
|
|
* Tue Aug 08 2023 Josh Stone <jistone@redhat.com> - 1.71.1-1
|
|
|
|
* Tue Aug 08 2023 Josh Stone <jistone@redhat.com> - 1.71.1-1
|
|
|
|
- Update to 1.71.1.
|
|
|
|
- Update to 1.71.1.
|
|
|
|
- Security fix for CVE-2023-38497
|
|
|
|
- Security fix for CVE-2023-38497
|
|
|
|