diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2023-03-28 15:46:34 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2023-03-29 14:33:06 -0300 |
commit | 6384171fa0cef59b738ce8d0499fcea4f5009411 (patch) | |
tree | 27cae420e5795ff175965ddad7a9b680836f1a71 /configure.ac | |
parent | 885d3cda907d0dee54b13cbbf61b040c9951d5a2 (diff) | |
download | glibc-6384171fa0cef59b738ce8d0499fcea4f5009411.tar.gz glibc-6384171fa0cef59b738ce8d0499fcea4f5009411.tar.xz glibc-6384171fa0cef59b738ce8d0499fcea4f5009411.zip |
Remove --disable-experimental-malloc option
It is the default since 2.26 and it has bitrotten over the years, By using it multiple malloc tests fails: FAIL: malloc/tst-memalign-2 FAIL: malloc/tst-memalign-2-malloc-hugetlb1 FAIL: malloc/tst-memalign-2-malloc-hugetlb2 FAIL: malloc/tst-memalign-2-mcheck FAIL: malloc/tst-mxfast-malloc-hugetlb1 FAIL: malloc/tst-mxfast-malloc-hugetlb2 FAIL: malloc/tst-tcfree2 FAIL: malloc/tst-tcfree2-malloc-hugetlb1 FAIL: malloc/tst-tcfree2-malloc-hugetlb2 Checked on x86_64-linux-gnu. Reviewed-by: DJ Delorie <dj@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index 88a6a88220..48ca0d3707 100644 --- a/configure.ac +++ b/configure.ac @@ -300,13 +300,6 @@ AC_ARG_ENABLE([multi-arch], [multi_arch=$enableval], [multi_arch=default]) -AC_ARG_ENABLE([experimental-malloc], - AS_HELP_STRING([--disable-experimental-malloc], - [disable experimental malloc features]), - [experimental_malloc=$enableval], - [experimental_malloc=yes]) -AC_SUBST(experimental_malloc) - AC_ARG_ENABLE([memory-tagging], AS_HELP_STRING([--enable-memory-tagging], [enable memory tagging if supported by the architecture @<:@default=no@:>@]), |