且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何查看 Visual C++ 预处理器的输出?

更新时间:2023-01-23 20:01:25

cl.exe,Microsoft Visual C++ 的命令行界面,具有三种不同的输出预处理文件的选项(因此不一致在之前关于 Visual C++ 的回复中):

cl.exe, the command line interface to Microsoft Visual C++, has three different options for outputting the preprocessed file (hence the inconsistency in the previous responses about Visual C++):

  • /E: preprocess to stdout (similar to GCC's -E option)
  • /P: preprocess to file
  • /EP: preprocess to stdout without #line directives

(直接复制自 https://***.com/a/277362/3279)