From: Damjan Marion Date: Mon, 14 Dec 2015 15:17:41 +0000 (+0100) Subject: add compiler information to "show version" cli X-Git-Tag: v16.06-rc1~449^2 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=5a7a5c7bac83b641d43b4fcd70ee52567530d407;p=vpp.git add compiler information to "show version" cli Change-Id: If95b45c87f6d2f1d6dad9fdaee9430129b2f4962 Signed-off-by: Damjan Marion --- diff --git a/vpp/app/version.c b/vpp/app/version.c index f6aaa0be283..9949b1388ec 100644 --- a/vpp/app/version.c +++ b/vpp/app/version.c @@ -22,6 +22,21 @@ static char * vpe_version_string = " at " VPP_BUILD_DATE; static char * vpe_dir_string = "Built in " VPP_BUILD_TOPDIR; +static char * vpe_compiler = "Compiled with " +#if defined(__INTEL_COMPILER) +#define __(x) #x +#define _(x) __(x) + "icc " _(__INTEL_COMPILER) " (" __VERSION__ ")"; +#undef _ +#undef __ +#elif defined(__clang__) + "Clang/LLVM " __clang_version__; +#elif defined (__GNUC__) + "GCC " __VERSION__; +#else + "unknown compiler"; +#endif + static clib_error_t * show_vpe_version_command_fn (vlib_main_t * vm, unformat_input_t * input, @@ -30,6 +45,7 @@ show_vpe_version_command_fn (vlib_main_t * vm, vlib_cli_output (vm, "%s", vpe_version_string); if (unformat (input, "verbose")){ vlib_cli_output (vm, "%s", vpe_dir_string); + vlib_cli_output (vm, "%s", vpe_compiler); } return 0; }