Fix tests for libitm support.

From-SVN: r181169
This commit is contained in:
Richard Henderson 2011-11-08 08:28:30 -08:00 committed by Richard Henderson
parent 01f3428caf
commit 3d3b05ff4f
5 changed files with 11 additions and 3 deletions

View File

@ -1,5 +1,7 @@
2011-11-08 Richard Henderson <rth@redhat.com>
* configure.ac: Adjust srcdir for running libitm/configure.tgt.
* configure.ac: Test libitm/configure.tgt to disable libitm.
* configure: Rebuild.

4
configure vendored
View File

@ -3061,7 +3061,9 @@ fi
if test x$enable_libitm = x; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libitm support" >&5
$as_echo_n "checking for libitm support... " >&6; }
if (. ${srcdir}/libitm/configure.tgt; test -n "$UNSUPPORTED"); then
if (srcdir=${srcdir}/libitm; \
. ${srcdir}/configure.tgt; \
test -n "$UNSUPPORTED"); then
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
noconfigdirs="$noconfigdirs target-libitm"

View File

@ -496,7 +496,9 @@ fi
# Disable libitm on unsupported hosted systems.
if test x$enable_libitm = x; then
AC_MSG_CHECKING([for libitm support])
if (. ${srcdir}/libitm/configure.tgt; test -n "$UNSUPPORTED"); then
if (srcdir=${srcdir}/libitm; \
. ${srcdir}/configure.tgt; \
test -n "$UNSUPPORTED"); then
AC_MSG_RESULT([no])
noconfigdirs="$noconfigdirs target-libitm"
else

View File

@ -1,5 +1,7 @@
2011-11-08 Richard Henderson <rth@redhat.com>
* configure.tgt: Test correct directory for supported cpus.
* configure.ac: Exit if unsupported.
* configure: Rebuild.
* configure.tgt: Delete boilerplate from libgomp for unsupported

View File

@ -77,7 +77,7 @@ case "${target_cpu}" in
esac
# For the benefit of top-level configure, determine if the cpu is supported.
test -d ${srcdir}/$ARCH || UNSUPPORTED=1
test -d ${srcdir}/config/$ARCH || UNSUPPORTED=1
# Since we require POSIX threads, assume a POSIX system by default.
config_path="$ARCH posix generic"