forked from pool/memkind
- Update to version 1.14.0 + Provided a memtier binary for common uses of memory tiering + Added memkind memtier API header file to installed headers + Added missing information in memkind memtier manpages + Upgraded jemalloc internal library to version 5.3.0 - Fixes to security issues + Added fixed kind for user-supplied memory area (along with the C++ allocator) + Provided a function memkind_get_capacity() to get the memory capacity of nodes available to a given kind + Added logging to file mechanism (enabled with an --enable-logging-to-file configure parameter) + Fixed wrong NUMA nodes masks for some of static kinds + Fixed building for different malloc_usable_size() implementations OBS-URL: https://build.opensuse.org/request/show/1035103 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/memkind?expand=0&rev=30
26 lines
779 B
Diff
26 lines
779 B
Diff
commit 5f4c89b9876e70e36b89742aed55e0c388ccaadf
|
|
Author: Michael Matz <matz@suse.com>
|
|
Date: Tue Aug 18 10:42:17 2020 +0200
|
|
|
|
memkind: fix build
|
|
|
|
We build with --disable-static, but the Makefile isn't completely
|
|
prepared for that, this removes the remaining hard-coded reference to
|
|
the static lib.
|
|
|
|
Signed-off-by: Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
|
|
|
Index: Makefile.am
|
|
===================================================================
|
|
--- Makefile.am.orig
|
|
+++ Makefile.am
|
|
@@ -672,7 +672,7 @@ memkind-$(VERSION).spec:
|
|
rpm: dist
|
|
$(MAKE) version="$(VERSION)" -f memkind.spec.mk $@
|
|
|
|
-all: jemalloc_deps static_lib
|
|
+all: jemalloc_deps
|
|
|
|
# the script merge memkind and jemalloc libraries into one static library.
|
|
define ar_prog
|