运行cl命令-c++配置

创建共享库文件

接下来,我们创建包含本机代码的共享库文件。大多数 C 和 C++ 编译器除了可以创建机器代码可执行文件以外,也可以创建共享库文件。用来创建共享库文件的命令取决于您使用的编译器。下面是在 Windows 和 Solaris 系统上执行的命令。

Windows:  cl -Ic:\jdk\include -Ic:\jdk\include\win32 -LD Sample1.c -FeSample1.dll

Solaris:  cc -G -I/usr/local/jdk/include -I/user/local/jdk/include/solaris Sample1.c -o Sample1.so


共享库在Windows上面就是指LIB和DLLL 他给你的这段代码就是用来生成共享库的 你照着替换成你自己的就行了啊

是在cmd 进到Sample1.c目录下 再输

'cl' is not recognized as an internal or external command,

operable program or batch file. 要配环境变量啊

cl好像是VS的一个可执行程序吧 你找到它配到系统环境变量里面就行了

solution:

The problem occurs when you havn’t set the enviroment variables properly. It can be solved by running the “vsvars32.bat” (usually located in “X:\Program Files\Microsoft Visual Studio 9.0\Common7\Tools” )in the command line first and then you can run cl.exe in that command line window.

在cmd中键入cl执行编译(或lib)时会出现 mspdb80.dll无法找到的情况,是因为VC\Bin\下没有 “msobj80.dll,mspdb80.dll,mspdbcore.dll,mspdbsrv.exe”这四个文件,直接从Common7\IDE \下复制这四个文件到VC\Bin\下即可解



你可能感兴趣的:(c++,command,microsoft,windows,include,variables,编译器)