about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPjotr Prins2025-11-27 09:55:55 +0100
committerPjotr Prins2025-11-27 09:55:55 +0100
commit333bfc9adfff0fcd444a815cfcca27708442fe80 (patch)
tree6d2f05ede4c201259b9396c87dc65ba10f4b65e4
parent187d34b84b35ebd9d9bcc1f8c97b106a24d49586 (diff)
downloadpangemma-333bfc9adfff0fcd444a815cfcca27708442fe80.tar.gz
Display banner and version info
-rw-r--r--src/gemma.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gemma.cpp b/src/gemma.cpp
index b30c3c3..01e80f7 100644
--- a/src/gemma.cpp
+++ b/src/gemma.cpp
@@ -87,7 +87,7 @@ using namespace gemmaguile;
 void GEMMA::PrintHeader(void) {
 
   cout <<
-      "Pangemma --- GEMMA 0.98.5 compatible executable " << version << " (" << date << ") with guile " << global_guile_version() << " by Xiang Zhou, Pjotr Prins and team (C) 2012-" << year << endl ;
+      "Pangemma " << version << " --- GEMMA 0.98.5 compatible executable (" << date << ") with" <<  OPENBLAS_VERSION << "and guile " << global_guile_version() << endl << "by Xiang Zhou, Pjotr Prins and team (C) 2012-" << year << endl ;
   return;
 }
 
@@ -3171,7 +3171,7 @@ void GEMMA::WriteLog(int argc, char **argv, PARAM &cPar) {
   }
 
   outfile << "##" << endl;
-  outfile << "## GEMMA Version    = " << version << " (" << date << ")" << endl;
+  outfile << "## PANGEMMA Version = " << version << " (" << date << ")" << endl;
   // outfile << "## Build profile    = " << GEMMA_PROFILE << endl ;
   #ifdef __GNUC__
   outfile << "## GCC version      = " << __GNUC__ << "." << __GNUC_MINOR__ << "." << __GNUC_PATCHLEVEL__ << endl;