列出各种 C/C++ 编译器的预定义宏
- MSVC++ 的 cl.exe
cl /nologo /Zc:preprocessor /PD /EHs /TC F:\temp\mod.c
- intel oneapi c++ for linux
icx -x c /dev/null -dM -E
- intel oneapi c++ for windows
icx-cl -x c NUL -QdM -E
icpx -x c NUL -dM -E
- clang for linux
clang -x c /dev/null -dM -E
- clang for windows
clang -x c NUL -dM -E