From eb74ea88c79467a117d6e4ae672ec5fe9048c2f7 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Mon, 11 May 2015 00:13:11 +0200 Subject: added compiler to version output --- src/options.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/options.c b/src/options.c index c9083e8..c25a748 100644 --- a/src/options.c +++ b/src/options.c @@ -352,7 +352,13 @@ void options_print_usage() void options_print_version() { printf("%s\n", VERSION_STRING_0); +#if defined(__clang__) + printf("%s, using CLANG %s\n", VERSION_STRING_1, __clang_version__); +#elif defined(__GNUC__) + printf("%s, using GCC %d.%d.%d\n", VERSION_STRING_1, __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__); +#else printf("%s\n", VERSION_STRING_1); +#endif } void options_print(options_t* opt) -- cgit v1.2.3