Skip to content

Commit

Permalink
Extra macros in compile control.
Browse files Browse the repository at this point in the history
  • Loading branch information
arobenko committed Sep 21, 2024
1 parent 398b0ed commit 5dfc27a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions include/comms/CompileControl.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@
#define COMMS_IS_GCC_11 (COMMS_IS_GCC && (__GNUC__ == 11))
#define COMMS_IS_GCC_11_OR_ABOVE (COMMS_IS_GCC && (__GNUC__ >= 11))
#define COMMS_IS_GCC_12 (COMMS_IS_GCC && (__GNUC__ == 12))
#define COMMS_IS_GCC_12_OR_ABOVE (COMMS_IS_GCC && (__GNUC__ >= 12))
#define COMMS_IS_GCC_13 (COMMS_IS_GCC && (__GNUC__ == 13))
#define COMMS_IS_GCC_14 (COMMS_IS_GCC && (__GNUC__ == 14))
#define COMMS_IS_GCC_14_OR_BELOW (COMMS_IS_GCC && (__GNUC__ <= 14))
#define COMMS_IS_CLANG_7_OR_ABOVE (COMMS_IS_CLANG && (__clang_major__ >= 7))
#define COMMS_IS_CLANG_8 (COMMS_IS_CLANG && (__clang_major__ == 8))
#define COMMS_IS_CLANG_8_OR_BELOW (COMMS_IS_CLANG && (__clang_major__ <= 8))
Expand Down

0 comments on commit 5dfc27a

Please sign in to comment.