re PR sanitizer/86090 ([ASAN] ASAN does not properly configure libbacktrace.)

2018-06-13  Denis Khalikov  <d.khalikov@partner.samsung.com>

libsanitizer/

	PR sanitizer/86090
	* configure.ac: Check for lstat and readlink.
	* configure, config.h.in: Rebuild.

From-SVN: r261564
This commit is contained in:
Denis Khalikov 2018-06-13 19:51:42 +00:00 committed by Maxim Ostapenko
parent 34a7a2308d
commit 3b07c0e5e4
4 changed files with 14 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2018-06-13 Denis Khalikov <d.khalikov@partner.samsung.com>
PR sanitizer/86090
* configure.ac: Check for lstat and readlink.
* configure, config.h.in: Rebuild.
2018-05-31 Matthias Klose <doko@ubuntu.com>
PR sanitizer/86012

View file

@ -43,6 +43,12 @@
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define to 1 if you have the `lstat' function. */
#undef HAVE_LSTAT
/* Define to 1 if you have the `readlink' function. */
#undef HAVE_READLINK
/* Define to 1 if you have the <rpc/xdr.h> header file. */
#undef HAVE_RPC_XDR_H

View file

@ -15509,7 +15509,7 @@ fi
# Check for functions needed.
for ac_func in clock_getres clock_gettime clock_settime
for ac_func in clock_getres clock_gettime clock_settime lstat readlink
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"

View file

@ -93,7 +93,7 @@ AM_CONDITIONAL(TSAN_SUPPORTED, [test "x$TSAN_SUPPORTED" = "xyes"])
AM_CONDITIONAL(LSAN_SUPPORTED, [test "x$LSAN_SUPPORTED" = "xyes"])
# Check for functions needed.
AC_CHECK_FUNCS(clock_getres clock_gettime clock_settime)
AC_CHECK_FUNCS(clock_getres clock_gettime clock_settime lstat readlink)
# Common libraries that we need to link against for all sanitizer libs.
link_sanitizer_common='-lpthread -lm'