Skip to content

Commit

Permalink
gxx should be the first choice
Browse files Browse the repository at this point in the history
  • Loading branch information
ZerBea committed Jan 3, 2024
1 parent 44bd50b commit 4fd4dfb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hcxdumptool.c
Original file line number Diff line number Diff line change
Expand Up @@ -4547,10 +4547,10 @@ if(uname(&utsbuffer) == 0) fprintf(stdout, "running on Linux kernel %s\n", utsbu
#if defined (__GLIBC__)
fprintf(stdout, "running GNU libc version %s\n", gnu_get_libc_version());
#endif
#if defined(__clang__)
fprintf(stdout, "compiled by clang %d.%d.%d\n", __clang_major__, __clang_minor__, __clang_patchlevel__);
#elif defined(__GNUC__)
#if defined(__GNUC__)
fprintf(stdout, "compiled by gcc %d.%d.%d\n", __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__);
#elif defined(__clang__)
fprintf(stdout, "compiled by clang %d.%d.%d\n", __clang_major__, __clang_minor__, __clang_patchlevel__);
#else
fprintf(stdout, "compiler (__clang__ / __GNUC__) is not defined\n");
#endif
Expand Down

0 comments on commit 4fd4dfb

Please sign in to comment.