Bug 1275: save build info in addition to configure info, because they
may be different and shed light on bugs/problems This commit was SVN r5216.
Этот коммит содержится в:
родитель
c4ae276944
Коммит
4071769735
@ -26,6 +26,9 @@ AM_CPPFLAGS = \
|
||||
-DOMPI_CONFIGURE_USER="\"@OMPI_CONFIGURE_USER@\"" \
|
||||
-DOMPI_CONFIGURE_HOST="\"@OMPI_CONFIGURE_HOST@\"" \
|
||||
-DOMPI_CONFIGURE_DATE="\"@OMPI_CONFIGURE_DATE@\"" \
|
||||
-DOMPI_BUILD_USER="\"$$USER\"" \
|
||||
-DOMPI_BUILD_HOST="\"`hostname`\"" \
|
||||
-DOMPI_BUILD_DATE="\"`date`\"" \
|
||||
-DOMPI_BUILD_CFLAGS="\"@CFLAGS@\"" \
|
||||
-DOMPI_BUILD_CPPFLAGS="\"@CPPFLAGS@\"" \
|
||||
-DOMPI_BUILD_CXXFLAGS="\"@CXXFLAGS@\"" \
|
||||
|
@ -322,6 +322,10 @@ void ompi_info::do_config(bool want_all)
|
||||
out("Configured on", "config:timestamp", OMPI_CONFIGURE_DATE);
|
||||
out("Configure host", "config:host", OMPI_CONFIGURE_HOST);
|
||||
|
||||
out("Built by", "build:user", OMPI_BUILD_USER);
|
||||
out("Built on", "build:timestamp", OMPI_BUILD_DATE);
|
||||
out("Built host", "build:host", OMPI_BUILD_HOST);
|
||||
|
||||
out("C bindings", "bindings:c", "yes");
|
||||
out("C++ bindings", "bindings:cxx", "yes");
|
||||
out("Fortran77 bindings", "bindings:f77", f77);
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user