Add support for riscv64

Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
This commit is contained in:
David Abdurachmanov 2024-03-27 14:56:46 +02:00
parent 2fb3dc6141
commit 1130b11449
Signed by: davidlt
GPG Key ID: 7A5F42FAF91FACC3
1 changed files with 7 additions and 4 deletions

View File

@ -24,7 +24,7 @@
%bcond_without compat_build
%bcond_without check
%ifarch %ix86
%ifarch %ix86 riscv64
# Disable LTO on x86 in order to reduce memory consumption
%bcond_with lto_build
%elif %{with snapshot_build}
@ -93,7 +93,7 @@
Name: %{pkg_name}
Version: %{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:~rc%{rc_ver}}%{?llvm_snapshot_version_suffix:~%{llvm_snapshot_version_suffix}}
Release: 7%{?dist}
Release: 7.0.riscv64%{?dist}
Summary: The Low Level Virtual Machine
License: Apache-2.0 WITH LLVM-exception OR NCSA
@ -263,7 +263,7 @@ mv %{third_party_srcdir} third-party
%global _lto_cflags %nil
%endif
%ifarch s390 s390x %ix86
%ifarch s390 s390x %ix86 riscv64
# Decrease debuginfo verbosity to reduce memory consumption during final library linking
%global optflags %(echo %{optflags} | sed 's/-g /-g1 /')
%endif
@ -278,7 +278,7 @@ export ASMFLAGS="%{build_cflags}"
-DLLVM_PARALLEL_LINK_JOBS=1 \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_SKIP_RPATH:BOOL=ON \
%ifarch s390 %ix86
%ifarch s390 %ix86 riscv64
-DCMAKE_C_FLAGS_RELWITHDEBINFO="%{optflags} -DNDEBUG" \
-DCMAKE_CXX_FLAGS_RELWITHDEBINFO="%{optflags} -DNDEBUG" \
%endif
@ -586,6 +586,9 @@ fi
%changelog
* Wed Mar 27 2024 David Abdurachmanov <davidlt@rivosinc.com> - 17.0.6-7.0.riscv64
- Add support for riscv64
* Fri Mar 01 2024 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.6-7
- Force ldconfig execution in compat packages. Fixes rhbz#2001328.