如何编译 C++在 Windows 命令行上使用命令行归档单个文件
Possible Duplicate:
Using Visual Studio's 'cl' from a normal command line
I have .net framework installed.
I did search before posting. I searched for compile c++ command line windows
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于初学者来说,您需要一个编译器。
然后运行编译器,将文件作为参数传递给它,例如 cl myfile.cpp (您可能也想在其中传递一些编译器选项,但哪些取决于您使用的编译器 - Visual Studio 或 gcc 或 Intel 等)。
MS 有一个简短的入门指南你,但是 这个用于 gcc 可能是更好,因为它描述了涉及的所有步骤。
For starters, you need a compiler.
then you run the compiler, passing the file to it as an argument, eg
cl myfile.cpp
(you may want to pass some compiler options in there too, but which ones depend on which compiler you use - visual studio's, or gcc or Intels, etc).MS has a brief starter guide for you, but this one for gcc is probably better as its describes all the steps involved.