76 lines
2.1 KiB
RPMSpec
76 lines
2.1 KiB
RPMSpec
Name: compiler-rt
|
|
Version: 10.0.0
|
|
Release: 0
|
|
Summary: LLVM "compiler-rt" runtime libraries
|
|
License: NCSA or MIT
|
|
URL: http://llvm.org
|
|
Source0: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/%{name}-%{version}.src.tar.xz
|
|
BuildRequires: gcc gcc-c++ cmake python3 python3-devel
|
|
BuildRequires: llvm-devel = %{version} llvm-static = %{version}
|
|
|
|
%description
|
|
The compiler-rt project provides highly tuned implementations of the
|
|
low-level code generator support routines like "__fixunsdfdi" and other
|
|
calls generated when a target doesn't have a short sequence of native
|
|
instructions to implement a core IR operation.
|
|
|
|
%prep
|
|
%autosetup -n %{name}-%{version}.src -p1
|
|
pathfix.py -i %{__python3} -pn .
|
|
|
|
%build
|
|
mkdir -p _build
|
|
cd _build
|
|
%cmake .. \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
-DLLVM_CONFIG_PATH:FILEPATH=%{_bindir}/llvm-config-%{__isa_bits} \
|
|
\
|
|
%if 0%{?__isa_bits} == 64
|
|
-DLLVM_LIBDIR_SUFFIX=64 \
|
|
%else
|
|
-DLLVM_LIBDIR_SUFFIX= \
|
|
%endif
|
|
-DCOMPILER_RT_INCLUDE_TESTS:BOOL=OFF
|
|
|
|
%make_build
|
|
|
|
%install
|
|
cd _build
|
|
%make_install
|
|
|
|
mkdir -p %{buildroot}%{_libdir}/clang/%{version}/lib
|
|
|
|
%ifarch aarch64
|
|
%global aarch64_blacklists hwasan_blacklist.txt
|
|
%endif
|
|
|
|
for file in %{aarch64_blacklists} asan_blacklist.txt msan_blacklist.txt dfsan_blacklist.txt \
|
|
cfi_blacklist.txt dfsan_abilist.txt hwasan_blacklist.txt; do
|
|
mv -v %{buildroot}%{_datadir}/${file} %{buildroot}%{_libdir}/clang/%{version}/ || :
|
|
done
|
|
|
|
mv -v %{buildroot}%{_prefix}/lib/linux/libclang_rt* %{buildroot}%{_libdir}/clang/%{version}/lib
|
|
mv -v %{buildroot}%{_prefix}/lib/linux/clang_rt* %{buildroot}%{_libdir}/clang/%{version}/lib
|
|
mkdir -p %{buildroot}%{_libdir}/clang/%{version}/lib/linux/
|
|
pushd %{buildroot}%{_libdir}/clang/%{version}/lib
|
|
for i in *.a *.syms *.so; do
|
|
ln -s ../$i linux/$i
|
|
done
|
|
|
|
%check
|
|
cd _build
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%license LICENSE.TXT
|
|
%{_bindir}/hwasan_symbolize
|
|
%{_includedir}/*
|
|
%{_libdir}/clang/%{version}
|
|
|
|
%changelog
|
|
* Thu Jun 04 2020 SimpleUpdate Robot <tc@openeuler.org>
|
|
- Update to version 10.0.0
|
|
|
|
* Thu Dec 5 2019 openEuler Buildteam <buildteam@openeuler.org> - 7.0.0-2
|
|
- Package init
|