print C++ standard in use message with help page and "info config" command

This commit is contained in:
Axel Kohlmeyer
2019-10-03 17:21:20 +02:00
parent bb4dc59803
commit 6580700943
3 changed files with 21 additions and 1 deletions

View File

@ -1276,8 +1276,9 @@ void LAMMPS::print_config(FILE *fp)
delete[] infobuf;
infobuf = Info::get_compiler_info();
fprintf(fp,"Compiler: %s with %s\n\n",infobuf,Info::get_openmp_info());
fprintf(fp,"Compiler: %s with %s\n",infobuf,Info::get_openmp_info());
delete[] infobuf;
fprintf(fp,"C++ standard: %s\n\n",Info::get_cxx_info());
fputs("Active compile time flags:\n\n",fp);
if (Info::has_gzip_support()) fputs("-DLAMMPS_GZIP\n",fp);