Make whole version string available in core files

Change-Id: I1f292e6035e1ff9e7bdca8f0a9275ebd3d4d8d0a
Signed-off-by: Florin Coras <fcoras@cisco.com>
This commit is contained in:
Florin Coras
2017-11-28 19:35:44 -05:00
committed by Chris Luke
parent d7bfa0e4fe
commit e80ae9ea8e

View File

@ -16,7 +16,9 @@
#include <vppinfra/cpu.h>
#include <vpp/app/version.h>
static char *vpe_version_string =
/* N.B. Variable is not static to ensure it's visible in core dumps, i.e.,
* it doesn't go to rodata segment */
char *vpe_version_string =
"vpp v" VPP_BUILD_VER
" built by " VPP_BUILD_USER " on " VPP_BUILD_HOST " at " VPP_BUILD_DATE;