From 45870f8b6eb3529992a4315a6957150124d7ca03 Mon Sep 17 00:00:00 2001 From: Mans Rullgard Date: Wed, 18 Jul 2012 17:57:57 +0100 Subject: Print full compiler identification, not only version number This provides a more precise identification of the compiler used. Signed-off-by: Mans Rullgard --- cmdutils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmdutils.c') diff --git a/cmdutils.c b/cmdutils.c index 11a5f03eec..6a93f283d8 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -503,8 +503,8 @@ void show_banner(void) av_log(NULL, AV_LOG_INFO, "%s version " LIBAV_VERSION ", Copyright (c) %d-%d the Libav developers\n", program_name, program_birth_year, this_year); - av_log(NULL, AV_LOG_INFO, " built on %s %s with %s %s\n", - __DATE__, __TIME__, CC_TYPE, CC_VERSION); + av_log(NULL, AV_LOG_INFO, " built on %s %s with %s\n", + __DATE__, __TIME__, CC_IDENT); av_log(NULL, AV_LOG_VERBOSE, " configuration: " LIBAV_CONFIGURATION "\n"); print_all_libs_info(INDENT|SHOW_CONFIG, AV_LOG_VERBOSE); print_all_libs_info(INDENT|SHOW_VERSION, AV_LOG_VERBOSE); -- cgit v1.2.3