summaryrefslogtreecommitdiff
path: root/vendor/cc/src/detect_compiler_family.c
blob: 601cee6c4878cc9d83010982ef7cd08f3f0defa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifdef __clang__
#pragma message "clang"
#endif

#ifdef __GNUC__
#pragma message "gcc"
#endif

#ifdef __EMSCRIPTEN__
#pragma message "emscripten"
#endif

#ifdef __VXWORKS__
#pragma message "VxWorks"
#endif