summaryrefslogtreecommitdiff
path: root/cmdutils.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-07-18 17:57:57 +0100
committerMans Rullgard <mans@mansr.com>2012-07-19 10:21:46 +0100
commit45870f8b6eb3529992a4315a6957150124d7ca03 (patch)
treee0dfafde5668400072a7d552ec0cd29eb0324989 /cmdutils.c
parentbf1cf4d5a5c73942b193ccf4af75dd851f4f4fd2 (diff)
Print full compiler identification, not only version number
This provides a more precise identification of the compiler used. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'cmdutils.c')
-rw-r--r--cmdutils.c4
1 files changed, 2 insertions, 2 deletions
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);