import compiler-rt-13.0.0-1.module+el8.6.0+13042+9f423c45
This commit is contained in:
parent
3c4e650d66
commit
a3d196ceea
@ -1,2 +1,2 @@
|
|||||||
d33af648dc9b901c6c9f6c5872af2f59203f1a25 SOURCES/compiler-rt-12.0.1.src.tar.xz
|
f3241c200e739abbfa846c707175fd711d3cf4fe SOURCES/compiler-rt-13.0.0.src.tar.xz
|
||||||
b8d2648a01d36ed0186fd2c5af325fd28797f9a0 SOURCES/tstellar-gpg-key.asc
|
b8d2648a01d36ed0186fd2c5af325fd28797f9a0 SOURCES/tstellar-gpg-key.asc
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,2 @@
|
|||||||
SOURCES/compiler-rt-12.0.1.src.tar.xz
|
SOURCES/compiler-rt-13.0.0.src.tar.xz
|
||||||
SOURCES/tstellar-gpg-key.asc
|
SOURCES/tstellar-gpg-key.asc
|
||||||
|
@ -0,0 +1,25 @@
|
|||||||
|
From 72191190adea8e861e9a383b83799e7472b80e30 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Tom Stellard <tstellar@redhat.com>
|
||||||
|
Date: Thu, 23 Sep 2021 18:06:41 -0700
|
||||||
|
Subject: [PATCH] Fix compiler-rt arch detection for ppc64le
|
||||||
|
|
||||||
|
---
|
||||||
|
compiler-rt/cmake/base-config-ix.cmake | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/compiler-rt/cmake/base-config-ix.cmake b/compiler-rt/cmake/base-config-ix.cmake
|
||||||
|
index c11342e68813..3ca9dc0f5515 100644
|
||||||
|
--- a/compiler-rt/cmake/base-config-ix.cmake
|
||||||
|
+++ b/compiler-rt/cmake/base-config-ix.cmake
|
||||||
|
@@ -204,7 +204,7 @@ macro(test_targets)
|
||||||
|
test_target_arch(x86_64 "" "")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
- elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "powerpc64le")
|
||||||
|
+ elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "powerpc64le|ppc64le")
|
||||||
|
test_target_arch(powerpc64le "" "-m64")
|
||||||
|
elseif("${COMPILER_RT_DEFAULT_TARGET_ARCH}" MATCHES "powerpc")
|
||||||
|
if(CMAKE_SYSTEM_NAME MATCHES "AIX")
|
||||||
|
--
|
||||||
|
2.27.0
|
||||||
|
|
Binary file not shown.
BIN
SOURCES/compiler-rt-13.0.0.src.tar.xz.sig
Normal file
BIN
SOURCES/compiler-rt-13.0.0.src.tar.xz.sig
Normal file
Binary file not shown.
@ -1,6 +1,7 @@
|
|||||||
#%%global rc_ver 5
|
#global rc_ver 3
|
||||||
|
|
||||||
%global crt_srcdir compiler-rt-%{version}%{?rc_ver:rc%{rc_ver}}.src
|
%global compiler_rt_version 13.0.0
|
||||||
|
%global crt_srcdir compiler-rt-%{compiler_rt_version}%{?rc_ver:rc%{rc_ver}}.src
|
||||||
|
|
||||||
# see https://sourceware.org/bugzilla/show_bug.cgi?id=25271
|
# see https://sourceware.org/bugzilla/show_bug.cgi?id=25271
|
||||||
%global optflags %(echo %{optflags} -D_DEFAULT_SOURCE)
|
%global optflags %(echo %{optflags} -D_DEFAULT_SOURCE)
|
||||||
@ -9,17 +10,18 @@
|
|||||||
%global optflags %(echo %{optflags} -Dasm=__asm__)
|
%global optflags %(echo %{optflags} -Dasm=__asm__)
|
||||||
|
|
||||||
Name: compiler-rt
|
Name: compiler-rt
|
||||||
Version: 12.0.1%{?rc_ver:~rc%{rc_ver}}
|
Version: %{compiler_rt_version}%{?rc_ver:~rc%{rc_ver}}
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: LLVM "compiler-rt" runtime libraries
|
Summary: LLVM "compiler-rt" runtime libraries
|
||||||
|
|
||||||
License: NCSA or MIT
|
License: NCSA or MIT
|
||||||
URL: http://llvm.org
|
URL: http://llvm.org
|
||||||
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}%{?rc_ver:-rc%{rc_ver}}/%{crt_srcdir}.tar.xz
|
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{compiler_rt_version}%{?rc_ver:-rc%{rc_ver}}/%{crt_srcdir}.tar.xz
|
||||||
Source1: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}%{?rc_ver:-rc%{rc_ver}}/%{crt_srcdir}.tar.xz.sig
|
Source1: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{compiler_rt_version}%{?rc_ver:-rc%{rc_ver}}/%{crt_srcdir}.tar.xz.sig
|
||||||
Source2: tstellar-gpg-key.asc
|
Source2: tstellar-gpg-key.asc
|
||||||
|
|
||||||
Patch0: 0001-PATCH-compiler-rt-Workaround-libstdc-limitation-wrt..patch
|
Patch0: 0001-PATCH-compiler-rt-Workaround-libstdc-limitation-wrt..patch
|
||||||
|
Patch1: 0001-Fix-compiler-rt-arch-detection-for-ppc64le.patch
|
||||||
|
|
||||||
# RHEL-specific patches
|
# RHEL-specific patches
|
||||||
Patch100: 0001-Drop-fno-stack-protector-from-the-compiler-flags.patch
|
Patch100: 0001-Drop-fno-stack-protector-from-the-compiler-flags.patch
|
||||||
@ -70,15 +72,15 @@ cd %{_vpath_builddir}
|
|||||||
%cmake_install
|
%cmake_install
|
||||||
|
|
||||||
# move blacklist/abilist files to where clang expect them
|
# move blacklist/abilist files to where clang expect them
|
||||||
mkdir -p %{buildroot}%{_libdir}/clang/%{version}/share
|
mkdir -p %{buildroot}%{_libdir}/clang/%{compiler_rt_version}/share
|
||||||
mv -v %{buildroot}%{_datadir}/*list.txt %{buildroot}%{_libdir}/clang/%{version}/share/
|
mv -v %{buildroot}%{_datadir}/*list.txt %{buildroot}%{_libdir}/clang/%{compiler_rt_version}/share/
|
||||||
|
|
||||||
# move sanitizer libs to better place
|
# move sanitizer libs to better place
|
||||||
%global libclang_rt_installdir lib/linux
|
%global libclang_rt_installdir lib/linux
|
||||||
mkdir -p %{buildroot}%{_libdir}/clang/%{version}/lib
|
mkdir -p %{buildroot}%{_libdir}/clang/%{compiler_rt_version}/lib
|
||||||
mv -v %{buildroot}%{_prefix}/%{libclang_rt_installdir}/*clang_rt* %{buildroot}%{_libdir}/clang/%{version}/lib
|
mv -v %{buildroot}%{_prefix}/%{libclang_rt_installdir}/*clang_rt* %{buildroot}%{_libdir}/clang/%{compiler_rt_version}/lib
|
||||||
mkdir -p %{buildroot}%{_libdir}/clang/%{version}/lib/linux/
|
mkdir -p %{buildroot}%{_libdir}/clang/%{compiler_rt_version}/lib/linux/
|
||||||
pushd %{buildroot}%{_libdir}/clang/%{version}/lib
|
pushd %{buildroot}%{_libdir}/clang/%{compiler_rt_version}/lib
|
||||||
for i in *.a *.so
|
for i in *.a *.so
|
||||||
do
|
do
|
||||||
ln -s ../$i linux/$i
|
ln -s ../$i linux/$i
|
||||||
@ -88,11 +90,11 @@ done
|
|||||||
# the symlinks will be dangling if the 32 bits version is not installed, but that should be fine
|
# the symlinks will be dangling if the 32 bits version is not installed, but that should be fine
|
||||||
%ifarch x86_64
|
%ifarch x86_64
|
||||||
|
|
||||||
mkdir -p %{buildroot}/%{_exec_prefix}/lib/clang/%{version}/lib/linux
|
mkdir -p %{buildroot}/%{_exec_prefix}/lib/clang/%{compiler_rt_version}/lib/linux
|
||||||
for i in *.a *.so
|
for i in *.a *.so
|
||||||
do
|
do
|
||||||
target=`echo "$i" | sed -e 's/x86_64/i386/'`
|
target=`echo "$i" | sed -e 's/x86_64/i386/'`
|
||||||
ln -s ../../../../../lib/clang/%{version}/lib/$target ../../../../%{_lib}/clang/%{version}/lib/linux/
|
ln -s ../../../../../lib/clang/%{compiler_rt_version}/lib/$target ../../../../%{_lib}/clang/%{compiler_rt_version}/lib/linux/
|
||||||
done
|
done
|
||||||
|
|
||||||
%endif
|
%endif
|
||||||
@ -106,13 +108,16 @@ popd
|
|||||||
%files
|
%files
|
||||||
%license LICENSE.TXT
|
%license LICENSE.TXT
|
||||||
%{_includedir}/*
|
%{_includedir}/*
|
||||||
%{_libdir}/clang/%{version}/lib/*
|
%{_libdir}/clang/%{compiler_rt_version}/lib/*
|
||||||
%{_libdir}/clang/%{version}/share/*
|
%{_libdir}/clang/%{compiler_rt_version}/share/*
|
||||||
%ifarch x86_64 aarch64
|
%ifarch x86_64 aarch64
|
||||||
%{_bindir}/hwasan_symbolize
|
%{_bindir}/hwasan_symbolize
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Oct 15 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0-1
|
||||||
|
- 13.0.0 Release
|
||||||
|
|
||||||
* Fri Jul 16 2021 sguelton@redhat.com - 12.0.1-1
|
* Fri Jul 16 2021 sguelton@redhat.com - 12.0.1-1
|
||||||
- 12.0.1 release
|
- 12.0.1 release
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user