Include TSAN dependent sources for 64 bit i?86 target.

2015-01-25  Venkataramanan Kumar  <venkataramanan.kumar@linaro.org>

        * configure.ac (TSAN_TARGET_DEPENDENT_OBJECTS): Undefine.
        * configure: Regenerate.
        * configure.tgt (TSAN_TARGET_DEPENDENT_OBJECTS): Define.

From-SVN: r220083
This commit is contained in:
Venkataramanan Kumar 2015-01-24 15:21:51 +00:00 committed by Venkataramanan Kumar
parent 841dbf801d
commit 8790f572ea
4 changed files with 8 additions and 8 deletions

View File

@ -1,3 +1,9 @@
2015-01-25 Venkataramanan Kumar <venkataramanan.kumar@linaro.org>
* configure.ac (TSAN_TARGET_DEPENDENT_OBJECTS): Undefine.
* configure: Regenerate.
* configure.tgt (TSAN_TARGET_DEPENDENT_OBJECTS): Define.
2015-01-25 Venkataramanan Kumar <venkataramanan.kumar@linaro.org>
* configure.ac (TSAN_TARGET_DEPENDENT_OBJECTS): Define.

View File

@ -16363,10 +16363,6 @@ if test "x$TSAN_SUPPORTED" = "xyes"; then
fi
case "${target}" in
x86_64-*-linux-*) TSAN_TARGET_DEPENDENT_OBJECTS='tsan_rtl_amd64.lo' ;;
*) TSAN_TARGET_DEPENDENT_OBJECTS='' ;;
esac
cat >confcache <<\_ACEOF

View File

@ -346,10 +346,6 @@ _EOF
])
fi
case "${target}" in
x86_64-*-linux-*) TSAN_TARGET_DEPENDENT_OBJECTS='tsan_rtl_amd64.lo' ;;
*) TSAN_TARGET_DEPENDENT_OBJECTS='' ;;
esac
AC_SUBST([TSAN_TARGET_DEPENDENT_OBJECTS])
AC_OUTPUT

View File

@ -19,11 +19,13 @@
# lets us skip running autoconf when modifying target specific information.
# Filter out unsupported systems.
TSAN_TARGET_DEPENDENT_OBJECTS=
case "${target}" in
x86_64-*-linux* | i?86-*-linux*)
if test x$ac_cv_sizeof_void_p = x8; then
TSAN_SUPPORTED=yes
LSAN_SUPPORTED=yes
TSAN_TARGET_DEPENDENT_OBJECTS=tsan_rtl_amd64.lo
fi
;;
powerpc*le-*-linux*)