C/C++: List all #define macros
I need to target a specific platform with some code I'm writing. You can list all of the #define
macros on a given platform with these commands:
gcc -dM -E - < /dev/null
clang -dM -E - < /dev/null
In this big list of macros you should find something to help you target a given platform.