我在Visual Studio附带的cl编译器中使用了以下命令。

cl /LD /O2 myprogram.c


它说:

/out:myprogram.dll
/dll
/implib:myprogram.lib
myprogram.obj
    Creating library myprogram.lib and object myprogram.exp


我的问题是它在哪里输出这些文件?它们不在myprogram.c所在的文件夹中。

最佳答案

找到了。它们位于文件夹c:\ Windows \ SysWOW64中

关于c - cl编译器(Visual Studio)在哪里生成LIB和EXP文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23300041/

10-12 19:22