在 Windows 中从命令提示符编译 C 代码?

发布于 2024-08-03 04:25:06 字数 120 浏览 4 评论 0原文

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

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

发布评论

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

评论(3

孤城病女 2024-08-10 04:25:06

您可以这样做:

cl app.c

这是完整的记录,包括设置 Visual Studio 2005 的环境(对于 Visual Studio 2008,将“8”更改为“9.0”)。

C:\src\tests>"\Program Files (x86)\Microsoft Visual Studio 8\vc\bin\vcvars32.bat"
Setting environment for using Microsoft Visual Studio 2005 x86 tools.

C:\src\tests>type app.c
#include <stdio.h>
int main(void)
{
    printf("Hello world!\n");
    return 0;
}

C:\src\tests>cl app.c
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 14.00.50727.762 for 80x86

Copyright (C) Microsoft Corporation.  All rights reserved.

app.c
Microsoft (R) Incremental Linker Version 8.00.50727.762
Copyright (C) Microsoft Corporation.  All rights reserved.

/out:app.exe
app.obj

C:\src\tests>app
Hello world!

You do this:

cl app.c

Here's a complete transcript, including setting up the environment for Visual Studio 2005 (change "8" to "9.0" for Visual Studio 2008).

C:\src\tests>"\Program Files (x86)\Microsoft Visual Studio 8\vc\bin\vcvars32.bat"
Setting environment for using Microsoft Visual Studio 2005 x86 tools.

C:\src\tests>type app.c
#include <stdio.h>
int main(void)
{
    printf("Hello world!\n");
    return 0;
}

C:\src\tests>cl app.c
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 14.00.50727.762 for 80x86

Copyright (C) Microsoft Corporation.  All rights reserved.

app.c
Microsoft (R) Incremental Linker Version 8.00.50727.762
Copyright (C) Microsoft Corporation.  All rights reserved.

/out:app.exe
app.obj

C:\src\tests>app
Hello world!
半世晨晓 2024-08-10 04:25:06

MinGW 为 Windows 提供流行的命令行 GCC 编译器。

MinGW provides a popular command-line GCC compiler for Windows.

墨落画卷 2024-08-10 04:25:06
  • 打开命令提示符,
  • 输入 path c:\tc\bin
  • 在命令提示符下转到您的项目文件夹,
  • 在编译后输入 tcc filename.c
  • 类型 filename
  • open command prompt
  • type path c:\tc\bin
  • goto your project folder in command prompt
  • type tcc filename.c
  • after compilation type filename
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文