From 99a3951c4832a08b817b78c661ac6f0656d8da5d Mon Sep 17 00:00:00 2001 From: Matthias Jurenz Date: Fri, 24 Feb 2012 10:10:50 +0000 Subject: [PATCH] Changes to VT: - fixed platform detection on BlueGene when configuring for the frontend This commit was SVN r26042. --- ompi/contrib/vt/vt/ChangeLog | 1 + ompi/contrib/vt/vt/config/m4/acinclude.pform.m4 | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ompi/contrib/vt/vt/ChangeLog b/ompi/contrib/vt/vt/ChangeLog index 956781482f..0445924ba8 100644 --- a/ompi/contrib/vt/vt/ChangeLog +++ b/ompi/contrib/vt/vt/ChangeLog @@ -2,6 +2,7 @@ - updated version of internal OTF to 1.10.1openmpi (see extlib/otf/ChangeLog) - fixed detection of Open64 compilers for automatic instrumentation + - fixed platform detection on BlueGene when configuring for the frontend - fixed build issues on MacOS using GCC v4.2 - fixed non-increasing timestamps when flushing the trace buffer - fixed a bug in the MPI wrapper functions MPI_Gatherv and MPI_Scatterv diff --git a/ompi/contrib/vt/vt/config/m4/acinclude.pform.m4 b/ompi/contrib/vt/vt/config/m4/acinclude.pform.m4 index 2dfac09301..eda0df22a2 100644 --- a/ompi/contrib/vt/vt/config/m4/acinclude.pform.m4 +++ b/ompi/contrib/vt/vt/config/m4/acinclude.pform.m4 @@ -30,9 +30,9 @@ AC_DEFUN([ACVT_PLATFORM], linux*) AS_IF([test "$host_cpu" = "ia64" -a -f /etc/sgi-release], [PLATFORM=altix], - [AS_IF([test "$host_cpu" = "powerpc64" -a -d /bgl/BlueLight], + [AS_IF([test "$host_cpu" = "powerpc64" -a "$host" != "$build" -a -d /bgl/BlueLight], [PLATFORM=bgl], - [AS_IF([test "$host_cpu" = "powerpc64" -a -d /bgsys], + [AS_IF([test "$host_cpu" = "powerpc64" -a "$host" != "$build" -a -d /bgsys], [PLATFORM=bgp], [AS_IF([test "$host_cpu" = "x86_64" -a "x`uname -r | grep -q cray_gem && echo TRUE`" = "xTRUE"], [PLATFORM=crayxe],