在 Windows 中从命令提示符编译 C 代码?
我想从 Windows 中的命令提示符编译 C 代码。我已将环境变量添加到 PATH,并且可以使用以下命令编译 .cs 文件: csc app.cs
没问题,但是如何编译 app.c?
I want to compile C code from the Command Prompt in Windows. I have added the environment variable to the PATH and I can compile .cs files with: csc app.cs
That's OK, but how do I compile app.c?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以这样做:
这是完整的记录,包括设置 Visual Studio 2005 的环境(对于 Visual Studio 2008,将“8”更改为“9.0”)。
You do this:
Here's a complete transcript, including setting up the environment for Visual Studio 2005 (change "8" to "9.0" for Visual Studio 2008).
MinGW 为 Windows 提供流行的命令行 GCC 编译器。
MinGW provides a popular command-line GCC compiler for Windows.
path c:\tc\bin
tcc filename.c
filename
path c:\tc\bin
tcc filename.c
filename