From: kanschat Date: Tue, 4 Sep 2012 07:17:36 +0000 (+0000) Subject: Change OpenMPI output and add comment X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=efc7473fd848639ace5c4fdd7079c830048f29db;p=dealii-svn.git Change OpenMPI output and add comment git-svn-id: https://svn.dealii.org/trunk@26229 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/common/scripts/report_features.cc b/deal.II/common/scripts/report_features.cc index 5b98f12a74..70eed0faba 100644 --- a/deal.II/common/scripts/report_features.cc +++ b/deal.II/common/scripts/report_features.cc @@ -42,6 +42,12 @@ extern "C" { # include #endif +// Output configuration options from config.h. +// The format of each line is +// +// deal-feature: FEATURE=value +// +// no spaces in any token! int main() { @@ -62,7 +68,7 @@ int main() #if defined(DEAL_II_COMPILER_SUPPORTS_MPI) # ifdef OMPI_MAJOR_VERSION - std::cout << "dealii-feature: MPI=OpenMPI " + std::cout << "dealii-feature: MPI=OpenMPI-" << OMPI_MAJOR_VERSION << '.' << OMPI_MINOR_VERSION << '.' << OMPI_RELEASE_VERSION << std::endl;