mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-19 00:18:26 +00:00
libmimalloc.so will be libmimalloc-secure.so if dev-libs/mimalloc is built with USE="hardened" Thanks-to: Jiri Netolicky <netolicky@epos.cd.cz> Closes: https://bugs.gentoo.org/956606 Closes: https://bugs.gentoo.org/956616 Signed-off-by: Z. Liu <zhixu.liu@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/43013 Closes: https://github.com/gentoo/gentoo/pull/43013 Signed-off-by: Sam James <sam@gentoo.org>
15 lines
530 B
Diff
15 lines
530 B
Diff
.so of mimalloc will be libmimalloc-secure.so if build with
|
|
"-DMI_SECURE=ON" (USE="hardended" in Gentoo).
|
|
diff --git a/configure.ac b/configure.ac
|
|
index c647b5c..e2b1f55 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -225,7 +225,7 @@ AC_SEARCH_LIBS([openpty], [util])
|
|
AC_SEARCH_LIBS([dlopen], [dl])
|
|
AC_SEARCH_LIBS([shl_load], [dld])
|
|
# Checks for optional libraries
|
|
-AC_SEARCH_LIBS([mi_malloc], [mimalloc])
|
|
+AC_SEARCH_LIBS([mi_malloc], [mimalloc mimalloc-secure])
|
|
|
|
# Add BeOS libraries
|
|
if test "x${host_os}" = "xbeos"; then
|