aboutsummaryrefslogtreecommitdiffstats
path: root/vpp/app
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2015-12-14 16:17:41 +0100
committerDamjan Marion <damarion@cisco.com>2015-12-14 16:20:03 +0100
commit5a7a5c7bac83b641d43b4fcd70ee52567530d407 (patch)
tree64b33ffea056627b54343496076ca75651b462a9 /vpp/app
parentcd9752ce4f27dcad68ae085b519654ad5b10731a (diff)
add compiler information to "show version" cli
Change-Id: If95b45c87f6d2f1d6dad9fdaee9430129b2f4962 Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'vpp/app')
-rw-r--r--vpp/app/version.c16
1 files changed, 16 insertions, 0 deletions
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;
}