如何编译 C++在 Windows 命令行上使用命令行归档单个文件

发布于 2024-11-29 19:15:40 字数 283 浏览 3 评论 0原文

可能的重复:
从普通命令行使用 Visual Studio 的“cl”

我安装了.net 框架。

我在发帖前进行了搜索。我搜索了编译c++命令行窗口

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

狂之美人 2024-12-06 19:15:40

对于初学者来说,您需要一个编译器。

然后运行编译器,将文件作为参数传递给它,例如 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文