Merge branch 'tb/commit-graph-genv2-upgrade-fix' into maint
[git/debian.git] / compat / compiler.h
blob10dbb65937d17cab381bc1bfab1dff099157a625
1 #ifndef COMPILER_H
2 #define COMPILER_H
4 #include "git-compat-util.h"
5 #include "strbuf.h"
7 #ifdef __GLIBC__
8 #include <gnu/libc-version.h>
9 #endif
11 static inline void get_compiler_info(struct strbuf *info)
13 int len = info->len;
14 #ifdef __clang__
15 strbuf_addf(info, "clang: %s\n", __clang_version__);
16 #elif defined(__GNUC__)
17 strbuf_addf(info, "gnuc: %d.%d\n", __GNUC__, __GNUC_MINOR__);
18 #endif
20 #ifdef _MSC_VER
21 strbuf_addf(info, "MSVC version: %02d.%02d.%05d\n",
22 _MSC_VER / 100, _MSC_VER % 100, _MSC_FULL_VER % 100000);
23 #endif
25 if (len == info->len)
26 strbuf_addstr(info, _("no compiler information available\n"));
29 static inline void get_libc_info(struct strbuf *info)
31 int len = info->len;
33 #ifdef __GLIBC__
34 strbuf_addf(info, "glibc: %s\n", gnu_get_libc_version());
35 #endif
37 if (len == info->len)
38 strbuf_addstr(info, _("no libc information available\n"));
41 #endif /* COMPILER_H */