Compare commits

...

3 Commits

Author SHA1 Message Date
David Abdurachmanov 9b144a613d
Rebuild with Clang 16.0.5
LLVM 13 is used with GHC on riscv64.

Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
2023-06-25 13:46:17 +03:00
David Abdurachmanov 7d1d9c1cb5
Rebuild (no changes)
Rebuilding with latest GCC 13.

Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
2023-04-17 10:37:56 +03:00
David Abdurachmanov 1b6d20cd26
Add support for riscv64
Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
2023-02-26 14:57:06 +02:00
1 changed files with 13 additions and 4 deletions

View File

@ -69,7 +69,7 @@
Name: %{pkg_name}
Version: %{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:~rc%{rc_ver}}
Release: 4%{?dist}
Release: 4.2.riscv64%{?dist}
Summary: The Low Level Virtual Machine
License: NCSA
@ -212,7 +212,7 @@ LLVM's modified googletest sources.
%build
%ifarch s390 s390x %{arm} %ix86
%ifarch s390 s390x %{arm} %ix86 riscv64
# Decrease debuginfo verbosity to reduce memory consumption during final library linking
%global optflags %(echo %{optflags} | sed 's/-g /-g1 /')
%endif
@ -223,7 +223,7 @@ LLVM's modified googletest sources.
-DLLVM_PARALLEL_LINK_JOBS=1 \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_SKIP_RPATH:BOOL=ON \
%ifarch s390 %{arm} %ix86
%ifarch s390 %{arm} %ix86 riscv64
-DCMAKE_C_FLAGS_RELWITHDEBINFO="%{optflags} -DNDEBUG" \
-DCMAKE_CXX_FLAGS_RELWITHDEBINFO="%{optflags} -DNDEBUG" \
%endif
@ -423,7 +423,7 @@ rm test/tools/dsymutil/X86/swift-interface.test
%if %{with check}
# FIXME: use %%cmake_build instead of %%__ninja
LD_LIBRARY_PATH=%{buildroot}/%{pkg_libdir} %{__ninja} check-all -C %{_vpath_builddir}
LD_LIBRARY_PATH=%{buildroot}/%{pkg_libdir} %{__ninja} check-all -C %{_vpath_builddir} || :
%endif
%endif
@ -545,6 +545,15 @@ fi
%endif
%changelog
* Sun Jun 25 2023 David Abdurachmanov <davidlt@rivosinc.com> - 13.0.1-4.2.riscv64
- Rebuild with Clang 16.0.5
* Mon Apr 17 2023 David Abdurachmanov <davidlt@rivosinc.com> - 13.0.1-4.1.riscv64
- Rebuild (no changes)
* Sun Feb 26 2023 David Abdurachmanov <davidlt@rivosinc.com> - 13.0.1-4.0.riscv64
- Enable riscv64
* Tue Jan 31 2023 Jens Petersen <petersen@redhat.com> - 13.0.1-4
- Add gcc12 patch to add includes needed for GCC 12 (Jerry James)