Skip to content

Instantly share code, notes, and snippets.

@yangacer
Created August 11, 2012 15:01
Show Gist options
  • Save yangacer/3325076 to your computer and use it in GitHub Desktop.
Save yangacer/3325076 to your computer and use it in GitHub Desktop.
Detect gcc (exclude clang)
#if defined(__GNUC__) && !defined(__clang__)
#define GNUC_EXCLUDE_CLANG
#else
#undef GNUC_EXCLUDE_CLANG
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment