Compare commits
3 Commits
master
...
master-ris
Author | SHA1 | Date | |
---|---|---|---|
089d9798d2 | |||
a903328a1b | |||
1d7d0c6d5c |
@ -1,7 +1,7 @@
|
|||||||
Name: jemalloc
|
Name: jemalloc
|
||||||
Version: 5.2.0
|
Version: 5.2.0
|
||||||
|
|
||||||
Release: 1%{?dist}
|
Release: 1.0.riscv64%{?dist}
|
||||||
Summary: General-purpose scalable concurrent malloc implementation
|
Summary: General-purpose scalable concurrent malloc implementation
|
||||||
|
|
||||||
License: BSD
|
License: BSD
|
||||||
@ -11,9 +11,12 @@ Source0: https://github.com/jemalloc/%{name}/releases/download/%{version}
|
|||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: /usr/bin/xsltproc
|
BuildRequires: /usr/bin/xsltproc
|
||||||
BuildRequires: perl-generators
|
BuildRequires: perl-generators
|
||||||
%ifnarch s390 %{mips}
|
%ifarch %{valgrind_arches}
|
||||||
BuildRequires: valgrind-devel
|
BuildRequires: valgrind-devel
|
||||||
%endif
|
%endif
|
||||||
|
%ifarch riscv64
|
||||||
|
BuildRequires: libatomic
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
General-purpose scalable concurrent malloc(3) implementation.
|
General-purpose scalable concurrent malloc(3) implementation.
|
||||||
@ -31,7 +34,7 @@ developing applications that use %{name}.
|
|||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
# Override PAGESIZE, bz #1545539
|
# Override PAGESIZE, bz #1545539
|
||||||
%ifarch %ix86 %arm x86_64 s390x
|
%ifarch %ix86 %arm x86_64 s390x riscv64
|
||||||
%define lg_page --with-lg-page=12
|
%define lg_page --with-lg-page=12
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -40,7 +43,7 @@ developing applications that use %{name}.
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
# Disable thp on systems not supporting this for now
|
# Disable thp on systems not supporting this for now
|
||||||
%ifarch %ix86 %arm aarch64 s390x
|
%ifarch %ix86 %arm aarch64 s390x riscv64
|
||||||
%define disable_thp --disable-thp
|
%define disable_thp --disable-thp
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -56,6 +59,10 @@ CFLAGS="%{optflags} -msse2"
|
|||||||
export LDFLAGS="%{?__global_ldflags} -lrt"
|
export LDFLAGS="%{?__global_ldflags} -lrt"
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
%ifarch riscv64
|
||||||
|
export LDFLAGS="$LDFLAGS -latomic"
|
||||||
|
%endif
|
||||||
|
|
||||||
echo "For debugging package builders"
|
echo "For debugging package builders"
|
||||||
echo "What is the pagesize?"
|
echo "What is the pagesize?"
|
||||||
getconf PAGESIZE
|
getconf PAGESIZE
|
||||||
@ -104,6 +111,12 @@ find %{buildroot}%{_libdir}/ -name '*.a' -exec rm -vf {} ';'
|
|||||||
%ldconfig_scriptlets
|
%ldconfig_scriptlets
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jun 20 2019 David Abdurachmanov <david.abdurachmanov@sifive.com> - 5.2.0-1.0.riscv64
|
||||||
|
- Switch to %{valgrind_arches}
|
||||||
|
- Link to libatomic
|
||||||
|
- Set lg_page to 12 (4K page)
|
||||||
|
- Disable THP
|
||||||
|
|
||||||
* Wed Apr 03 2019 Ingvar Hagelund <ingvar@redpill-linpro.com> - 5.2.0-1
|
* Wed Apr 03 2019 Ingvar Hagelund <ingvar@redpill-linpro.com> - 5.2.0-1
|
||||||
- New upstream release
|
- New upstream release
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user