From bdc24f2c78070667cd89cf19798d26ebdf3f1e68 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Sun, 10 May 2015 22:07:44 +0000 Subject: added compiler to version output --- src/options.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/options.c b/src/options.c index 59c0d48..181ef48 100644 --- a/src/options.c +++ b/src/options.c @@ -319,7 +319,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