加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
jemalloc.spec 1.77 KB
一键复制 编辑 原始数据 按行查看 历史
yeah_wang 提交于 2019-12-13 18:21 . Package init
%ifarch x86_64
%define lg_page --with-lg-page=12
%endif
%ifarch aarch64
%define lg_page --with-lg-page=16
%endif
%ifarch aarch64
%define disable_thp --disable-thp
%endif
Name: jemalloc
Version: 5.1.0
Release: 3
Summary: General-purpose scalable concurrent malloc implementation
License: BSD
URL: http://www.canonware.com/jemalloc/
Source0: https://github.com/jemalloc/%{name}/releases/download/%{version}/%{name}-%{version}.tar.bz2
BuildRequires: libxslt perl-generators
%description
Implemented by malloc (3), is an independent implementation of jemalloc.
%package devel
Summary: Devel files for jemalloc
Requires: %{name} = %{version}-%{release}
%description devel
The devel contains libraries and header files for use in jemalloc applications.
%package help
Summary: help for jemalloc.
%description help
The help package contains manual pages and other related files for jemalloc.
%prep
%autosetup -p1
%build
export LDFLAGS="%{?__global_ldflags} -lrt"
getconf PAGESIZE
uname -a
%configure %{?disable_thp} %{?lg_page}
%make_build
%check
%if %{?_with_check:1}%{!?_with_check:0}
LD_LIBRARY_PATH=%{buildroot}%{_libdir} make test %{?_smp_mflags}
make check
%endif
%install
%make_install
%post
/sbin/ldconfig
%postun
/sbin/ldconfig
%files
%doc COPYING
%{_libdir}/libjemalloc.so.*
%{_bindir}/jemalloc.sh
%{_bindir}/jemalloc-config
%{_libdir}/pkgconfig/jemalloc.pc
%files devel
%{_includedir}/jemalloc
%{_bindir}/jeprof
%{_libdir}/libjemalloc.so
%exclude %{_libdir}/libjemalloc.a
%exclude %{_libdir}/libjemalloc_pic.a
%exclude %{_datadir}/doc/%{name}/jemalloc.html
%files help
%doc README VERSION doc/jemalloc.html
%{_mandir}/man3/jemalloc.3*
%changelog
* Thu Nov 14 2019 wangye<wangye54@huawei.com> - 5.1.0-3
- Package init
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化