如何使用 cl.exe 创建 obj 文件

How to create obj file using cl.exe

我有一个头文件 (.h) 和一个 c (.c) 文件。如何在 cl.exe 中使用它们创建对象 .obj 文件?

cl /Wall /Fo foo.obj foo.c 

解释:

/Wall 启用更多警告。你想要这个!

/Fo foo.obj 创建一个名为 foo.obj

的目标文件

foo.c 这是您的输入 C 文件。必须#include "yourHeaderFile.h"

如有必要,您可以在 .c 文件中包含 .h 文件。

#include "xxxxx.h"

使用 /c 只编译而不链接。

综上所述,

cl /c xxxxx.c