System architect at AraxaTech
Run compiler with arguments -dM -E -xc++ /dev/null. (-x specifies language, so if you want to see predefined symbols for C, you should use -xc instead of -xc++).
For example: clang -dM -E -xc++ /dev/null or gcc -dM -E -xc++ /dev/null
clang -dM -E -xc++ /dev/null
gcc -dM -E -xc++ /dev/null
It can be done using command clang++ -v -xc++ -
clang++ -v -xc++ -