mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 08:30:16 +00:00
Use the more appropriate __clang_version__.
This commit is contained in:
parent
39100bbdba
commit
1777056d6f
@ -738,7 +738,7 @@ static void print_compiler(FILE *file)
|
||||
__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__, (unsigned)(CHAR_BIT * sizeof(size_t)));
|
||||
#elif defined(__clang__)
|
||||
fprintf(file, "Clang/LLVM (%s) %u-bit\n",
|
||||
__VERSION__, (unsigned)(CHAR_BIT * sizeof(size_t)));
|
||||
__clang_version__, (unsigned)(CHAR_BIT * sizeof(size_t)));
|
||||
#elif defined(__GNUC__)
|
||||
fprintf(file, "GCC (%d.%d.%d) %u-bit\n",
|
||||
__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__, (unsigned)(CHAR_BIT * sizeof(size_t)));
|
||||
|
Loading…
Reference in New Issue
Block a user