mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Remove the --experimental-malloc option
It's well tested, make it the default.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
2011-06-28 Ulrich Drepper <drepper@gmail.com>
|
||||||
|
|
||||||
|
* configure.in: Remove support for --experimental-malloc option, make
|
||||||
|
it the default.
|
||||||
|
* config.make.in: Likewise.
|
||||||
|
* malloc/Makefile: Likewise.
|
||||||
|
|
||||||
2011-06-27 Andreas Schwab <schwab@redhat.com>
|
2011-06-27 Andreas Schwab <schwab@redhat.com>
|
||||||
|
|
||||||
* iconvdata/gb18030.c (BODY for TO_LOOP): Fix encoding of non-BMP
|
* iconvdata/gb18030.c (BODY for TO_LOOP): Fix encoding of non-BMP
|
||||||
|
@ -85,8 +85,6 @@ have-ksh = @libc_cv_have_ksh@
|
|||||||
|
|
||||||
sizeof-long-double = @sizeof_long_double@
|
sizeof-long-double = @sizeof_long_double@
|
||||||
|
|
||||||
experimental-malloc = @experimental_malloc@
|
|
||||||
|
|
||||||
nss-crypt = @libc_cv_nss_crypt@
|
nss-crypt = @libc_cv_nss_crypt@
|
||||||
|
|
||||||
# Configuration options.
|
# Configuration options.
|
||||||
|
11
configure
vendored
11
configure
vendored
@ -691,7 +691,6 @@ base_machine
|
|||||||
add_on_subdirs
|
add_on_subdirs
|
||||||
add_ons
|
add_ons
|
||||||
libc_cv_nss_crypt
|
libc_cv_nss_crypt
|
||||||
experimental_malloc
|
|
||||||
all_warnings
|
all_warnings
|
||||||
force_install
|
force_install
|
||||||
bindnow
|
bindnow
|
||||||
@ -790,7 +789,6 @@ enable_force_install
|
|||||||
enable_kernel
|
enable_kernel
|
||||||
enable_all_warnings
|
enable_all_warnings
|
||||||
enable_multi_arch
|
enable_multi_arch
|
||||||
enable_experimental_malloc
|
|
||||||
enable_nss_crypt
|
enable_nss_crypt
|
||||||
with_cpu
|
with_cpu
|
||||||
'
|
'
|
||||||
@ -1450,8 +1448,6 @@ Optional Features:
|
|||||||
--enable-all-warnings enable all useful warnings gcc can issue
|
--enable-all-warnings enable all useful warnings gcc can issue
|
||||||
--enable-multi-arch enable single DSO with optimizations for multiple
|
--enable-multi-arch enable single DSO with optimizations for multiple
|
||||||
architectures
|
architectures
|
||||||
--enable-experimental-malloc
|
|
||||||
enable experimental malloc features
|
|
||||||
--enable-nss-crypt enable libcrypt to use nss
|
--enable-nss-crypt enable libcrypt to use nss
|
||||||
|
|
||||||
Optional Packages:
|
Optional Packages:
|
||||||
@ -3766,13 +3762,6 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-experimental-malloc was given.
|
|
||||||
if test "${enable_experimental_malloc+set}" = set; then :
|
|
||||||
enableval=$enable_experimental_malloc; experimental_malloc=$enableval
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --enable-nss-crypt was given.
|
# Check whether --enable-nss-crypt was given.
|
||||||
if test "${enable_nss_crypt+set}" = set; then :
|
if test "${enable_nss_crypt+set}" = set; then :
|
||||||
enableval=$enable_nss_crypt; nss_crypt=$enableval
|
enableval=$enable_nss_crypt; nss_crypt=$enableval
|
||||||
|
@ -274,13 +274,6 @@ AC_ARG_ENABLE([multi-arch],
|
|||||||
[multi_arch=$enableval],
|
[multi_arch=$enableval],
|
||||||
[multi_arch=default])
|
[multi_arch=default])
|
||||||
|
|
||||||
AC_ARG_ENABLE([experimental-malloc],
|
|
||||||
AC_HELP_STRING([--enable-experimental-malloc],
|
|
||||||
[enable experimental malloc features]),
|
|
||||||
[experimental_malloc=$enableval],
|
|
||||||
[])
|
|
||||||
AC_SUBST(experimental_malloc)
|
|
||||||
|
|
||||||
AC_ARG_ENABLE([nss-crypt],
|
AC_ARG_ENABLE([nss-crypt],
|
||||||
AC_HELP_STRING([--enable-nss-crypt],
|
AC_HELP_STRING([--enable-nss-crypt],
|
||||||
[enable libcrypt to use nss]),
|
[enable libcrypt to use nss]),
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright (C) 1991-1999, 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2009
|
# Copyright (C) 1991-1999, 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2009, 2011
|
||||||
# Free Software Foundation, Inc.
|
# Free Software Foundation, Inc.
|
||||||
# This file is part of the GNU C Library.
|
# This file is part of the GNU C Library.
|
||||||
|
|
||||||
@ -125,9 +125,7 @@ endif
|
|||||||
|
|
||||||
tst-mcheck-ENV = MALLOC_CHECK_=3
|
tst-mcheck-ENV = MALLOC_CHECK_=3
|
||||||
|
|
||||||
ifeq ($(experimental-malloc),yes)
|
|
||||||
CPPFLAGS-malloc.c += -DPER_THREAD -DATOMIC_FASTBINS
|
CPPFLAGS-malloc.c += -DPER_THREAD -DATOMIC_FASTBINS
|
||||||
endif
|
|
||||||
# Uncomment this for test releases. For public releases it is too expensive.
|
# Uncomment this for test releases. For public releases it is too expensive.
|
||||||
#CPPFLAGS-malloc.o += -DMALLOC_DEBUG=1
|
#CPPFLAGS-malloc.o += -DMALLOC_DEBUG=1
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user