From 5f2cb78e5eab3488f0afd9bc1ee4dd3af9d84826 Mon Sep 17 00:00:00 2001 From: "Hammond, Jeff R" Date: Sat, 16 Nov 2019 23:28:40 -0700 Subject: [PATCH] silence excessive output from Open-MPI mpi.h --- travis/build-run.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/travis/build-run.sh b/travis/build-run.sh index 2d747e5..6df0c99 100755 --- a/travis/build-run.sh +++ b/travis/build-run.sh @@ -29,12 +29,14 @@ case "$MPI_IMPL" in mpicc --showme:command # see https://github.com/open-mpi/ompi/issues/2956 export TMPDIR=/tmp + # suppress excessive output + OMPI_NO_WARN="-Wno-unknown-attributes" ;; esac # Configure and build ./autogen.sh -./configure CC=mpicc CFLAGS="-std=c99" --disable-static --prefix=/tmp +./configure CC=mpicc CFLAGS="-std=c99 $OMPI_NO_WARN" --disable-static --prefix=/tmp make V=1 make V=1 install